summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive.pm
blob: 1de89e42aad8d570caf176d26b82a2486f12643c (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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
package interactive; # $Id$

use diagnostics;
use strict;

#-######################################################################################
#- misc imports
#-######################################################################################
use common qw(:common :functional);

#- heritate from this class and you'll get all made interactivity for same steps.
#- for this you need to provide
#- - ask_from_listW(o, title, messages, arrayref, default) returns one string of arrayref
#- - ask_many_from_listW(o, title, messages, arrayref, arrayref2) returns many strings of arrayref
#-
#- where
#- - o is the object
#- - title is a string
#- - messages is an refarray of strings
#- - default is an optional string (default is in arrayref)
#- - arrayref is an arrayref of strings
#- - arrayref2 contains booleans telling the default state,
#-
#- ask_from_list and ask_from_list_ are wrappers around ask_from_biglist and ask_from_smalllist
#-
#- ask_from_list_ just translate arrayref before calling ask_from_list and untranslate the result
#-
#- ask_from_listW should handle differently small lists and big ones.



#-######################################################################################
#- OO Stuff
#-######################################################################################
sub new($) {
    my ($type) = @_;

    bless {}, ref $type || $type;
}

sub vnew {
    my ($type, $su) = @_;
    $su = $su eq "su";
    require c;
    if ($ENV{DISPLAY} && c::Xtest($ENV{DISPLAY})) {
	if ($su) {
	    $ENV{PATH} = "/sbin:/usr/sbin:$ENV{PATH}";
	    $> and exec "kdesu", "-c", "$0 @ARGV";	    
	}
	require interactive_gtk;
	interactive_gtk->new;
    } else {
	if ($su && $>) {
	    die "you must be root to run this program";
	}
	require 'log.pm';
	undef *log::l;
	*log::l = sub {}; # otherwise, it will bother us :(
	require interactive_newt;
	interactive_newt->new;
    }
}

sub enter_console {}
sub leave_console {}
sub suspend {}
sub resume {}
sub end {}
sub exit { exit($_[0]) }

#-######################################################################################
#- Interactive functions
#-######################################################################################
sub ask_warn($$$) {
    my ($o, $title, $message) = @_;
    ask_from_list2($o, $title, $message, [ _("Ok") ]);
}

sub ask_yesorno($$$;$) {
    my ($o, $title, $message, $def) = @_;
    ask_from_list_($o, $title, $message, [ __("Yes"), __("No") ], $def ? "Yes" : "No") eq "Yes";
}

sub ask_okcancel($$$;$) {
    my ($o, $title, $message, $def) = @_;
    ask_from_list_($o, $title, $message, [ __("Ok"), __("Cancel") ], $def ? "Ok" : "Cancel") eq "Ok";
}

sub ask_from_list_ {
    my ($o, $title, $message, $l, $def) = @_;
    ask_from_listf($o, $title, $message, sub { translate($_[0]) }, $l, $def);
}

sub ask_from_listf_ {
    my ($o, $title, $message, $f, $l, $def) = @_;
    ask_from_listf($o, $title, $message, sub { translate($f->(@_)) }, $l, $def);
}
sub ask_from_listf {
    my ($o, $title, $message, $f, $l, $def) = @_;
    my $def2;
    my (@l,%l); my $i = 0; foreach (@$l) {
	my $v = $f->($_, $i++);
	push @l, $v;
	$l{$v} = $_;
	$def2 = $v if $def && $_ eq $def;
    }
    $def2 ||= $f->($def) if $def;
    my $r = ask_from_list($o, $title, $message, \@l, $def2) or return;
    $l{$r};
}

sub ask_from_list {
    my ($o, $title, $message, $l, $def) = @_;
    @$l == 0 and die 'ask_from_list: empty list';
    @$l == 1 and return $l->[0];
    goto &ask_from_list2;
}

sub ask_from_list2($$$$;$) {
    my ($o, $title, $message, $l, $def) = @_;

    @$l > 10 and $l = [ sort @$l ];

    $o->ask_from_listW($title, [ deref($message) ], $l, $def || $l->[0]);
}

sub ask_from_list_with_help_ {
    my ($o, $title, $message, $l, $help, $def) = @_;
    @$l == 0 and die '';
    @$l == 1 and return $l->[0];
    goto &ask_from_list2_with_help_;
}

sub ask_from_list_with_help {
    my ($o, $title, $message, $l, $help, $def) = @_;
    @$l == 0 and die '';
    @$l == 1 and return $l->[0];
    goto &ask_from_list2_with_help;
}

#- defaults to simple ask_from_list
sub ask_from_list_with_helpW {
    my ($o, $title, $messages, $l, $help, $def) = @_;
    $o->ask_from_listW($o, $title, $messages, $l, $def);
}

sub ask_from_list2_with_help_($$$$$;$) {
    my ($o, $title, $message, $l, $help, $def) = @_;
    untranslate(
       ask_from_list_with_help($o, $title, $message, [ map { translate($_) } @$l ], $help, translate($def)),
       @$l);
}

sub ask_from_list2_with_help($$$$$;$) {
    my ($o, $title, $message, $l, $help, $def) = @_;

    @$l > 10 and $l = [ sort @$l ];

    $o->ask_from_list_with_helpW($title, [ deref($message) ], $l, $help, $def || $l->[0]);
}

sub ask_from_treelistf {
    my ($o, $title, $message, $separator, $f, $l, $def) = @_;
    my (@l,%l); my $i = 0; foreach (@$l) {
	my $v = $f->($_, $i++);
	push @l, $v;
	$l{$v} = $_;
    }
    my $r = ask_from_treelist($o, $title, $message, $separator, \@l, defined $def ? $f->($def) : $def) or return;
    $l{$r};
}

sub ask_from_treelist {
    my ($o, $title, $message, $separator, $l, $def) = @_;
    $o->ask_from_treelistW($title, [ deref($message) ], $separator, [ sort @$l ], $def || $l->[0]);
}
#- defaults to simple ask_from_list
sub ask_from_treelistW($$$$;$) {
    my ($o, $title, $message, $separator, $l, $def) = @_;
    $o->ask_from_listW($title, [ deref($message) ], $l, $def);
}


sub ask_many_from_list {
    my ($o, $title, $message, @l) = @_;
    @l = grep { @{$_->{list}} } @l or return '';
    foreach my $h (@l) {
	$h->{labels} ||= [ map { $h->{label} ? $h->{label}->($_) : $_ } @{$h->{list}} ];

	if ($h->{sort}) {
	    my @places = sort { $h->{labels}[$a] cmp $h->{labels}[$b] } 0 .. $#{$h->{labels}};
	    $h->{labels} = [ map { $h->{labels}[$_] } @places ];
	    $h->{list}   = [ map { $h->{list}[$_] } @places ];
	}
	$h->{ref} = [ map { 
	    $h->{ref} ? $h->{ref}->($_) : do {
		my $i = 
		  $h->{value} ? $h->{value}->($_) : 
		    $h->{values} ? member($_, @{$h->{values}}) : 0;
		\$i;
	    };
	} @{$h->{list}} ];

	$h->{help} = $h->{help} ? [ map { $h->{help}->($_) } @{$h->{list}} ] : [];
	$h->{icons} = $h->{icon2f} ? [ map { $h->{icon2f}->($_) } @{$h->{list}} ] : [];
    }
    $o->ask_many_from_listW($title, [ deref($message) ], @l) or return;

    @l = map {
	my $h = $_;
	[ grep_index { ${$h->{ref}[$::i]} } @{$h->{list}} ];
    } @l;
    wantarray ? @l : $l[0];
}

sub ask_from_entry {
    my ($o, $title, $message, $label, $def, %callback) = @_;

    first ($o->ask_from_entries($title, [ deref($message) ], [ $label ], [ $def ], %callback));
}

sub ask_from_entries($$$$;$%) {
    my ($o, $title, $message, $l, $def, %callback) = @_;

    my $val = [ map { my $i = $_; \$i } @{$def || [('') x @$l]} ];

    $o->ask_from_entries_ref($title, $message, $l, $val, %callback) ?
      map { $$_ } @$val :
      undef;
}

sub ask_from_entries_refH($$$;$%) {
    my ($o, $title, $message, $h, %callback) = @_;

    ask_from_entries_ref($o, $title, $message,
			 list2kv(@$h),
			 %callback);    
}

#- can get a hash of callback: focus_out changed and complete
#- moreove if you pass a hash with a field list -> combo
#- if you pass a hash with a field hidden -> emulate stty -echo
sub ask_from_entries_ref($$$$;$%) {
    my ($o, $title, $message, $l, $val, %callback) = @_;

    return unless @$l;

    $title = [ deref($title) ];
    $title->[2] ||= _("Cancel") unless $title->[1];
    $title->[1] ||= _("Ok");

    my $val_hash = [ map {
	if ((ref $_) eq "SCALAR") {
	    { val => $_ }
	} else {
	    if (@{$_->{list} || []} > 1) {
		add2hash_($_, { not_edit => 1, type => 'list' });
		${$_->{val}} = $_->{list}[0] if $_->{not_edit} && !member(${$_->{val}}, @{$_->{list}});
	    } elsif ($_->{type} eq 'range') {
		$_->{min} <= $_->{max} or die "bad range min $_->{min} > max $_->{max} (called from " . join(':', caller()) . ")";
		${$_->{val}} = max($_->{min}, min(${$_->{val}}, $_->{max}));
	    }
	    $_;
	}
    } @$val ];

    $o->ask_from_entries_refW($title, [ deref($message) ], $l, $val_hash, %callback)

}
sub wait_message($$$;$) {
    my ($o, $title, $message, $temp) = @_;

    my $w = $o->wait_messageW($title, [ _("Please wait"), deref($message) ]);
    push @tempory::objects, $w if $temp;
    my $b = before_leaving { $o->wait_message_endW($w) };

    #- enable access through set
    common::add_f4before_leaving(sub { $o->wait_message_nextW([ deref($_[1]) ], $w) }, $b, 'set');
    $b;
}

sub kill {}

#-######################################################################################
#- Wonderful perl :(
#-######################################################################################
1;
iv>
+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>
+
+ * perl-install/drakxtools.spec: use my own email address :|
+
+2005-07-07 16:14 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/drakxtools.spec: update requires for perl-MDK-Common
+ (need distrib())
+
+2005-07-07 11:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: add support for graphical grub
+ (Herton Ronaldo Krzes)
+
+2005-07-07 10:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.32mdk
+
+2005-07-07 09:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: use stop_net_interface
+
+2005-07-07 09:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not restart network to
+ apply modifications, run ifup or ifplugd instead
+
+2005-07-07 09:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: add start/stop_ifplugd
+
+2005-07-07 09:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: network/netconnect.pm, network/tools.pm,
+ standalone/drakconnect, standalone/net_applet,
+ standalone/net_monitor: remove connect/diconnect_backend add
+ start/stop_net_interface add detach parameter to
+ start/stop_interface
+
+2005-07-07 08:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: stricter regexp for MAC
+ addresses
+
+2005-07-07 08:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: use start/stop_interface
+
+2005-07-07 08:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: use start/stop_interface
+ instead of connect/disconnect_backend
+
+2005-07-07 05:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix buggy translation about uid
+ (#16726)
+
+2005-07-07 03:44 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/: draknfs, drakhosts: add an apply button
+
+2005-07-07 02:46 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/drakhosts: add double clic event
+
+2005-07-07 02:45 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: use simple userid combolist, few
+ other fix
+
+2005-07-06 19:26 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: Be less polite, lots of corrections,
+ new strings translated etcetc.
+
+2005-07-06 17:26 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2005-07-06 14:06 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: Be less polite;) (no please in
+ norwegian), updated translations etc..
+
+2005-07-06 12:15 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/pt.po: updated po file
+
+2005-07-06 11:18 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-07-06 10:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add fore_200e ATM driver
+
+2005-07-06 10:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add pluto2 DVB driver
+
+2005-07-06 10:11 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: fix test of directory and test
+ of hosts access in alter mode
+
+2005-07-06 09:59 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: add editcell (disable by
+ default) , add double clic support
+
+2005-07-06 07:22 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: display wait message box while
+ reloading/restarting nfs server
+
+2005-07-06 06:16 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-07-06 05:12 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cy.po: updated Welsh file
+
+2005-07-06 05:05 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: fix undefined options
+
+2005-07-06 04:59 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: fix domain in hosts access
+ combobox
+
+2005-07-06 04:54 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: fix ip/8 in comboboxentry
+
+2005-07-06 04:29 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: button to close draknfs "Reload
+ NFS server" hput in a menu using icons for "dir path" button an
+ editable combolist for Access various typor fix "close" button in
+ help dialog box use pango for text field
+
+2005-07-05 18:59 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: Latest updates
+
+2005-07-05 12:26 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po files
+
+2005-07-05 11:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/pxe.pm: switch to Mandriva
+
+2005-07-05 11:10 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: small updates
+
+2005-07-05 09:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ko.po: update
+
+2005-07-05 09:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.31mdk
+
+2005-07-05 09:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: br.po, cy.po, fr.po, ga.po: update
+
+2005-07-05 09:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draknfs: (add_columns) reuse existing
+ translation
+
+2005-07-05 09:40 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-05 09:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakhosts: fix layout somewhat
+
+2005-07-05 09:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: put newly added draknfs and
+ drakhosts tools in the gtk backend package
+
+2005-07-05 09:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draknfs: fix layout somewhat
+
+2005-07-05 09:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile.config: sort newly entries added by pixel &
+ antoine
+
+2005-07-05 09:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile.config: do not package drakfloppy anymore
+ since kernel is too big (#10565)
+
+2005-07-05 09:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draknfs: don't keep undefined options
+
+2005-07-05 09:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draknfs: use join()
+
+2005-07-05 08:56 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/drakhosts: fix string pb
+
+2005-07-05 08:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draknfs: perl_checker/translation fixes
+
+2005-07-05 08:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakhosts: perl_checker fix
+
+2005-07-05 08:47 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: various other fix to be able to
+ build drakxtools
+
+2005-07-05 08:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: don't suggest to format
+ partition if we need to reboot
+
+2005-07-05 08:37 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: various fix
+ ("standalone/draknfs", line 140, character 38-48) thx tv
+
+2005-07-05 07:23 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: add help, remove unwanted use
+
+2005-07-05 07:16 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/drakhosts: fix some comment
+
+2005-07-05 03:45 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/Makefile.config: add drakhosts and draknfs tools
+
+2005-07-05 03:38 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/: drakhosts, draknfs: move drakhosts and
+ draknfs tools from soft/ to gi/perl-install/standalone
+
+2005-07-05 01:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: rollback bogus change
+ that mistakely went in
+
+2005-07-04 11:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup: fix build (perl_checker fix)
+
+2005-07-04 09:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: typo fix
+
+2005-07-04 02:51 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: gl.po, ja.po, wa.po: updated Japanese,
+ Galician and Walloon files
+
+2005-07-03 03:06 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: Mostly syntax checking and msg
+ consistency
+
+2005-07-02 01:27 Sharuzzaman Ahmat Raslan <sharuzzaman at myrealbox.com>
+
+ * perl-install/share/po/ms.po: Updated Malay translation
+
+2005-07-01 16:03 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: Latest strings - some small
+ conflicts
+
+2005-07-01 15:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add new spidernet gigabit driver (from
+ kernel-2.6.13-rc1-mm1)
+
+2005-07-01 13:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.30mdk
+
+2005-07-01 11:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: don't write loc to fw ACCEPT
+ rules, we always reset the policy to accept
+
+2005-07-01 11:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/bootsplash.pm: write progress bars in bootsplash
+ config files
+
+2005-07-01 11:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: update crossbars when scale
+ values are modified
+
+2005-07-01 10:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/ugtk2.pm: remove spurious comment
+
+2005-07-01 10:52 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-07-01 10:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::ComboBox->get_text,
+ Gtk2::OptionMenu->get_text) fix non selected case
+
+2005-07-01 10:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakbug: set the "" string as active in
+ the combo box when a custom binary is selected, to avoid default
+ selection of the last combo box item (this allow to remove the
+ "scannerdrake" hack)
+
+2005-07-01 10:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: add bug reference to 10-34.9.100mdk
+
+2005-07-01 10:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix 10-34.9.100mdk's changelog
+
+2005-07-01 10:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-34.9.100mdk
+
+2005-07-01 10:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/: lvm.pm, diskdrake/interactive.pm: handle pvmove
+
+2005-07-01 09:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/lvm.pm: - we can keep vg available when using
+ vgreduce - we must update the vg total size after removing a pv
+
+2005-07-01 09:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2005-07-01 09:50 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-01 09:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: fix port range syntax for
+ samba (backport from 10.1 updates)
+
+2005-07-01 09:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2005-07-01 09:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/lvm.pm: fix message
+
+2005-07-01 09:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/: lvm.pm, diskdrake/interactive.pm: create
+ lvm::pv_physical_extents() and use it
+
+2005-07-01 09:28 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Don't write ignored media in
+ urpmi.cfg (bug 15537)
+
+2005-07-01 09:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: - correctly compute the
+ max size on a VG (bugzilla #16189) - don't verifyParts on lvm
+
+2005-07-01 09:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/get.pm: create vg_free_space()
+
+2005-07-01 09:15 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-01 09:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakbug: simplify
+
+2005-07-01 09:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakbug: use the 'drakxtools' component
+ for "Standalone Tools" (really fix #16580) and split drakxtools
+ components out of the main hash
+
+2005-07-01 09:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, bootloader.pm: - lilo doesn't work on
+ dmraid so forcing grub - method_choices() now wants $all_hds
+ instead of $fstab
+
+2005-07-01 08:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, fs/proc_partitions.pm: move skipping
+ dmraid drives test in fsedit (and use fs::type::is_dmraid)
+
+2005-07-01 08:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: use fs::type::is_dmraid()
+
+2005-07-01 08:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/.perl_checker: ensure we don't try to parse
+ warnings.pm
+
+2005-07-01 08:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/fs/mount_options.pm: describe "grpquota" and
+ "usrquota" mount options (#15671)
+
+2005-07-01 08:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/type.pm: new function is_dmraid()
+
+2005-07-01 08:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: remove useless grouping and
+ rewrite code to be safer
+
+2005-07-01 08:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbug: fix shell parsing unquoted
+ bugzilla URL (#16580)
+
+2005-07-01 08:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-07-01 08:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/lvm.pm: remove debug code from previous commit
+
+2005-07-01 08:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: add "Used physical extents
+ %d / %d\n" for PV details
+
+2005-07-01 08:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/lvm.pm: create generic function get_pv_field()
+
+2005-07-01 08:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: add 'routeback' option for
+ bridge interfaces in shorewall interfaces file
+
+2005-07-01 08:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: add is_bridge_interface
+
+2005-07-01 08:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, lvm.pm: better name
+
+2005-07-01 08:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, lvm.pm: replace lv_nb_segments() with
+ lv_nb_pvs() (which is really what lilo cares about. lilo error is
+ "mapped boot device cannot be on multiple real devices")
+
+2005-07-01 08:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/: lvm.pm, diskdrake/interactive.pm: handle vgreduce
+
+2005-07-01 06:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: a PV has no "Options"
+ (bugzilla #16168)
+
+2005-07-01 06:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/dmraid.pm: in standalone, missing dmraid implies
+ we don't have dmraid devices, so make it clean and don't call
+ dmraid
+
+2005-07-01 06:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/format.pm: mkinitrd only handle ext2/ext3 labels,
+ so disallow labels on "/" for other fs types
+
+2005-07-01 05:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: don't spawn a new shell if it's
+ already running (useful when using the no-reboot-restart-install
+ blino trick)
+
+2005-07-01 05:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/lvm.pm: better error message, and translate it
+
+2005-07-01 05:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, lvm.pm: lilo only accept /boot (or /)
+ on a LV if it uses only one PV, so correctly warn/error this
+
+2005-07-01 05:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_auto_install.pm: allow restarting a
+ failed auto_install without rebooting (a la blino)
+
+2005-07-01 04:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/activefw.pm: remove unneeded requires, added
+ in the wrong place...
+
+2005-07-01 02:44 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: add nvu in CAT_WWW CAT_DEVELOPMENT
+
+2005-06-30 10:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/activefw.pm: load bloaty DBus binding on
+ demand (since we don't actually use it for now)
+
+2005-06-30 09:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/common.pm: do not load bloat POSIX
+
+2005-06-30 09:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: add setlocate() and LC_COLLATE for
+ common.pm
+
+2005-06-30 09:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: lang.pm, standalone.pm, interactive/newt.pm,
+ c/stuff.xs.pl: rename setlocale() as init_setlocale() since it's
+ more meaninfull regarding its purpose
+
+2005-06-30 09:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: network/activefw.pm, standalone/drakids,
+ standalone/net_applet: sanitize network::activefw
+
+2005-06-30 09:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/activefw.pm: (format_date) do not load the
+ bloaty POSIX module
+
+2005-06-30 09:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: (strftime) add it thus avoiding to
+ load bloaty POSIX in net_applet
+
+2005-06-30 08:56 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/c/Makefile.PL: Remove rpm include dir from
+ Makefile_c
+
+2005-06-30 08:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: fix typo in previous commit
+
+2005-06-30 08:22 Pixel <pixel at mandriva.com>
+
+ * tools/drakx-in-chroot: module gzloop is needed to losetup a clp
+
+2005-06-30 08:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.29mdk
+
+2005-06-30 08:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/c/Makefile.PL: do not link anymore with librpm since
+ perl-URPM is used for that (saves 6.1Mb of virtual and 800kb of
+ shared memory in net_applet)
+
+2005-06-30 07:54 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: This function was renamed
+
+2005-06-30 07:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/proc_partitions.pm: adapt to fs/dmraid.pm change
+ (bus is now dmraid_xxx instead of dm_xxx)
+
+2005-06-30 07:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: br.po, fr.po, ga.po: update
+
+2005-06-30 07:12 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: bootloader.pm, pkgs.pm, c/stuff.xs.pl: Remove
+ dependency of c::stuff on rpmlib
+
+2005-06-30 06:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: install dmraid if needed
+
+2005-06-30 06:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/dmraid.pm: call it dmraid, it's more explicit
+
+2005-06-30 04:50 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: Remove function not used (and
+ provided by perl-URPM anyway)
+
+2005-06-29 11:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm, perl-install/share/list.xml,
+ tools/install-xml-file-list: - have /lib/tls/lib*.so* instead of
+ replacing them with /lib/lib*.so* otherwise rpm database gets
+ corrupted - don't need setting LD_ASSUME_KERNEL anymore (it
+ wasn't enough, and we now have tls libs)
+
+2005-06-29 11:24 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-06-29 09:17 Warly <warly at mandriva.com>
+
+ * isolinux-graphic-simple.bmp, isolinux-graphic.bmp: new mandriva
+ image
+
+2005-06-29 08:46 Warly <warly at mandriva.com>
+
+ * perl-install/share/logo-mandrake.png: new mandriva title
+
+2005-06-29 07:17 Pixel <pixel at mandriva.com>
+
+ * rescue/partimage_whole_disk: {mntpoint} is not set, so take the
+ last ext3 partition as being /home
+
+2005-06-29 07:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/dmraid.pm: the output of "dmraid -r" is not
+ enough, "dmraid -s" is more important. add some sample output
+ for easy debugging
+
+2005-06-29 05:30 Pixel <pixel at mandriva.com>
+
+ * rescue/partimage_whole_disk: - don't save /home and want a size
+ <1GB (since it will be grown to fit disk) - fix keeping the small
+ size of the existing windows partition (otherwise the
+ filesystem is small in a (much) bigger partition) - remove
+ "windows" entry from lilo.conf if windows not there
+
+2005-06-28 11:12 Pixel <pixel at mandriva.com>
+
+ * globetrotter/make_live, perl-install/any.pm,
+ perl-install/bootloader.pm, perl-install/commands.pm,
+ perl-install/common.pm, perl-install/fs.pm,
+ perl-install/install2.pm, perl-install/install_any.pm,
+ perl-install/install_steps.pm,
+ perl-install/install_steps_interactive.pm,
+ perl-install/modules.pm, perl-install/partition_table.pm,
+ perl-install/pkgs.pm, perl-install/diskdrake/interactive.pm,
+ perl-install/fs/dmraid.pm, perl-install/fs/format.pm,
+ perl-install/fs/get.pm, perl-install/fs/loopback.pm,
+ perl-install/fs/mount.pm, perl-install/fs/type.pm,
+ perl-install/fs/wild_device.pm,
+ perl-install/network/thirdparty.pm,
+ perl-install/standalone/bootloader-config,
+ perl-install/standalone/drakautoinst: try to cleanup fs.pm (to
+ have simpler dependencies between modules, esp. have some modules
+ only required by diskdrake):
+
+ - move some functions from fs to fs::mount (most keep their
+ name, except mount_part and mount_usbfs) - move formatMount_part
+ and formatMount_all from fs to fs::format
+
+ - move some functions from fs to fs::wild_device
+ (part2wild_device_name -> fs::wild_device::from_part)
+ (subpart_from_wild_device_name -> fs::wild_device::to_subpart)
+ (analyze_wild_device_name -> fs::wild_device::analyse)
+
+ - formatMount_part(), formatMount_all(), fs::mount::part() don't
+ take a prefix anymore the current situation was quite muddy
+ we now rely on fs::get::mntpoint_prefixed() which will maybe
+ depend on a field in $part for now, we mount every part in
+ chroot, it seems to be what's wanted
+
+ - fs::format::part() now expect $all_hds instead of $raids
+
+ - fs::type::carryRootLoopback is now
+ fs::get::carry_root_loopback() - in fs::loopback, most functions
+ don't want a prefix anymore
+
+2005-06-28 10:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: br.po, cy.po, ga.po: update
+
+2005-06-28 09:50 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: New translations
+
+2005-06-28 09:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: install_any.pm, 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/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: upcase protocol names
+
+2005-06-28 09:41 Pixel <pixel at mandriva.com>
+
+ * tools/drakx-in-chroot: help getting rid of existing files
+
+2005-06-28 09:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: fr.po, br.po: update
+
+2005-06-28 09:26 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-06-28 08:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_any.pm: (ask_if_suppl_media) upcase protocol
+ name
+
+2005-06-28 07:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakboot: handle no bootloader
+ configuration found with a clean error
+
+2005-06-28 06:56 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Add NFS supplementary media in fstab
+
+2005-06-28 05:23 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, pkgs.pm: Fix install_urpmi with
+ nfs suppl media
+
+2005-06-28 04:12 Pixel <pixel at mandriva.com>
+
+ * make_boot_img, perl-install/standalone/drakpxe: - since we don't
+ use a ramdisk for the stage2 anymore, remove ramdisk_size=128000
+ (hopefully the initrd doesn't have the limitation or we won't hit
+ the stupid low default max size of the kernel) - use the short
+ aliases for automatic stage1 (cf mdk-stage1/automatic.c)
+
+2005-06-27 14:04 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Support NFS supplementary media
+
+2005-06-27 09:41 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: Missing translation
+
+2005-06-27 07:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.28mdk
+
+2005-06-27 01:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: make_live: recreate existing user accounts on
+ restoring
+
+2005-06-26 10:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: (write_grub) fix root when using
+ labels and switching from LILO to GRUB
+
+2005-06-26 09:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: fix switch from nvidia
+ to nv for X.org
+
+2005-06-26 09:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: we now use X.org
+ instead of XFree86
+
+2005-06-25 05:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: use empty prototype
+
+2005-06-25 04:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: don't fork to get route with "ip
+ route", use /proc/net/route instead (TODO: handle IPv6 with
+ /proc/net/ipv6_route)
+
+2005-06-24 13:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: detect_devices.pm, standalone/drakxtv: rename
+ isTVcard() as isTVcardConfigurable() since it's more meaninfull
+ regarding its purpose
+
+2005-06-24 13:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: detect_devices.pm, harddrake/v4l.pm: enable to
+ configure cx88 driver
+
+2005-06-24 13:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/v4l.pm: do not use tree branches for
+ vendor when there's only one device
+
+2005-06-24 13:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/v4l.pm: update card lists from
+ kernel-2.6.12
+
+2005-06-24 13:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/v4l.pm: (config) do not use a combo
+
+2005-06-24 11:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.27mdk
+
+2005-06-24 11:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, fs/dmraid.pm: handle dmraid device not
+ there, keeping the raw hds
+
+2005-06-24 10:30 Pixel <pixel at mandriva.com>
+
+ * rescue/partimage_whole_disk: fixing fstab must be done after
+ mounting /mnt
+
+2005-06-24 09:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fs/format.pm, share/list.xml: normalize mke2fs and
+ mkreiserfs into mkfs.<fs_type>
+
+2005-06-24 09:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: remove
+ MDK::Common::Globals::init (fix crash)
+
+2005-06-24 09:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: add "default_width" and "default_height"
+ for Gtk2::Window
+
+2005-06-24 09:02 Pixel <pixel at mandriva.com>
+
+ * rescue/list.xml: add mkfs.ext2
+
+2005-06-24 05:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: replace remaining $net->{auth}
+ with $authentication (since those variables are no more written
+ in sysconfig/network)
+
+2005-06-24 05:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakauth: use
+ network::network::write_network_conf (fix crash)
+
+2005-06-24 05:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/authentication.pm: fix NISDOMAIN
+
+2005-06-24 05:32 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Remove DB logs before doing an install.
+
+2005-06-24 04:34 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Remove rpm 4.2 bug workaround, it may
+ confuse rpm in some cases
+
+2005-06-23 19:29 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: Finsalize printer setup and more
+ spelling/tidy
+
+2005-06-23 11:25 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: Punctuation fix
+
+2005-06-23 11:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix titypo
+
+2005-06-23 10:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: handle dmraid require fail
+
+2005-06-23 08:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: cleanup (old titi
+ commit)
+
+2005-06-23 08:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/crypto.pm: remove unused get() and ftp()
+
+2005-06-23 08:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_steps.pm: don't use $::o but $o
+
+2005-06-23 07:07 Stew Benedict <sbenedict at mandriva.com>
+
+ * Makefile, make_boot_img: Setup needed files for Xbox boot in
+ /export
+
+2005-06-23 07:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_steps.pm: use http proxy settings from
+ stage1 as post-install proxy settings for both http and ftp
+ connections
+
+2005-06-23 06:34 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po:
+ Updated Estonian translation.
+
+2005-06-23 03:09 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-06-22 14:17 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-06-22 00:52 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/lang.pm: Added scim-ccinput support.
+
+2005-06-21 20:25 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: Mostly printer wizard strings
+
+2005-06-21 14:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/pxe.pm: perl_checker
+
+2005-06-21 14:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/pxe.pm: fix typo
+
+2005-06-21 14:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/pxe.pm: strip "pxelinux_" in
+ profiles-related-only functions
+
+2005-06-21 14:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/pxe.pm: - add profiles_exist - enhance
+ find_next_profile_name - add_empty_profile now needs a profile
+ name
+
+2005-06-21 11:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/format.pm: handle creation of labels for every
+ filesystem types
+
+2005-06-21 11:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/pxe.pm: perl_checker/suxiness fixes
+
+2005-06-21 11:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/pxe.pm: - basic profiles support - per_mac
+ address configuration support
+
+2005-06-21 10:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/pxe.pm: - give config file path as argument
+ in network::pxe::{read,write}_pxelinux_conf - add write_conf in
+ drakpxelinux to ease profile handling
+
+2005-06-21 10:08 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/list.xml: Need this to work with rpm
+ 4.4.1-9mdk
+
+2005-06-21 09:49 Pixel <pixel at mandriva.com>
+
+ * tools/drakx-in-chroot: add usage
+
+2005-06-21 09:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: commit here the command line I use
+
+2005-06-21 09:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: - compute free_space per hd if needed
+ (useful when auto-allocating on vgs with still free space on hd)
+ - fix verifying enough space for next allocate
+
+2005-06-21 07:34 Pixel <pixel at mandriva.com>
+
+ * rescue/partimage_whole_disk: - handle missing ntfs devices -
+ handle resizing last ext2 partition
+
+2005-06-21 07:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: don't disable kmod when doing a chroot
+ install
+
+2005-06-20 12:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.26mdk
+
+2005-06-20 09:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: inline ask_shorewall_interface
+
+2005-06-20 09:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakvpn: ask shorewall interface and use
+ it
+
+2005-06-20 09:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: make_live: switch from GRUB to LILO since the
+ later now enable to boot from USB
+
+2005-06-20 09:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: make_live: rollback
+
+2005-06-20 09:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakvpn: remove unused code (thus fixing
+ a crash)
+
+2005-06-20 09:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: make_live: switch from GRUB to LILO since the
+ later now enable to boot from USB
+
+2005-06-20 09:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: don't strip VLAN and MTU fields
+ from ifcfg files
+
+2005-06-20 08:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, install2.pm, fs/dmraid.pm,
+ fs/proc_partitions.pm: initial dmraid support
+
+2005-06-20 08:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/raw.pm: ignore HDIO_GETGEO fail
+ (useful for dmraid)
+
+2005-06-20 08:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fs.pm, fsedit.pm, fs/proc_partitions.pm: - change
+ prototype of fs::get_major_minor() - use it in
+ fs::proc_partitions::compare() (not useful at the moment, but
+ it may help in the future)
+
+2005-06-20 07:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/devices.pm: enable creation of /dev/dm-x devices
+ (not used at the moment)
+
+2005-06-20 07:20 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-06-20 07:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add missing require
+
+2005-06-20 07:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: remove duplicate lan
+ detection
+
+2005-06-20 04:50 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: install keychain when installing
+ openssh-clients
+
+2005-06-19 18:08 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: Updates and lots of speling
+ corrected
+
+2005-06-19 14:11 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-06-18 08:52 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/eu.po: updated Basque file
+
+2005-06-18 02:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: rollback titi's commit (it was needed
+ with 10.2 code, but i've already committed code to handle it
+ cleanly in cooker (see $quotes_if_needed))
+
+2005-06-17 21:50 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/: id.po: Updated
+
+2005-06-17 21:01 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: New entries and lots of "speling"
+
+2005-06-17 13:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: make_live: patch is needed for dkms-ati
+
+2005-06-17 12:24 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2005-06-17 11:25 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/pt_BR.po: updated Brazilian file
+
+2005-06-17 11:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: (write_lilo) fix support for labels
+ (eg: when switching from GRUB to LILO, let's prevent unmanagable
+ 'root="LABEL=..."' to appear)
+
+2005-06-17 11:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: typo fix
+
+2005-06-17 11:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: (write_lilo) fix support for labels
+ (eg: when switching from GRUB to LILO, let's prevent unmanagable
+ 'root="LABEL=..."' to appear)
+
+2005-06-17 10:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/: card.pm: (to_raw_X) fix 3D on ATI cards
+ (adding 'load "glx"')
+
+2005-06-17 09:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/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-06-17 09:35 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: be.po, bg.po, bn.po, br.po, bs.po:
+ updated pot file
+
+2005-06-17 09:28 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, am.po, ar.po, az.po:
+ updated pot file
+
+2005-06-17 09:10 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/network/ndiswrapper.pm: no space before question
+ marks
+
+2005-06-17 05:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: fix undefined function after
+ pixel cleanups (#16472)
+
+2005-06-17 04:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.25mdk
+
+2005-06-17 04:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: rewrite and document
+
+2005-06-17 04:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: (read_grub) fix reading config with
+ new grub (thus fixing detectloader, thus fixing
+ bootloader-config, thus fixing installkernel)
+
+2005-06-16 12:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/: card.pm: (libgl_config) fix enabling 3D
+ when multiple GL libraries are installed (eg: globetrotter)
+
+2005-06-16 11:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: modules.pm, harddrake/autoconf.pm: fix
+ autoconfiguring synaptics (eg: on globetrotter)
+
+2005-06-16 11:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: make_live: fix end message (do not speak about
+ restoration when installing)
+
+2005-06-16 10:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/autoconf.pm: load mouse modules after the
+ mouse has been configured, since modprobe.preload is read before
+ harddrake is run
+
+2005-06-16 09:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: make_live: fix mounting /proc
+
+2005-06-16 08:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: - new grub has files in
+ /lib/grub/i386-pc, copy them in /boot/grub (as done by
+ grub-install) - use "setup" grub command instead of "install" so
+ that it handles stage1.5 embedding if possible, and is simpler
+
+2005-06-16 08:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: move.pm: (install2::configMove) fix infinite loop
+ while adding users
+
+2005-06-15 12:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.24mdk
+
+2005-06-15 12:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/: card.pm: (to_raw_X) really prevent
+ loading/unloading twice the same glx module on non NV cards
+
+2005-06-15 09:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/: card.pm: (to_raw_X) prevent
+ loading/unloading twice the same glx module on non NV cards
+
+2005-06-15 07:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::Banner->new) load lang in order to
+ prevent aborting
+
+2005-06-14 14:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.23mdk
+
+2005-06-14 14:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: (write_grub) adapt to grub-0.97-2mdk
+
+2005-06-14 11:50 Pixel <pixel at mandriva.com>
+
+ * rescue/make_partimage_save_rest_all: die on error
+
+2005-06-14 11:49 Pixel <pixel at mandriva.com>
+
+ * rescue/list.xml: needed for partimage_whole_disk, before calling
+ resize2fs
+
+2005-06-14 10:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/type.pm: for lsparts to work
+
+2005-06-14 08:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: quotes in monitor names causes
+ havoc, replace them (bugzilla #16406)
+
+2005-06-14 07:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: use diskdrake::resize_ext2
+
+2005-06-14 07:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/resize_ext2.pm: move ext2 resizing code
+ here so that it's easier to use
+
+2005-06-14 03:31 Sharuzzaman Ahmat Raslan <sharuzzaman at myrealbox.com>
+
+ * perl-install/share/po/ms.po: Updated Malay translation
+
+2005-06-13 11:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/: authentication.pm: stop messing with likeauth and
+ nullok options and keep them on the pam_unix line (bugzilla
+ #12066)
+
+2005-06-13 07:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/modem.pm: prefix write_secret_backend
+
+2005-06-13 07:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fs.pm, fsedit.pm, install_any.pm, fs/get.pm,
+ standalone/drakupdate_fstab: fsedit::is_same_hd is now
+ fs:get::is_same_hd
+
+2005-06-13 06:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fs.pm, diskdrake/removable.pm,
+ fs/mount_options.pm, fs/type.pm: fs::auto_fs() is now
+ fs::type::guessed_by_mount() (still not a really nice name...)
+
+2005-06-13 06:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Makefile.config: don't install drakpxe, the PXE
+ wizard is now in the drakpxelinux package
+
+2005-06-13 06:33 Pixel <pixel at mandriva.com>
+
+ * rescue/: guessmounts, lsparts, restore_ms_boot: move functions
+ using /proc/partitions out of fsedit to fs::proc_partitions
+
+2005-06-12 09:02 rstandtke
+
+ * perl-install/share/po/de.po: some additions and fixes
+
+2005-06-12 04:54 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2005-06-10 10:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: don't drop "shade" and "viewport"
+ lines (bugzilla #16372)
+
+2005-06-10 10:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/: class_discard.pm, standalone.pm: class_discard is
+ a bad idea, now unused, so drop it
+
+2005-06-10 09:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/: commands.pm, common.pm, crypto.pm, fs.pm,
+ install_any.pm, interactive.pm, pkgs.pm, network/isdn.pm,
+ network/test.pm, resize_fat/main.pm, security/msec.pm,
+ standalone/drakTermServ: don't need use MDK::Common... when we
+ have "use common" (which is the standard for libDrakX modules)
+
+2005-06-10 09:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/proc_partitions.pm: make it work
+
+2005-06-10 09:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, authentication.pm, bootloader.pm,
+ detect_devices.pm, devices.pm, fsedit.pm, http.pm, mygtk2.pm,
+ raid.pm, Xconfig/main.pm, Xconfig/resolution_and_depth.pm,
+ diskdrake/hd_gtk.pm, diskdrake/interactive.pm,
+ diskdrake/smbnfs_gtk.pm, fs/mount_options.pm,
+ fs/proc_partitions.pm, harddrake/autoconf.pm, harddrake/data.pm,
+ harddrake/sound.pm, harddrake/v4l.pm, modules/interactive.pm,
+ network/adsl.pm, network/dhcpd.pm, network/ethernet.pm,
+ network/ipsec.pm, network/isdn.pm, network/modem.pm,
+ network/network.pm, network/nfs.pm, network/smb.pm,
+ network/smbnfs.pm, partition_table/dos.pm: - move functions using
+ /proc/partitions out of fsedit to fs::proc_partitions - remove
+ unneeded "use xxx" - add some "use xxx" (nb: not completly needed
+ because some other modules may do it)
+
+2005-06-10 07:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/isdn.pm: write_secret_backend isn't exported
+ anymore
+
+2005-06-10 07:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: adsl.pm, isdn.pm: use services::enable()
+ and services::disable()
+
+2005-06-10 07:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/services.pm: create enable() and disable() out of
+ set_status()
+
+2005-06-10 06:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Xconfig/default.pm, Xconfig/main.pm,
+ Xconfig/various.pm, diskdrake/interactive.pm,
+ network/netconnect.pm, network/thirdparty.pm,
+ partition_table/gpt.pm: add some "use xxx;" (the idea is to see
+ what the package needs, but i may rollback after understanding
+ better dependencies)
+
+2005-06-10 06:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/: bootloader.pm, fs.pm, fsedit.pm, install_steps.pm,
+ install_steps_interactive.pm, loopback.pm, pkgs.pm,
+ diskdrake/hd_gtk.pm, diskdrake/interactive.pm, fs/format.pm,
+ fs/get.pm, fs/loopback.pm: move loopback.pm to fs/loopback.pm
+ (since it's tightly tight to many fs* things)
+
+2005-06-10 06:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/pxe.pm: - create network::pxe out of
+ drakpxelinux (pxe configuration files management) - get_items()
+ -> network::pxe::read_pxelinux_conf() - don't read comments in
+ pxelinux configuration file - store pxelinux configuration in a
+ hash to avoid multiple cat_() - add
+ network::pxe::list_pxelinux_labels() to get labels from a
+ pxelinux configuration - only overwrite pxelinux settings
+ (prompt, timeout, ...) when pxe is reconfigured - use
+ network::network and network::tools to get hostname, domain name,
+ IP address, net interface - move row creation code in
+ set_pxelinux_entry_at_iter() and factorize - use
+ ensure_is_installed to make sure pxe is installed
+
+2005-06-09 15:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: add get_interface_ip_address (with
+ bits from drakpxelinux)
+
+2005-06-09 15:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/move.pm: bump copyright + s/Mandrakesoft/Mandriva/
+
+2005-06-09 13:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/Makefile: (changelog) only track HEAD changes
+
+2005-06-09 13:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/Makefile: (changelog) compute ChangeLog in branch
+
+2005-06-09 13:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: make_live: - sync with DrakX's API - add a few
+ comments - we only need 4.6Gb for packages now (the DVD image) -
+ update package list: o for 10.0 -> LE2005 changes (eg: switch
+ to dkms and the like) o install all languages (marketing
+ request) o install multimedia plugins & Java runtime
+ environment o do not unselect anymore input methods
+
+2005-06-09 12:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: make_live: (installPackages) help packages'
+ post-install scripts
+
+2005-06-09 12:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: make_live: (installPackages) help DrakX more
+
+2005-06-09 12:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: make_live: detect both old and new LaCie models
+
+2005-06-09 12:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: make_live: prevent building a disk w/o translation
+ catalogs
+
+2005-06-09 12:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: make_live: prevent warning message about /proc to
+ appear at boot
+
+2005-06-09 12:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: make_live: - urpmi syntax had changed - install
+ all new media
+
+2005-06-09 12:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: make_live: devfs is dead
+
+2005-06-09 12:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: make_live: save X.org conf too on profile switch
+
+2005-06-09 12:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: pkgs.pm: (install) do not kill runaway processes
+ when building the globetrotter
+
+2005-06-09 12:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: pkgs.pm: (bestKernelPackage) while building a
+ globetrotter, do not look for a specific kernel favour
+
+2005-06-09 12:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: make_live: set $::build_globetrotter
+
+2005-06-09 12:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: forward: (getSCSI_26) fix of by
+ one error resulting in misdetecing USB mass storage devices
+ (#13569)
+
+2005-06-09 12:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: install_steps_interactive.pm: (addUser) apply
+ autologin setting for globetrotter
+
+2005-06-09 12:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: install_steps_interactive.pm: (acceptLicense) do
+ not show "releases notes" for globetrotter
+
+2005-06-09 12:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: move.pm: (install2::configMove) prevent dm service
+ to fail to startup because of /tmp/.font-unix's permissions
+
+2005-06-09 12:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/move.pm: (install2::configMove) remove useless test
+
+2005-06-09 12:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: move.pm: (install2::configMove) workaround init
+ reading inittab before any.pm alters it
+
+2005-06-09 12:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: move.pm: sync with drakx's API
+
+2005-06-09 12:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: move.pm: (automatic_xconf) class_discard is needed
+ way earlier
+
+2005-06-09 12:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: move.pm: (install2::configMove) fix killing X11
+ due to XFree86 -> X.org switch
+
+2005-06-09 12:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: move.pm: (install2::configMove) if formatError()
+ returns nothing, better display the raw error
+
+2005-06-09 12:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/hwprofile: adapt do 10.2 drakconnect API
+
+2005-06-09 11:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: Makefile: fix build
+
+2005-06-09 11:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: .perl_checker: blacklist more pakcages
+
+2005-06-09 11:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: runstage2: fix comment
+
+2005-06-09 11:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: (acceptLicense) fix
+ exiting step license
+
+2005-06-09 11:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: (acceptLicense) better
+ use run_program for killing Xorg
+
+2005-06-09 11:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_steps.pm: (leavingStep) if formatError()
+ returns nothing, better display the raw error
+
+2005-06-09 11:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/: card.pm: forward: ensure that explanations
+ go into /var/log/explanations is standalone mode
+ (log::explanations() just calls log::l() at install time)
+
+2005-06-09 11:12 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: - added senegal ADSL
+ provider entry
+
+2005-06-09 11:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: remove non-ASCII character
+
+2005-06-09 10:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (autologin) make autologin choice more user
+ friendly (better fix for #4304)
+
+2005-06-09 09:34 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: Translated more strings, also fixed
+ a few old ones :)
+
+2005-06-09 06:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/: modules.pm, modules/any_conf.pm: don't need
+ prefixing with current package
+
+2005-06-09 04:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, install_any.pm, keyboard.pm, raid.pm,
+ services.pm, Xconfig/main.pm, partition_table/mac.pm: don't need
+ prefixing with current package
+
+2005-06-08 11:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/fs.pm: (mount_part) stop removing lost+found
+ (#16173) (pixel's changelog was "no_comment")
+
+2005-06-08 10:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.22mdk
+
+2005-06-08 09:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: bump conflict on drakconf due to
+ blino's changes
+
+2005-06-08 08:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ndiswrapper.pm: allow to install ndiswrapper
+ drivers during install
+
+2005-06-08 08:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: network.pm, ndiswrapper.pm: use prefix
+ only once it has been defined by install
+
+2005-06-07 09:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: do not crash when restarting
+ shorewall
+
+2005-06-07 09:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: network/shorewall.pm, standalone/drakgw: don't be
+ fooled by if_ not short-circuiting and auto-vivification, use
+ $conf->{masq_subnet} instead of $conf->{masquerade}{subnet} (i.e.
+ do not write buggy shorewall masqfile when connection sharing is
+ disabled)
+
+2005-06-07 07:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.21mdk
+
+2005-06-07 07:30 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-06-07 06:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/fs.pm: (mount) use 'soft' & 'intr' options for nfs
+ mounts
+
+2005-06-07 04:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: (media_browser): handle nfs
+
+2005-06-07 03:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/finish-install: - backport "add language
+ selection" - add keyboard selection
+
+2005-06-07 03:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: allow inspecting nfs
+
+2005-06-07 03:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: handle nfs mount (since we now use the
+ /bin/mount instead of the syscall, we get it for free)
+
+2005-06-06 17:35 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cy.po: updated Welsh file
+
+2005-06-06 17:04 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fr.po, vi.po: updated French and
+ Vietnamese files
+
+2005-06-06 10:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: replace strange "-" with a ascii
+ compliant one
+
+2005-06-06 08:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_any.pm: install2 functions
+ should be steps
+
+2005-06-06 08:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_any.pm, install_steps.pm,
+ install_steps_auto_install.pm, install_steps_gtk.pm,
+ install_steps_interactive.pm: get rid of $clicked and $ent_number
+ (obsolete)
+
+2005-06-06 08:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/compssUsers.pl: change the default in case of
+ low resources and add the Icewm choice
+
+2005-06-06 08:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: make it more readable
+
+2005-06-06 07:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: kill unused variables
+
+2005-06-06 07:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: simplify apply() since
+ sethostname() is done by configure_network()
+
+2005-06-06 07:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: set system hostname when writing
+ network configuration
+
+2005-06-06 07:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: create adjustments before
+ resolution is set so that they get correct upper values
+
+2005-06-06 07:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: - create
+ update_scales_for_resolution() and
+ update_scale_values_from_conf() out of update_scale_values() -
+ modify $adj{$_}{value} instead of calling $adj{$_}->set_value to
+ avoid some artefacts caused by callbacks
+
+2005-06-06 07:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: - draw cross in progress bar
+ - update_rect -> update_theme_from_rect - create update_rect out
+ of switch_to_mode
+
+2005-06-06 06:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/bootloader-config: nicer error
+
+2005-06-06 06:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/: bootloader.pm, standalone/bootloader-config: - put
+ quotes if needed for root=xxx (quotes are needed for LABEL=...) -
+ use LABEL=... if preferred
+
+2005-06-06 06:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: really consider text box
+ values
+
+2005-06-06 06:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: rewrite before adding more
+
+2005-06-06 06:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/bootsplash.pm: fix typo instead of trying to be
+ perl_checker compliant ...
+
+2005-06-06 06:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: keep read-only, read-write and label
+ as verbatim as possible (note that read-only will not appear by
+ default anymore since "ro" is the default)
+
+2005-06-06 06:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: handle GATEWAY field again
+ in manage interface
+
+2005-06-06 06:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/: bootloader.pm, install_steps.pm: use
+ bootloader->{message_text} instead of bootloader->{message}
+
+2005-06-06 06:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: use real_main here since
+ exceptions are handled
+
+2005-06-06 05:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: update comments
+
+2005-06-06 05:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: add ISP field in eagle-usb.conf
+
+2005-06-06 05:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/autoconf.pm: netconnect API change,
+ harddrake::autoconf::network_conf seems unused anyway, and this
+ easy_dhcp thing is already performed by hotplug
+
+2005-06-06 05:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakgw: drop unused variable, this file
+ is modified in network::shorewall now
+
+2005-06-06 05:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: printer/printerdrake.pm, standalone/drakgw: new
+ netconnect API
+
+2005-06-06 05:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: API change (me sux)
+
+2005-06-06 04:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/: detect_devices.pm, share/compssUsers.pl,
+ share/rpmsrate: make a special "low resources" choice
+
+2005-06-06 03:57 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: Translated more strings
+
+2005-06-06 02:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: don't add us_intl,
+ lang2keyboards() takes care of everything (bugzilla #12979)
+
+2005-06-06 02:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/keyboard.pm: default to "en" keyboard (as requested
+ by pablo)
+
+2005-06-03 14:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add pata_pdc2027x SATA driver
+
+2005-06-03 12:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_any.pm: do not use a loop device to read ISO
+ image IDs, read them directly in the file ...
+
+2005-06-03 12:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_steps.pm: introduce network_is_cheap(), use
+ it, and fix a boolean typo
+
+2005-06-03 11:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_steps.pm: $o->{net}{type} is already defined
+ in more appropriate places
+
+2005-06-03 11:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install2.pm: define $o->{net}{type} and
+ $o->{net}{net_interface} for lan installs
+
+2005-06-03 11:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_any.pm: provide backward compatibility for
+ network fields in loadO
+
+2005-06-03 11:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: keep NETWORKING_IPV6 and
+ FORWARD_IPV4 variables in /etc/sysconfig/network
+
+2005-06-03 10:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install2.pm: remove comment, stage1 now writes
+ DOMAINNAME and DHCP_HOSTNAME in the proper files
+
+2005-06-03 10:39 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: write DHCP_HOSTNAME in /tmp/ifcfg-* file
+ instead of /tmp/network
+
+2005-06-03 10:37 Pixel <pixel at mandriva.com>
+
+ * tools/drakx-in-chroot: don't rmdir directories in the chroot
+
+2005-06-03 10:37 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: domain name is already in /etc/resolv.conf
+ (and stage2 reads this file too), don't write it in /tmp/network
+
+2005-06-03 10:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, raid.pm, fs/type.pm,
+ standalone/drakperm, standalone/logdrake: remove unused code
+
+2005-06-03 10:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install2.pm: $o->{net}{network} and
+ $o->{net}{resolv} may not exist at this stage of installation
+ (they are created by read_net_conf), create them if needed
+
+2005-06-03 10:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: net interface is now in
+ $net->{net_interface}
+
+2005-06-03 10:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: drop now unused variable
+
+2005-06-03 10:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/: partition_table.pm, diskdrake/interactive.pm:
+ remove unused isPrimary
+
+2005-06-03 10:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: remove unused code
+
+2005-06-03 10:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: during_install__l2charset() was used by
+ share/gen_locales.sh which is now dropped
+
+2005-06-03 10:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: update comment
+
+2005-06-03 10:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_any.pm: remove unneeded parentheses (keep
+ first() to make it readable by trainees ...)
+
+2005-06-03 10:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: remove unused old code
+
+2005-06-03 10:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: remove unused code
+
+2005-06-03 09:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: remove doble
+
+2005-06-03 09:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/commands.pm: (dd) reuse c::
+
+2005-06-03 09:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/commands.pm: (dd) make sysopen() call readable
+
+2005-06-03 09:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: use "our" instead of "use vars"
+
+2005-06-03 09:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: add O_CREAT
+
+2005-06-03 09:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: help perl_checker
+
+2005-06-03 09:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix pixel sucks
+
+2005-06-03 09:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: add O_WRONLY & O_RDWR
+
+2005-06-03 09:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: drop unused subs
+
+2005-06-03 09:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: dropping
+ pkg_install_if_requires_satisfied() (old & unused)
+
+2005-06-03 09:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: authentication.pm, install2.pm, install_any.pm,
+ install_steps.pm, install_steps_interactive.pm, network/adsl.pm,
+ network/adsl_consts.pm, network/ethernet.pm, network/isdn.pm,
+ network/modem.pm, network/netconnect.pm, network/network.pm,
+ network/tools.pm, standalone/drakauth, standalone/drakautoinst,
+ standalone/drakconnect, standalone/drakpxe,
+ standalone/finish-install, standalone/net_applet,
+ standalone/net_monitor: - merge network settings in a $net hash
+ (it modifies $o fields too): o $netc becomes $net->{network}
+ and $net->{resolv} o $intf becomes $net->{ifcfg} - move
+ zeroconf config stuff in write_zeroconf - read_tmdns_conf ->
+ read_zeroconf - read_all_conf -> read_net_conf -
+ configureNetwork2 -> configure_network - configure_network: write
+ ifcfg files for ppp interfaces too - don't install wireless-tools
+ in configure_network, this package is in basesystem - most
+ functions don't need the file path as an argument in
+ network::network - drop network::tools::remove_initscript - don't
+ export too much from network::network - don't export from
+ network::tools - remove adsl_unsupported_eci step in drakconnect
+ - drop passwd2 field in network::adsl - drop
+ $net->{isdn_internal} - network::netconnect : main -> safe_main -
+ use network::netconnect::real_main during install - don't read
+ network config in network::netconnect::real_main -
+ install_steps::upNetwork : resolv.conf is already symlinked by
+ network::network::configure_network when appropriate - try to fix
+ install_any::generate_automatic_stage1_params to use a real
+ interface configuration - put authentication stuff in
+ $net->{auth} - drop network::ethernet::write_ether_conf - drop
+ network::adsl::get_wizard - use 'static' instead of 'manual' as
+ ADSL method - drop first_modem and its workarounds in
+ network::modem - drop deprecated "multiple_internet_cnx" step in
+ drakconnect - don't save /etc/sysconfig/drakconnect anymore -
+ drop MDK::Common::Globals stuff - drop getIP in net_applet
+ (Pixel) - drop $netc->{DHCP} - configure_network(): write
+ resolv.conf even if a dhcp interface is configured
+
+2005-06-03 09:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/XFdrake: drop setting $_ (unused)
+
+2005-06-03 09:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: drop untranslate which is unused and bad
+ practice
+
+2005-06-03 09:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakpxe: drop unused code (and one should
+ use append_to_file instead of this outpend)
+
+2005-06-03 09:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/: devices.pm, diskdrake/interactive.pm: drop old
+ unused code
+
+2005-06-03 09:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/: authentication.pm, standalone/drakauth: read
+ existing authentication conf (only minimal support for now)
+
+2005-06-03 08:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: simplify
+
+2005-06-03 08:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/fileshareset: use find() (which was
+ unused)
+
+2005-06-03 08:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: add many non perl_checker compatible
+ modules
+
+2005-06-03 08:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakups: minimal changes to make me and
+ perl_checker happy
+
+2005-06-03 08:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/: net_applet, drakbug, drakboot: make
+ perl_checker happy
+
+2005-06-03 08:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: perl_checker fixes, make mode
+ optionnal in load_image
+
+2005-06-03 08:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/draksound: 4th parameter is not used, i
+ suspect it's not useful anymore since we pass the value in
+ {sound_slot_index}
+
+2005-06-03 08:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootsplash.pm: - perl_checker compliance - use "our"
+ instead of "use vars"
+
+2005-06-03 08:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/draksplash2: make perl_checker happy
+
+2005-06-03 07:57 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Typo fix
+
+2005-06-03 07:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootsplash.pm: simplify
+
+2005-06-03 07:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/net_applet: fix blino sux
+
+2005-06-03 07:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ndiswrapper.pm: drop unused variable, this
+ is done in detect_devices::get_sysfs_device_id_map()
+
+2005-06-03 07:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/: pkgs.pm, interactive/newt.pm,
+ standalone/harddrake2: make perl_checker happy
+
+2005-06-03 07:39 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/crypto.pm: The mandrakelinux-release package doesn't
+ exist any more, so you can't deduce the version from it.
+ Something more robust than this needs to be figured out.
+
+2005-06-03 07:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/netconnect.pm: be more in drakx spirit, and
+ more important perl_checker warning clean
+
+2005-06-03 07:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/keyboard.pm: DISABLE_WINDOWS_KEY in
+ /etc/sysconfig/keyboard since it is unused (AFAIK as i, flepied
+ and lmontel knows) (it was added by fpons, commit 1.108 on
+ 2001/07/05)
+
+2005-06-03 07:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, detect_devices.pm, lang.pm: get rid of the
+ few remaining $LD_LOADER
+
+2005-06-03 07:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list.xml: more tools when debugging install
+
+2005-06-03 07:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/keyboard.pm: rename load() into builtin_loadkeys()
+
+2005-06-03 07:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/commands.pm: drop oooold broken code
+
+2005-06-03 07:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/commands.pm: drop oooold deprecated code
+
+2005-06-03 07:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/commands.pm: inline old mount command which has been
+ removed
+
+2005-06-03 06:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/keyboard.pm: drop obsolete code (keymaps.cz2 and
+ xmodmap.cz2 are dead since make_mdkinst_stage2 was dropped)
+
+2005-06-03 06:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/: commands.pm, install_steps.pm, keyboard.pm:
+ keyboard::setup() is better named keyboard::setup_install()
+
+2005-06-03 06:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/keyboard.pm: reformat keyboard2full_xkb()
+
+2005-06-03 06:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/keyboarddrake: fix indentation (titi sux)
+
+2005-06-03 06:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/: keyboard.pm, standalone/keyboarddrake: create
+ keyboard::configure_xorg() and use it (and don't call it inside a
+ eval, no error should occur)
+
+2005-06-03 06:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, install_steps_interactive.pm: don't use
+ $in->{locale} as being $o->{locale} during install, it's much
+ better to pass $o->{locale}
+
+2005-06-03 02:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/localedrake: use
+ any::selectLanguage_and_more_standalone()
+
+2005-06-03 02:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, lang.pm: for finish-install
+
+2005-06-03 02:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/finish-install: add language selection to
+ finish-install
+
+2005-06-03 02:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/finish-install: adapt to
+ network::netconnect::real_main() prototype change
+
+2005-06-03 01:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: helper rule
+
+2005-06-02 17:52 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: Tidy up fuzzy messages
+
+2005-06-02 11:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_steps.pm: random service doesn't exist
+ anymore
+
+2005-06-02 11:22 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: Fixes and msg sync
+
+2005-06-02 07:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, modules/any_conf.pm: read in existing
+ modprobe.conf on upgrade (bugzilla #13309)
+
+2005-06-02 07:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_any.pm,
+ install_steps_interactive.pm: allow upgrading a chroot (using
+ drakx-in-chroot)
+
+2005-06-02 07:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/: list.xml: allow "perl -d" on install
+
+2005-06-02 05:20 Olivier Blin <oblin at mandriva.com>
+
+ * globetrotter/hwprofile: fix netprofile stuff
+
+2005-06-02 05:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/keyboard.pm: make perl_checker happy
+
+2005-06-02 04:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps.pm, keyboard.pm,
+ standalone/keyboarddrake: - create keyboard::default() and use it
+ - it uses keyboard::from_DMI() to get XkbModel when possible
+
+2005-06-02 04:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/: detect_devices.pm, install_any.pm,
+ install_interactive.pm, modules.pm, Xconfig/monitor.pm: create
+ detect_devices::probe_name() &
+ detect_devices::probe_unique_name() and use them
+
+2005-06-02 03:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: make perl_checker happy
+
+2005-06-02 03:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: revert very new titi sucks
+
+2005-06-02 01:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: (acceptLicense) fix
+ exiting step license
+
+2005-06-02 01:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_steps.pm: (miscellaneousAfter) fix very old
+ uncatched bug
+
+2005-06-01 13:08 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Tape backup/restore fixes to
+ work with new .backupignore scheme, +bugs.
+
+2005-06-01 10:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (ask_fromW) simplify
+
+2005-06-01 09:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: allow specifying the uid and gid when
+ creating a user (part of bugzilla #15190)
+
+2005-06-01 09:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (ask_fromW) do not use next in
+ callback
+
+2005-06-01 09:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/format.pm: fix typo
+
+2005-06-01 09:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: add many resolutions, but don't
+ allow them yet
+
+2005-06-01 08:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: merge_fstabs doesn't mess around with options
+ anymore in "loose" mode
+
+2005-06-01 08:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: ensure reading existing fstab in
+ suggest_mount_points doesn't get its options
+
+2005-06-01 06:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: auto_install support for creating LABELed
+ devices
+
+2005-06-01 06:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/format.pm: set the LABEL after formatting, or
+ drop it if we don't know how to set it
+
+2005-06-01 06:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: nicer log
+
+2005-06-01 05:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Makefile, commands.pm, fs.pm, share/list.xml: use
+ command mount instead of using directly the syscall (allows some
+ cleanup)
+
+2005-06-01 05:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, standalone/finish-install,
+ standalone/localedrake: add language selection to finish-install
+
+2005-05-31 12:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/isdn.pm: use services::set_status
+
+2005-05-31 11:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: - rename "hw_account" step as
+ "isdn_account" - remove unneeded code - don't overwrite
+ huptimeout value
+
+2005-05-31 11:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: tag obscure isdn card
+ settings as advanced
+
+2005-05-31 11:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: if__(exists $foo, $bar)
+ returns $bar whatever $foo is, don't try to make smart code that
+ don't work (initial goal was probably to hide some isdn settings
+ if they weren't set)
+
+2005-05-31 10:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: really handle irq, mem, io,
+ io0, io1 isdn paramaters (i.e. finish the "fix parameters
+ reading/writin in isdn config" commit from Titi)
+
+2005-05-31 10:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/isdn.pm: read I4L_IDLETIME setting
+
+2005-05-31 10:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: isdn.pm, netconnect.pm: handle huptimeout
+ setting again (I4L_IDLETIME in isdn4net)
+
+2005-05-31 10:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/finish-install: remove unneded modules
+ loading ('net' category is deprecated for ages)
+
+2005-05-31 10:24 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-05-31 09:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2005-05-31 09:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: remove dead code
+
+2005-05-31 07:59 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-05-31 03:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: for drakx-finish-install
+
+2005-05-31 03:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakedm: adding back translation of
+ descriptions for some known display managers
+
+2005-05-30 14:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: add no_club option to specify
+ that no club drivers are available (ECI)
+
+2005-05-30 13:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: any.pm, network/netconnect.pm, network/network.pm,
+ standalone/net_applet: move netprofile stuff in network::network
+
+2005-05-30 11:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakedm: - don't use hard written entries
+ anymore - display the entries sorted as given - simplify code
+ using more drakx functions
+
+2005-05-30 10:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix spacing in 10.3-0.20mdk's
+ changelog
+
+2005-05-30 10:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakedm: look for *.conf
+
+2005-05-30 10:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add missing closing brace
+
+2005-05-30 09:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: external isdn modems don't
+ require the "isdn_dial_on_boot" step
+
+2005-05-30 09:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: $netc->{isdntype} is unneeded
+
+2005-05-30 09:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: simply isdn external modem
+ code (remove $netcnx->{isdn_external})
+
+2005-05-30 09:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: don't kill runaway processes in
+ drakx-in-chroot since we don't detect wether those are runaway
+ processes or normal processes
+
+2005-05-30 09:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/isdn.pm: remove unneeded comments
+
+2005-05-30 09:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: use network::thirdparty for
+ modem devices
+
+2005-05-30 09:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: allow to ask for some
+ configuration fields (useful for "device" in "rtc" category)
+
+2005-05-30 09:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: don't skip selectLanguage,
+ selectKeyboard and miscellaneous by default in drakx-in-chroot
+
+2005-05-30 09:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: button "Reboot" is
+ better called "Quit" for chrooted installs
+
+2005-05-30 08:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: remove dead code
+
+2005-05-30 08:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm, perl-install/install_any.pm,
+ perl-install/install_steps.pm, tools/drakx-in-chroot: make
+ drakx-in-chroot work
+
+2005-05-30 08:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add snd-ali5451 network/slmodem since it
+ can now drive the modem part of this chip (from ALSA CVS)
+
+2005-05-30 08:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.20mdk
+
+2005-05-30 04:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add itmtouch to input/touchscreen
+
+2005-05-30 04:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add more USB DVB drivers: dvb-usb-a800,
+ dvb-usb-dibusb-mb, dvb-usb-digitv, dvb-usb-dtt200u,
+ dvb-usb-nova-t-usb2, dvb-usb-umt-010 and dvb-usb-vp7045
+
+2005-05-30 04:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: (write_preload_conf) factorize modules
+ managment
+
+2005-05-30 04:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: (write_preload_conf) simplify DVB & TV
+ managment through probe_category()
+
+2005-05-30 04:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: load drivers for newly
+ added devices so that they work out of the box on first boot
+ after card plugging for the following categorys: AGP ATA_STORAGE
+ DVB SATA_STORAGE SCSI_CONTROLLER TV
+
+2005-05-29 19:17 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - Support for PPD file names with
+ spaces (bug #16172).
+
+2005-05-28 02:00 Sharuzzaman Ahmat Raslan <sharuzzaman at myrealbox.com>
+
+ * perl-install/share/po/ms.po: Updated Malay translation
+
+2005-05-27 13:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: netconnect.pm, thirdparty.pm, tools.pm:
+ initial import of network::thirdparty (this module factorizes the
+ thirdparty software/drivers/firmwares detection and installation
+ code, it points the user to the relevant
+ packages/documentation/url if needed, and don't allow to
+ configure a device if its requirements aren't satisfied)
+
+2005-05-27 12:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/common.pm: update comment
+
+2005-05-27 11:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-05-27 11:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (selectCountry) fix warning and cleanup
+
+2005-05-27 11:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.19mdk
+
+2005-05-27 08:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: - add new hfc4s8s_l1 ISDN driver - add
+ new bnx2 gigabit driver - add new ads7846_ts, gunze,
+ hp680_ts_input & mk712 mtouch touchscreen drivers
+
+2005-05-27 08:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakedm: handle /etc/X11/dm.d/* entries
+ (as proposed by Loic Baudry)
+
+2005-05-27 08:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps.pm:
+ kderc_largedisplay() is no more needed
+
+2005-05-27 08:04 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, pkgs.pm: Comment fixes, remove
+ noisy log
+
+2005-05-27 07:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps.pm: kfm is gone for
+ some time
+
+2005-05-27 07:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_steps.pm: - since
+ set_security doesn't depend on the bootloader password, we can
+ call it where it should - ensure we don't drop entries from
+ /etc/sysconfig/system
+
+2005-05-27 07:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: we need latest perl-MDK-Common
+
+2005-05-27 07:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/security/various.pm: use addVarsInSh()
+
+2005-05-27 07:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: remove unused and obsolete code
+
+2005-05-27 05:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (get_ims) rollback debug statement
+
+2005-05-27 03:57 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, pkgs.pm: Remove the naming
+ convention with a trailing "s" for supplementary CDs medium ids
+
+2005-05-27 03:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: - CLASS in /etc/sysconfig/system
+ is deprected (is always "beginner") - SECURITY in
+ /etc/sysconfig/system is unused (and always was)
+
+2005-05-27 03:20 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Remove unused function
+
+2005-05-27 02:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: don't set DRAKX_PASSWORD and
+ DURING_INSTALL for msec since msec doesn't care about them
+ anymore
+
+2005-05-27 02:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: replace $o->{localInstall} with
+ $::local_install
+
+2005-05-27 02:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix typo in comment
+
+2005-05-27 02:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (selectCountry) display SCIM combinaisons in
+ a sub menu
+
+2005-05-27 02:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: enable to select extra SCIM combinaisons:
+ scim+anthy, scim+canna, scim+fcitx, scim+m17n, scim+prime, and
+ scim+skk;
+
+2005-05-27 02:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (ask_fromW) fix set/get from sub
+ leaf of ComboBox with tree
+
+2005-05-26 18:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (ask_fromW) help perl_checker
+
+2005-05-26 17:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.18mdk
+
+2005-05-26 17:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getSCSI_26) fix of by one error
+ resulting in misdetecing USB mass storage devices (#13569)
+
+2005-05-26 16:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: fix setting a combobox with a
+ tree
+
+2005-05-26 16:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive.pm: (ask_from_normalize) since we can
+ now use ComboBoxes with trees, do not use big TreeView instead of
+ small ComboBox when not asked for
+
+2005-05-26 16:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (__create_tree_model,
+ create_treeview_tree, ask_fromW) enable to use ComboBoxes with
+ trees
+
+2005-05-26 13:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: help emacs somewhat
+
+2005-05-26 13:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: list alternative IMs so that they're
+ on CDs (in order not to break updates):
+
+2005-05-26 13:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakgw: remove debug code
+
+2005-05-26 13:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakgw: check_iptables() doesn't need a
+ $in object anymore
+
+2005-05-26 13:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakgw: add "choose_net_interface" step
+ to have a real wizard step when asking net interface
+
+2005-05-26 13:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: create
+ $ask_shorewall_interface_label, shorewall_interface_choices() and
+ set_net_interface() out of ask_shorewall_interface() to avoid
+ code duplication
+
+2005-05-26 13:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: perl_checker fixes
+
+2005-05-26 13:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: network/shorewall.pm, standalone/drakgw: better
+ way to handle squid ports (read shorewall REDIRECT rules in
+ network::shorewall::read to avoid tricks in
+ network::shorewall::write)
+
+2005-05-26 13:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: enable to select scim+uim again
+
+2005-05-26 13:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: install needed packages for kinput2
+
+2005-05-26 12:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: read_squid_conf() is now in
+ network::squid
+
+2005-05-26 12:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: simplify check_iptables()
+
+2005-05-26 12:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add orinoco_tmd wireless driver
+
+2005-05-26 10:32 Pixel <pixel at mandriva.com>
+
+ * kernel/.cvsignore: add RPMS
+
+2005-05-26 10:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm, perl-install/install_steps_gtk.pm,
+ perl-install/modules.pm, tools/drakx-in-chroot: replace unused
+ $o->{localInstall} with $::local_install, partially used instead
+ of $::uml_install and used in drakx-in-chroot
+
+2005-05-26 09:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: for drakx-finish-install
+
+2005-05-26 09:32 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Factorize and ensure checking main
+ installation method
+
+2005-05-26 09:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list.xml, tools/install-xml-file-list: -
+ enhance script so that we don't have to list bsh - add bash when
+ DEBUG_INSTALL
+
+2005-05-26 09:11 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Show the "downloading hdlist" wait box only
+ when downloading hdlist from a network medium
+
+2005-05-26 08:56 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Remove spurious field
+
+2005-05-26 07:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: - use scrollbar in preview
+ window - try not to be larger than screen size minus toolbars
+ size - close_window -> close_all
+
+2005-05-26 07:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Makefile.config, commands, install2,
+ share/aliases: switch from /usr/bin/perl-install to
+ /usr/lib/libDrakX
+
+2005-05-26 07:48 Pixel <pixel at mandriva.com>
+
+ * tools/install-xml-file-list: - handle <if set="..."> tag - hide
+ some stuff when non verbose
+
+2005-05-26 07:47 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Don't use the \d+s regexp on medium
+ ids to see if that's suppl cds.
+
+2005-05-26 07:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/symlinks: /etc/termcap is needed for perl
+ debugging
+
+2005-05-26 07:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list.xml: - add stuff to enable perl debugging
+ when DEBUG_INSTALL is set - ash is now a symlink, add bsh
+
+2005-05-26 07:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/devices: /dev/tty is needed to debug stage2
+
+2005-05-26 07:23 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps.pm,
+ install_steps_gtk.pm, install_steps_interactive.pm, pkgs.pm: More
+ refactorisation
+
+2005-05-25 12:21 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Mark an argument as optional
+
+2005-05-25 12:05 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: crypto.pm, install_any.pm, install_steps_gtk.pm,
+ install_steps_interactive.pm, pkgs.pm: Begin refactorization of
+ install medium handling code
+
+2005-05-25 10:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/fix-broken-hd.diff: fix broken hd
+
+2005-05-25 10:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: unmount partitions even when failled
+
+2005-05-25 10:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: display message earlier
+
+2005-05-25 10:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: on restoration, tell which one is the
+ packages partition when found
+
+2005-05-25 10:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: nicely tell that the restoration is
+ completed
+
+2005-05-25 10:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: use newly introduced my_exit() in order
+ to display better messages
+
+2005-05-25 10:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: (my_exit) introduce it for smoother
+ messages
+
+2005-05-25 10:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: handle smoothly packages partition with
+ multiple kernel packages
+
+2005-05-25 10:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: fix fs checking prior to restoration,
+ thus handling restoration on fscked hard disks
+
+2005-05-25 10:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: when we format the root fs prior to
+ restoring the hd, set back the label on the fs so that we can
+ handle an aborted restoration (power outrage, ...)
+
+2005-05-25 10:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: factorize some code through
+ find_partition()
+
+2005-05-25 10:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: rollback clean_rpmsrate's changes
+
+2005-05-25 09:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install both as10k1 and ld10k1 for
+ both snd-emu10k1 and snd-emu10k1x driven sound cards
+
+2005-05-25 07:04 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-05-25 06:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: let user call drakroam
+ (#16019)
+
+2005-05-25 05:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: use if_()
+
+2005-05-24 13:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.17mdk
+
+2005-05-24 11:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakgw: - wizardify - allow not to enable
+ DNS, dhcpd and proxy servers - allow not to enable CUPS broadcast
+ - use @IF (network interface) instead of network address in CUPS
+ configuration
+
+2005-05-24 11:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/dhcpd.pm: initial import, move
+ read_dhcpd_conf() from network::network and split
+ write_dhcpd_conf() from drakgw
+
+2005-05-24 11:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/squid.pm: initial import, move
+ read_squid_conf() from network::network and split
+ write_squid_conf() from drakgw
+
+2005-05-24 11:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: remove unneeded trick since
+ network::network always update NETWORK and BROADCAST now
+
+2005-05-24 11:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: - move read_dhcpd_conf() in
+ network::dhcpd - move read_squid_conf() in network::squid -
+ create update_broadcast_and_network() and force NETWORK and
+ BROADCAST variables update
+
+2005-05-24 11:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: - split warning out of
+ check_iptables() - get_default_device() -> get_ifcfg_interface()
+ - get_net_device() -> get_shorewall_interface() - create
+ ask_shorewall_interface() out of default_interfaces() - create
+ read_default_interfaces() to replace default_interfaces() and
+ default_interfaces_silent() - use services::set_status() in
+ write()
+
+2005-05-24 11:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/services.pm: - introduce set_status(),
+ restart_or_start() and service_exists() - cleanups (use
+ run_program success status)
+
+2005-05-24 10:54 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Modernize, remove old code
+
+2005-05-24 09:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/devices: fix typo
+
+2005-05-24 09:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: list sb16_csp only once
+
+2005-05-24 08:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/run_program.pm: fix return code when chroot can't be
+ done
+
+2005-05-24 04:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: ensure {needToCopy} is not dropped when
+ calling read_rpmsrate() more than once
+
+2005-05-23 11:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: use mousedrake to configure
+ tablets & touchscreens
+
+2005-05-23 10:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install sb16_csp for SB sound cards
+
+2005-05-23 10:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install ld10k1 for snd-emu10k1 and
+ snd-emu10k1x
+
+2005-05-23 10:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install hdspconf for snd-hdsp
+
+2005-05-23 08:42 Pixel <pixel at mandriva.com>
+
+ * Makefile, make_boot_img, kernel/update_kernel,
+ perl-install/Makefile, rescue/make_rescue_img: - create
+ kernel/RPMS/ to copy rpms before expanding them in
+ kernel/all.kernels - remove old compatability code - add some doc
+ in update_kernel
+
+2005-05-23 08:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: typo fix (blino)
+
+2005-05-23 07:30 Pixel <pixel at mandriva.com>
+
+ * rescue/Makefile: finish moving from list to list.xml
+
+2005-05-22 15:16 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated simplified Chinese
+ translation.
+
+2005-05-22 13:13 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, help-de.pot, help-es.pot,
+ help-fr.pot, help-it.pot, help-ru.pot, help-zh_CN.pot, 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: undo breakage
+
+2005-05-22 12:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.16mdk
+
+2005-05-22 12:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add new sata_sil24 SATA driver
+
+2005-05-22 12:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: ensure that explanations go into
+ /var/log/explanations is standalone mode (log::explanations()
+ just calls log::l() at install time)
+
+2005-05-22 12:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: (libgl_config) only run ldconfig if
+ needed (aka only if GL config was altered)
+
+2005-05-22 12:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/newt.pm: fix canceling managment in text
+ mode
+
+2005-05-22 12:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: us428control usx2yloader are for
+ devices managed by snd-usb-usx2y and not by snd-usb-audio
+
+2005-05-22 12:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install synaptics related packages
+ early in the install process
+
+2005-05-22 12:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: ensure sound utils got installed
+
+2005-05-22 12:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install bluez-utils only if a
+ bluetooth device is plugged
+
+2005-05-22 12:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install joystick utils if a joystick
+ is detected
+
+2005-05-22 11:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install kradio qtradio with KDE and
+ gnomeradio with GNOME if a radio card is present
+
+2005-05-22 11:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: do not install eroaster under KDE &
+ GNOME since they've their own native burner program
+
+2005-05-22 11:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: adiusbadsl has been replaced by
+ eagle-usb in the pcitable in november 2004
+
+2005-05-22 11:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: automatically install wireless-tools
+ if there's a wireless card
+
+2005-05-22 11:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: remove references to perl-GTK-Glade,
+ perl-GTK-GLArea and perl-GTK-Gnome since they're obsoleted and
+ not used by any core package
+
+2005-05-22 11:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: ispell packages are gone; let's
+ replace them by aspell ones
+
+2005-05-20 08:31 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/: bootloader.pm, install_steps.pm:
+ s/Mandrivalinux/Mandriva Linux/
+
+2005-05-20 08:23 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@Latn.po, sr.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, help-de.pot,
+ help-es.pot, help-fr.pot, help-it.pot, help-ru.pot,
+ help-zh_CN.pot: s/Mandrivalinux/Mandriva Linux/
+
+2005-05-20 07:56 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/: install_steps_gtk.pm,
+ install_steps_interactive.pm, install_steps_newt.pm:
+ s/Mandrivalinux/Mandriva Linux/
+
+2005-05-20 07:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Makefile, commands.pm, modules.pm, share/aliases,
+ share/list.xml, share/symlinks: keep binaries in their "standard"
+ binary dir instead of moving everything to /usr/bin (it used to
+ be in /usr/bin when the stage1 was not exited)
+
+2005-05-20 06:30 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Small update
+
+2005-05-20 06:25 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-05-20 05:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: propagate postInstall and
+ postInstallNonRooted in new auto_install.cfg.pl
+
+2005-05-20 04:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: fix titi sux
+
+2005-05-19 11:37 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated simplified Chinese
+ translation
+
+2005-05-19 11:01 Pixel <pixel at mandriva.com>
+
+ * rescue/: aliases, list, list.alpha, list.i386, list.ia64,
+ list.ppc, list.sparc, list.x86_64, list.xml, make_rescue_img: use
+ install-xml-file-list
+
+2005-05-19 11:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: revert wrongly committed temporary change
+
+2005-05-19 10:59 Pixel <pixel at mandriva.com>
+
+ * rescue/restore_ms_boot: rewrite using DrakX modules
+
+2005-05-19 10:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-05-19 10:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Makefile, list.sparc, share/aliases,
+ share/list.xml: - insmod_ is now a symlink to insmod-25 - handle
+ explictly insmod, modinfo and rmmod
+
+2005-05-19 10:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: - list the known bootloaders without
+ checking the availability of the binary (useful when we don't
+ have the root partition mounted, eg in restore_ms_boot) - tell
+ kdm which is the installed bootloader
+
+2005-05-19 10:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2005-05-19 10:37 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
+ cataglog
+
+2005-05-19 10:26 Pixel <pixel at mandriva.com>
+
+ * tools/install-xml-file-list: many changes for use with rescue
+ list
+
+2005-05-19 10:25 Pixel <pixel at mandriva.com>
+
+ * tools/simplify-drakx-modules: also remove modules ending with
+ __END__
+
+2005-05-19 10:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: real 10.3-0.15mdk
+
+2005-05-19 10:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: really list ATM devices
+
+2005-05-19 10:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: fix DVB configurator
+
+2005-05-19 10:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: list tablets and touchscreens in
+ their own category
+
+2005-05-19 10:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mouse.pm: (detect) handle quite's more tablets and
+ touchscreens at install time
+
+2005-05-19 10:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add a not about USB stuff at post-install
+ time (this should still be loaded at install time)
+
+2005-05-19 09:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add usb-midi into multimedia/usb_sound
+
+2005-05-19 09:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: typo fix
+
+2005-05-19 09:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: fix detecting joysticks
+
+2005-05-19 09:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: - add input/remote, input/tablet,
+ input/touchscreen - rename multimedia/joystick as input/joystick
+ - move XBox's pad driver into input/joystick
+
+2005-05-19 09:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.15mdk
+
+2005-05-19 09:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_detect) simplify again
+
+2005-05-19 09:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_detect) explain
+
+2005-05-19 09:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_detect) detect all ADSL
+ modems of each kind (though drakconnect is able to configure only
+ one...)
+
+2005-05-19 09:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add sn9c102 in multimedia/webcam
+
+2005-05-19 09:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: uninstall DVB modules
+ if needed
+
+2005-05-19 09:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: add a DVB class
+
+2005-05-19 09:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install proper softwares for DVB
+
+2005-05-19 05:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: main subpackage lacked update-menus
+ calls since net_applet menu entry was added
+
+2005-05-19 05:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: mandrakesoft => mandriva switch
+
+2005-05-19 05:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_detect) typo fix
+
+2005-05-19 05:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.14mdk
+
+2005-05-19 05:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: kill another module list duplication
+ thanks to the new HW_CAT keyword.
+
+2005-05-19 05:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: use the HW_CAT to stop copying
+ (twice!) and syncing bluetooth driver list from list_modules.pm
+
+2005-05-19 05:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: (simple_read_rpmsrate) add
+ support for HW_CAT keyword that enable to match a category from
+ list_modules.pm
+
+2005-05-19 05:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/pkgs.pm: (read_rpmsrate) add support for HW_CAT
+ keyword that enable to match a category from list_modules.pm
+
+2005-05-19 05:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: Add bus/bluetooth category (list came
+ from share/rpmsrate and has been further synched with the
+ kernel).
+
+ This will ensure needed modules are present at intall time, thus
+ enabling share/rpmsrate to work regarding these USB devices...
+
+2005-05-19 05:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: - simplify through
+ modules::probe_category() - ensure modules.pm is loaded since we
+ used it for quite some time
+
+2005-05-19 05:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: list ATM, Bluetooth, WAN, USB
+ audio devices in their own categories
+
+2005-05-19 05:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_detect) detect more ADSL USB
+ modems
+
+2005-05-19 05:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm, perl-install/harddrake/data.pm: split the
+ old joystick category into gameport (aka joystick controllers)
+ and joystick (real joysticks devices)
+
+2005-05-19 05:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add network/atm category
+
+2005-05-18 08:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/newt.pm: handle 'wizcancel'
+
+2005-05-18 08:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (selectCountry) only speak about other
+ countries if needed
+
+2005-05-18 04:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add audio, dabusb, dsbr100, snd-usb-audio
+ and snd-usb-usx2y into new multimedia/usb_sound category (radio,
+ sound card, wecam's micro, ...)
+
+2005-05-18 04:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add dabusb, konicawc, se401, stv680,
+ vicam and w9968cf drivers into multimedia/webcam
+
+2005-05-18 04:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: - move ADSL USB drivers into
+ network/usb_dsl - add cxacru, usbatm and xusbatm into this new
+ category
+
+2005-05-17 13:59 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-05-17 13:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.13mdk
+
+2005-05-17 11:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: really write waproamd config
+ files
+
+2005-05-17 10:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: help testing
+
+2005-05-17 10:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: fix another potential security
+ bug (#16020)
+
+2005-05-17 10:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: forward fix perms on
+ /etc/wlandetect.conf (#16020)
+
+2005-05-17 10:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: really fix permissions
+
+2005-05-17 08:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/modem.pm: keep # and * characters in phone
+ number (#16031)
+
+2005-05-17 07:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: fix perms on
+ /etc/wlandetect.conf (#16020)
+
+2005-05-17 06:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: use iwpriv for WPA with
+ rt2x00 drivers (they don't plan to support wpa_supplicant)
+
+2005-05-16 12:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: add the "Create new theme"
+ button back
+
+2005-05-16 12:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: allow to choose between "text
+ only", "verbose" and "silent" bootsplash modes
+
+2005-05-16 08:03 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/: drakbackup: Don't translate media types
+ for config (#15437)
+
+2005-05-16 06:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.12mdk
+
+2005-05-16 05:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mygtk2.pm: (_text_insert) append option was ignored
+ when using simplified API
+
+2005-05-13 11:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: netconnect.pm, network.pm: DVB support
+
+2005-05-13 11:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: hide DVB for now
+
+2005-05-13 07:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getUPS) do not detect ms
+ joystick as UPS (#15930)
+
+2005-05-13 02:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list.xml, tools/install-xml-file-list: allow
+ makefile like variables
+
+2005-05-13 02:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: add commented line to help debugging
+ pci_probe
+
+2005-05-12 09:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: one more fix in 10.2-24.102.2mdk
+
+2005-05-12 09:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: forward fix SATA & hw RAID
+ detection by detecting them pior to PATA detection
+
+2005-05-12 09:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-24.102.2mdk
+
+2005-05-12 09:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: fix PCMCIA controller
+ reconfiguration (#15742)
+
+2005-05-12 09:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.11mdk
+
+2005-05-12 08:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: fix PCMCIA controller
+ reconfiguration (#15742)
+
+2005-05-12 08:22 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: scanner.pm, standalone/printerdrake: - Removed
+ some remaining "Mandrake"s in printerdrake and scannerdrake.
+
+2005-05-12 08:05 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: data.pm, printerdrake.pm: - Let Gutenprint
+ GIMP plug-in be installed by printerdrake when GIMP is installed.
+
+2005-05-12 07:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getUPS) fix detecting Wingman
+ gamepad as UPS (#15750)
+
+2005-05-12 07:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (probeSerialDevices) forward fix
+ for serial controllers detection (#15457)
+
+2005-05-12 07:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (probeSerialDevices) really fix
+ serial controllers detection (#15457)
+
+2005-05-12 07:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (probeSerialDevices) fix serial
+ controllers detection (#15457)
+
+2005-05-12 06:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: reorder drakconnect first
+ screen (to please our flowered bearded boss)
+
+2005-05-12 05:57 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: install_steps.pm, printer/data.pm, share/rpmsrate:
+ - Gimp-Print was renamed to Gutenprint, adapted
+ printerdrake/DrakX appropriately.
+
+2005-05-12 05:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-05-12 05:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: - clean embedding stuff -
+ center wait message on parent
+
+2005-05-12 03:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: default to "Custom" when group fileshare
+ exists (bugzilla #15917)
+
+2005-05-11 19:07 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Drop webdav support (can be
+ mounted as a normal net filesystem these days) Remove translation
+ on "tape" media selection (#15437) Rework .backupignore handling
+ (#12352)
+
+2005-05-11 05:26 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: pt.po, sv.po, vi.po: updated Swedish and
+ Vietnamese file; corrected references to old name in Portuguese
+ file
+
+2005-05-10 14:50 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-05-10 11:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: real 10.3-0.10mdk
+
+2005-05-10 11:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: shrink preview window on
+ resolution change
+
+2005-05-10 11:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/ugtk2.pm: shrink real_window
+
+2005-05-10 10:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: handle both silent and
+ verbose images
+
+2005-05-10 10:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/bootsplash.pm: really get default vga mode
+
+2005-05-10 10:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: allow to modify progress bar
+ and console box by dragging the mouse
+
+2005-05-10 10:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: bootsplash.pm, standalone/draksplash2: move
+ rectangle2xywh(), distance(), farthest() and nearest() from
+ draksplash2 to bootsplash module, create xywh2rectangle()
+
+2005-05-10 10:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile, perl-install/lang.pm,
+ perl-install/share/list, perl-install/share/list.alpha,
+ perl-install/share/list.i386, perl-install/share/list.ia64,
+ perl-install/share/list.ppc, perl-install/share/list.sparc,
+ perl-install/share/list.x86_64, perl-install/share/list.xml,
+ tools/install-xml-file-list: create install-xml-file-list and use
+ it to replace share/list and share/list.ARCH with share/list.xml
+
+2005-05-10 10:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.10mdk
+
+2005-05-10 10:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: add support for iiimf (UTUMI Hirosi
+ <utuhiro78@yahoo.co.jp>)
+
+2005-05-10 09:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: (probe_using_X): add missing
+ chomp_
+
+2005-05-10 04:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install cpqarrayd on Compaq Smart
+ Array controllers
+
+2005-05-10 02:58 Pixel <pixel at mandriva.com>
+
+ * rescue/: make_partimage_save_rest_all, make_rescue_img,
+ partimage_whole_disk: - handle multiple data dirs - choose a free
+ data dir if the given one already exists
+
+2005-05-10 02:54 Pixel <pixel at mandriva.com>
+
+ * rescue/make_rescue_img: fix (for list_modules.pm)
+
+2005-05-09 14:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/bootsplash.pm: use default jpeg image path in config
+ file for both silent and verbose images
+
+2005-05-09 14:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: remove spurious characters
+
+2005-05-09 14:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: use a separate window for
+ image previews, use a notebook to split silent/verbose/console
+ settings
+
+2005-05-09 14:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/bootsplash.pm: write bootsplash v3 configuration
+ files (progress bar still missing)
+
+2005-05-09 14:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/bootsplash.pm: force the exact image size when
+ writing a theme
+
+2005-05-09 13:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: use
+ bootsplash::get_framebuffer_resolution
+
+2005-05-09 13:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/bootsplash.pm: add get_framebuffer_resolution and
+ create_path
+
+2005-05-09 10:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-24.102.1mdk
+
+2005-05-09 08:07 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/: lang.pm, share/rpmsrate: Drop uim-anthy for ja
+ locale, because the great improvements of scim-anthy.
+ http://archives.mandrivalinux.com/cooker-i18n/2005-04/msg00052.php
+
+2005-05-09 08:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: better use gtkpack__() rather
+ than gtkadd() when adding multiple widgets
+
+2005-05-09 08:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: fix layout, update scale
+ factors when the theme name is changed too
+
+2005-05-09 07:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.9mdk
+
+2005-05-09 07:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/bootsplash.pm: fix typos
+
+2005-05-09 07:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: use default values for scale
+ settings and draw a cross inside the text box
+
+2005-05-08 13:25 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2005-05-07 19:27 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: another small typo fixed in slovak
+ translation
+
+2005-05-07 19:19 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2005-05-06 09:37 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install2.pm: Add missing brace
+
+2005-05-06 09:06 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/resize_fat/c_rewritten.xs: gcc 4.0 was choking on
+ lvalues of unpredictable type.
+
+2005-05-06 08:36 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * mdk-stage1/Makefile: Fix path of librpc.a now that we use the
+ system's dietlibc
+
+2005-05-06 08:30 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * mdk-stage1/: config-stage1.h, dhcp.c, directory.c, network.c,
+ newt/button.c, newt/checkbox.c, newt/entry.c, newt/newt.c,
+ pcmcia_/Makefile, ppp/pppd/Makefile, rp-pppoe/src/common.c: Stage
+ 1 compilation fixes for gcc 4.0 : * more casts signed<->unsigned
+ types * make choose_iso_in_directory()'s return type "void" *
+ change order of .h files in network.c so strndup is included
+ correctly * newt: initialize some variables properly * compile
+ pcmcia and ppp with -Wno-deprecated-declarations, since they use
+ deprecated types such as u_int32_t
+
+2005-05-06 07:11 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * docs/HACKING: Document that dietlibc-devel is now required to
+ build gi
+
+2005-05-06 04:43 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: Makefile, Makefile.common, mar/Makefile: use
+ installed dietlibc, not our forked cvs version
+
+2005-05-05 17:03 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Predict NBI disk space
+ usage and check. Catch failed NBI creation. (#13902) Catch
+ failed dhcpd.conf creation (#13943) Misc small bug fixes.
+
+2005-05-05 14:42 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/br.po: small typo error
+
+2005-05-04 13:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: preview theme in real time,
+ cleanups
+
+2005-05-04 13:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/bootsplash.pm: fix theme creation
+
+2005-05-04 06:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: lilo and grub are launched chrooted,
+ so look for them in $::prefix (it worked during install since
+ PATH contains /mnt/sbin and the like)
+
+2005-05-04 05:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: remove another useless step
+
+2005-05-04 05:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: ask wireless settings before
+ boot protocol selection
+
+2005-05-04 05:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: remove useless warning in
+ install, we never override configuration (#10827)
+
+2005-05-04 04:39 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * rescue/make_rescue_img: Sometimes this tries to copy a directory
+
+2005-05-04 04:36 Pixel <pixel at mandriva.com>
+
+ * rescue/guessmounts: don't try to mount ntfs
+
+2005-05-04 04:24 Pixel <pixel at mandriva.com>
+
+ * rescue/partimage_whole_disk: run_program needs a proper HOME
+
+2005-05-03 14:10 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Clarify quota message,
+ optional delete old backups (#15066). Optional mail "From"
+ address (#15293). Fix automagic addition of /root to backups
+ when not desired.
+
+2005-05-03 13:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: bootsplash.pm, standalone/drakboot: new theme
+ creation functions
+
+2005-05-03 10:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: perl_checker fixes, use
+ bool2yesno
+
+2005-05-03 10:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: remove ugly dec2hex
+
+2005-05-03 08:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install2.pm: remove obsolete code (most of these
+ steps are anyway skipped in upgrade mode)
+
+2005-05-03 06:49 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Estonian translation updated.
+
+2005-05-03 05:50 Olivier Blin <oblin at mandriva.com>
+
+ * tools/patch_pcmcia_config.pl: ds has been renamed pcmcia in 2.6
+ kernels
+
+2005-05-03 05:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: do not garbage the console on
+ 'wizcancel'
+
+2005-05-03 04:51 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: Updated Dutch translation by Reinout
+ van Schouwen <reinout@cs.vu.nl>
+
+2005-05-02 18:57 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Update for new etherboot
+
+2005-05-02 12:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: fix displaying "Number of
+ logical extents: %d"
+
+2005-05-02 12:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: - allow resizing ext3 LV
+ if not mounted - allow resizing reiserfs LV even if not mounted
+
+2005-05-02 11:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.8mdk
+
+2005-05-02 10:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: network/ethernet.pm, network/ndiswrapper.pm,
+ detect_devices.pm: fix USB devices detection for ndiswrapper
+
+2005-05-02 10:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-05-02 10:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: fix boot style layout
+
+2005-05-02 10:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: drakboot, drakfloppy, drakfont,
+ drakperm, draksec, drakups, harddrake2, logdrake, printerdrake:
+ embedding cleanups resulting in reusing main window icon in sub
+ dialogs
+
+2005-05-02 10:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/localedrake: add comment
+
+2005-05-02 09:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: fix SATA & hw RAID detection by
+ detecting them pior to PATA detection
+
+2005-05-01 20:28 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-04-30 22:00 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: jorge
+
+2005-04-30 21:55 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo + jorge
+
+2005-04-29 23:17 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: Translated more strings.
+
+2005-04-29 21:18 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-04-29 20:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: typo/perl_checker fixes
+
+2005-04-29 19:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: use new bootsplash module,
+ really split autologin and bootsplash stuff
+
+2005-04-29 19:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/bootsplash.pm: initial bootsplash module
+
+2005-04-29 17:43 Frederic Crozat <fcrozat at mandriva.com>
+
+ * perl-install/share/rpmsrate: Install epiphany-extensions when
+ installing epiphany
+
+2005-04-29 17:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: kill unneeded hash
+
+2005-04-29 15:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.7mdk
+
+2005-04-29 14:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: test.pm, tools.pm: use www.mandriva.com to
+ test connection
+
+2005-04-29 12:55 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/pci-resource/update-pci-ids.pl: detect tokenring and
+ wireless cards in stage1
+
+2005-04-29 12:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: exit and warn when no wireless
+ interface is found (#15244)
+
+2005-04-29 12:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: perl_checker fixes
+
+2005-04-29 12:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: do not write blank ESSID
+
+2005-04-29 08:39 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates indexhtml/po/da.po
+ soft/urpmi/po/da.po gi/perl-install/share/po/da.po
+
+2005-04-28 17:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: if one prefer using "Modes"
+ instead of "Virtual", keep it as is
+
+2005-04-28 17:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: configure pppoe connections in a
+ ppp peer file
+
+2005-04-27 20:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: display VPI/VCI values in
+ decimal update ATM_ADDR after with VPI/VCI values
+
+2005-04-27 18:01 Pixel <pixel at mandriva.com>
+
+ * rescue/install_bootloader: use module bootloader.pm to handle
+ more bootloaders (esp. grub)
+
+2005-04-27 17:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: fix mandrake_release() when called with a
+ prefix
+
+2005-04-27 17:34 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/: network/drakfirewall.pm, 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_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/DrakX.pot,
+ share/po/zh_CN.po, share/po/zh_TW.po: Maybe the last
+ Mandrake->Mandriva replacement.
+
+2005-04-27 17:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: reindent
+
+2005-04-27 17:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: - create config_files() out of
+ update_for_renumbered_partitions() - create main_method_choices()
+ out of read() - create configured_main_methods() for rescue
+ install_bootloader - rework update_for_renumbered_partitions()
+
+2005-04-27 16:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: create install_raw_grub() and
+ install_raw_lilo()
+
+2005-04-27 16:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: allow using mandrake_release() with a
+ prefix
+
+2005-04-27 15:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: don't write /etc/ppp/options
+ anymore, adjust options in peer files
+
+2005-04-27 14:57 Pixel <pixel at mandriva.com>
+
+ * rescue/partimage_whole_disk: after setting geometry H and S, we
+ must re-compute C
+
+2005-04-27 13:38 Pixel <pixel at mandriva.com>
+
+ * rescue/partimage_whole_disk: ensure we use the same geometry as
+ used when saving
+
+2005-04-27 12:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/rpmsrate: pptp-adsl is obsolete, prefer
+ pptp-linux
+
+2005-04-26 22:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getUPS) do not detect IR devices
+ as UPSes (#15495)
+
+2005-04-26 19:30 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/adsl.c: detect IP address from DSL connection
+
+2005-04-26 18:03 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/dns.c: fix dns resolution for DSL connections
+
+2005-04-26 17:51 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/dns.c: enhance logging again, re-indent
+
+2005-04-26 17:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: remove obsolete change (C_RPM and C_DRAKX
+ are not used in c/stuff anymore)
+
+2005-04-26 17:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: start simplifying "make stage2"
+
+2005-04-26 17:08 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/dns.c: fix typo (me sux)
+
+2005-04-26 17:07 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/dns.c: enhance logging
+
+2005-04-26 15:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: add missing tags
+
+2005-04-26 15:16 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: always initialize proxy settings
+
+2005-04-26 15:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-04-26 12:35 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: fix typo
+
+2005-04-26 11:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: don't use ->set_uposition anymore, use
+ ->move instead (as suggested on gtk-perl mailing list)
+
+2005-04-25 17:36 Pixel <pixel at mandriva.com>
+
+ * rescue/guessmounts: rewrite using gi/perl-install modules
+
+2005-04-25 15:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: add bug reference in 10.3-0.6mdk's
+ changelog
+
+2005-04-25 12:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.6mdk
+
+2005-04-25 12:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-04-25 12:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: using c::rpmvercmp is cleaner
+
+2005-04-25 12:19 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-04-25 12:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: XFdrake, autosetupprintqueues,
+ diskdrake, drakTermServ, drakautoinst, drakbackup, drakboot,
+ drakbug, drakconnect, drakedm, drakfirewall, drakfloppy,
+ drakfont, drakgw, drakhelp, drakproxy, drakpxe, drakroam,
+ draksec, draksound, drakupdate_fstab, drakvpn, drakxtv,
+ fileshareset, finish-install.xsetup, listsupportedprinters,
+ logdrake, net_monitor, printerdrake, scannerdrake: bump copyrigth
+ notice
+
+2005-04-25 12:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: list myself
+
+2005-04-25 12:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: damien is no more working for
+ us
+
+2005-04-25 11:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix comparing kernel version greater
+ than 6.8
+
+2005-04-25 11:05 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cy.po: updated Welsh file
+
+2005-04-25 10:47 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: es.po, it.po, ms.po: updated Italian and
+ Spanish files
+
+2005-04-25 10:40 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/drakxtv: corrected url
+
+2005-04-25 09:36 Sharuzzaman Ahmat Raslan <sharuzzaman at myrealbox.com>
+
+ * perl-install/share/po/ms.po: Updated Malay translation
+
+2005-04-24 23:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: netconnect.pm, wireless.pm: handle errors
+ in wireless packages installation, simplify
+
+2005-04-24 23:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: allow to disable WPA even if
+ no key is used
+
+2005-04-24 23:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: netconnect.pm, wireless.pm: fix WPA key
+
+2005-04-23 22:28 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: af.po, ar.po, az.po, bg.po, bn.po, br.po,
+ bs.po, cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po, et.po,
+ eu.po, fa.po, fi.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po,
+ is.po, it.po, ja.po, lt.po, ltg.po, lv.po, mk.po, mn.po, mt.po,
+ nb.po, nl.po, zh_CN.po: more Mandrake -> Mandriva changes
+
+2005-04-23 19:14 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: various
+ Mandrake -> Mandriva changes
+
+2005-04-23 18:19 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: network/adsl.pm, network/drakfirewall.pm,
+ printer/printerdrake.pm: s/Mandrivalinux/Mandriva Linux/
+
+2005-04-23 18:15 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: any.pm, help.pm, install_interactive.pm:
+ s/Mandrivalinux/Mandriva Linux/
+
+2005-04-23 18:11 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/: drakbug, drakconnect, drakedm,
+ drakhelp, logdrake, net_applet, net_monitor, scannerdrake:
+ s/Mandrivalinux/Mandriva Linux/
+
+2005-04-23 18:05 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone.pm: mandrakelinux -> Mandriva Linux
+
+2005-04-23 18:03 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/advertising/: 01.pl, 02.pl, 03.pl, 04.pl,
+ 05.pl, 06.pl, 07.pl, 08.pl, 09.pl, 10.pl, 11.pl, 18.pl, 25.pl,
+ 26.pl, 27.pl, 28.pl, 29.pl, 30.pl: s/Mandrivalinux/Mandriva
+ Linux/
+
+2005-04-23 17:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install_messages.pm:
+ s/www.mandrakelinux.com/www.mandrivalinux.com/
+ s/Mandrivalinux/Mandriva Linux/
+
+2005-04-23 17:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/draksound:
+ s/www.linux-mandrake.com/www.mandrivalinux.com/
+
+2005-04-23 17:51 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/: drakfont, harddrake2: mandrakesoft.com
+ -> mandriva.com
+
+2005-04-23 14:18 Pablo Saratxaga <pablo at mandriva.com>
+
+ * 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, ro.po, sq.po,
+ sr.po, sr@Latn.po, ta.po, tg.po, th.po, tl.po, tr.po, uz.po,
+ uz@Latn.po: updated po files
+
+2005-04-23 12:17 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-04-22 04:33 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-04-21 21:54 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-04-21 20:08 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/wireless.c: set SSID after all other settings, improve
+ text, fix cast
+
+2005-04-21 19:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: fix Signal Quality parsing (and
+ re-indent)
+
+2005-04-21 17:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po: fix doble messages
+
+2005-04-21 17:32 Pixel <pixel at mandriva.com>
+
+ * rescue/drvinst: use detect_devices and simplify
+
+2005-04-21 17:30 Pixel <pixel at mandriva.com>
+
+ * rescue/make_rescue_img: use get-needed-drakx-modules to handle
+ perl scripts using DrakX modules
+
+2005-04-21 17:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.5mdk
+
+2005-04-21 17:27 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/modules.pl: add Token Ring and Wireless drivers in 'all'
+ image
+
+2005-04-21 17:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/compssUsers.pl: switch from MandrakeSoft to
+ Mandriva
+
+2005-04-21 17:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: any.pm, bootloader.pm, crypto.pm, help.pm,
+ install_interactive.pm, install_messages.pm, install_steps.pm,
+ install_steps_gtk.pm, install_steps_interactive.pm,
+ install_steps_newt.pm, standalone.pm,
+ Xconfig/resolution_and_depth.pm, network/adsl.pm,
+ network/drakfirewall.pm, network/netconnect.pm, network/test.pm,
+ printer/printerdrake.pm, share/advertising/01.pl,
+ share/advertising/02.pl, share/advertising/03.pl,
+ share/advertising/04.pl, share/advertising/05.pl,
+ share/advertising/06.pl, share/advertising/07.pl,
+ share/advertising/08.pl, share/advertising/09.pl,
+ share/advertising/10.pl, share/advertising/11.pl,
+ share/advertising/13-a.pl, share/advertising/13-b.pl,
+ share/advertising/18.pl, share/advertising/25.pl,
+ share/advertising/26.pl, share/advertising/27.pl,
+ share/advertising/28.pl, share/advertising/29.pl,
+ share/advertising/30.pl, 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/help-de.pot, share/po/help-es.pot,
+ share/po/help-fr.pot, share/po/help-it.pot, share/po/help-ru.pot,
+ share/po/help-zh_CN.pot, 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, standalone/drakboot,
+ standalone/drakbug, standalone/drakconnect, standalone/drakedm,
+ standalone/drakhelp, standalone/finish-install.xsetup,
+ standalone/logdrake, standalone/net_applet,
+ standalone/net_monitor: switch from MandrakeSoft to Mandriva
+
+2005-04-21 17:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * move/move.pm: switch from MandrakeSoft to Mandriva
+
+2005-04-21 17:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/: common.pm, install_any.pm: create
+ common::release_file() and use it
+
+2005-04-21 17:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: use simplify-drakx-modules
+
+2005-04-21 17:09 Pixel <pixel at mandriva.com>
+
+ * tools/: get-needed-drakx-modules, simplify-drakx-modules: add
+ some scripts used in perl-install/Makefile and
+ rescue/make_rescue_img
+
+2005-04-21 17:04 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/probing.c: use /proc/net/dev to detect network
+ interfaces, instead of testing a limited set of interface names
+
+2005-04-21 17:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: printer/printerdrake.pm, standalone/scannerdrake:
+ switch from MandrakeSoft to Mandriva in scannerdrake &
+ printerdrake
+
+2005-04-21 16:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: mouse.pm, scanner.pm, standalone.pm,
+ standalone/XFdrake, standalone/autosetupprintqueues,
+ standalone/diskdrake, standalone/drakTermServ,
+ standalone/drakautoinst, standalone/drakbackup,
+ standalone/drakboot, standalone/drakbug, standalone/drakconnect,
+ standalone/drakedm, standalone/drakfirewall,
+ standalone/drakfloppy, standalone/drakfont, standalone/drakgw,
+ standalone/drakhelp, standalone/drakproxy, standalone/drakpxe,
+ standalone/draksound, standalone/drakupdate_fstab,
+ standalone/drakvpn, standalone/drakxtv, standalone/fileshareset,
+ standalone/listsupportedprinters, standalone/logdrake,
+ standalone/net_monitor, standalone/printerdrake,
+ standalone/scannerdrake: switch from MandrakeSoft to Mandriva in
+ copyright notices
+
+2005-04-21 16:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.4mdk
+
+2005-04-21 15:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/cy.po: update
+
+2005-04-21 15:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: (ConnectNow) simplify
+
+2005-04-21 15:26 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/dhcp.c: support DHCP over Wireless, Token Ring
+ (great), Firewire, you name it borrow some comments from pump
+
+2005-04-21 14:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: br.po: update
+
+2005-04-21 14:43 Pixel <pixel at mandriva.com>
+
+ * rescue/list.i386: dmidecode is useful
+
+2005-04-21 14:40 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
+
+2005-04-21 14:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/Makefile: remove useless merge2 rule
+
+2005-04-21 14:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: af.po, ar.po, ca.po, cy.po, da.po, eu.po,
+ fi.po, fr.po, gl.po, id.po, it.po, ja.po, mt.po, nb.po, nl.po,
+ pl.po, pt.po, ru.po, sk.po, sv.po, tg.po, tl.po, uk.po, vi.po:
+ sync LAN string
+
+2005-04-21 14:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: rename "ethernet connection"
+ as "LAN connection" like anywhere since we're going to support
+ tokenring and not just LAN (what's more, these steps are whered
+ with wireless connections which have nothing to do with
+ ethernet....)
+
+2005-04-21 14:15 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm: tokenring support \o/ (we should really
+ rename ethernet* stuff)
+
+2005-04-21 14:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.3mdk
+
+2005-04-21 13:58 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
+ string for new drakroam
+
+2005-04-21 13:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: perl_checker cleanups
+
+2005-04-21 13:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup: improve layout
+
+2005-04-21 13:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: (ConnectNow) simplify
+
+2005-04-21 13:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: (UpdateStatus) improve layout
+
+2005-04-21 13:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: switch to gtk+-2.6's new file
+ selector
+
+2005-04-21 13:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: (row_setting_dialog) set
+ dialog's title (usability bug)
+
+2005-04-21 13:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: inline useless create_fontsel()
+
+2005-04-21 13:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup: (filedialog_generic) switch
+ to gtk+-2.6's new file selector
+
+2005-04-21 12:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/type.pm: perl_checker fix
+
+2005-04-21 11:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/type.pm: create true_local_fs_types() out of
+ isTrueLocalFS()
+
+2005-04-21 11:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/log.pm: ensure the log is flushed ASAP when using a
+ local file
+
+2005-04-21 00:14 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/wireless.c: fix hex key parsing
+
+2005-04-20 23:59 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/: Makefile, network.c, wireless.c, wireless.h: initial
+ wireless support (needs ESSID, and optionally a WEP key)
+
+2005-04-20 17:38 Pixel <pixel at mandriva.com>
+
+ * rescue/make_partimage_save_rest_all: add a check
+
+2005-04-20 17:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: unload ndiswrapper first so
+ that the newly installed .inf files will be read redetect
+ interfaces after ndiswrapper setup (so that the ndiswrapper
+ module can be detected)
+
+2005-04-20 17:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: we do want to use sysfs if
+ ethtool fails
+
+2005-04-20 16:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: (font_choice) filter file list
+ so that only fonts are displayed
+
+2005-04-20 16:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: switch to gtk+-2.6's new file
+ selector
+
+2005-04-20 16:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_any.pm: do not care about the ISO volume
+ name if it doesn't end in -Disc\d+
+
+2005-04-20 16:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ndiswrapper.pm: (setup_device) move comment
+ where it's appropriate
+
+2005-04-20 15:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_any.pm: handle DVD ISO images too (so that
+ they get added installed for urpmi)
+
+2005-04-20 13:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.2mdk
+
+2005-04-20 13:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: ndiswrapper.pm, netconnect.pm,
+ wireless.pm: allow to choose the wireless encryption mode between
+ "None", "Open WEP", "Restricted WEP" and "WPA Pre-Shared Key"
+ move ndiswrapper stuff in network::ndiswrapper
+
+2005-04-20 01:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: simplify
+
+2005-04-19 23:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix ancient bug (Managed
+ should be the default wireless mode, not Secondary) and simplify
+
+2005-04-19 23:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: really use given encryption
+ key
+
+2005-04-19 23:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: network::wireless is needed
+ for wireless configuration
+
+2005-04-19 23:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: fix typo
+
+2005-04-19 23:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix typo
+
+2005-04-19 23:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: netconnect.pm, wireless.pm: improve
+ ndiswrapper driver configuration (allow to select driver, device
+ and many errors handling)
+
+2005-04-19 23:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: fix Titi sux (we do want to use
+ sysfs if ethtool fails)
+
+2005-04-19 19:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: convert_key_for_wpa_supplicant
+ is now in network::wireless
+
+2005-04-19 18:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix missing step
+
+2005-04-19 18:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: netconnect.pm, network.pm, tools.pm,
+ wireless.pm: move wireless stuff in wireless.pm
+
+2005-04-19 18:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: do not write zeroed MAC
+ addresses in iftab, it confuses ifrename
+
+2005-04-19 18:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: do not crash if modprobe fails
+
+2005-04-19 18:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: netconnect.pm, tools.pm: do not show empty
+ ndiswrapper devices list
+
+2005-04-19 17:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: unload ndiswrapper first so
+ that the newly installed .inf files will be read
+
+2005-04-19 16:13 Sharuzzaman Ahmat Raslan <sharuzzaman at myrealbox.com>
+
+ * perl-install/share/po/ms.po: Updated Malay translation
+
+2005-04-19 15:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/mouse.pm: fix simplification ..
+
+2005-04-19 15:46 Pixel <pixel at mandriva.com>
+
+ * rescue/lsparts: remove redundancy using gi/perl-install pms
+
+2005-04-19 15:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/mouse.pm: simplify again (Pixel)
+
+2005-04-19 15:25 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: de.po, ky.po: updated Kirghiz file
+
+2005-04-19 15:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/mouse.pm: kill unused variable, simplify
+
+2005-04-19 15:10 Pixel <pixel at mandriva.com>
+
+ * rescue/: drvinst, guessmounts, install_bootloader, lsparts:
+ mandriva switch
+
+2005-04-19 15:09 Pixel <pixel at mandriva.com>
+
+ * rescue/make_partimage_save_rest_all: - allow specifying something
+ else than /data/box - acpi=ht by default
+
+2005-04-19 15:08 Pixel <pixel at mandriva.com>
+
+ * rescue/partimage_whole_disk: - ".lst" makes the file hidden, use
+ "lst" instead - default timeout is much too short
+
+2005-04-19 15:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/: drakroam: fix SSID listing
+
+2005-04-19 15:03 Pixel <pixel at mandriva.com>
+
+ * rescue/rescue-doc: switch to mandriva
+
+2005-04-19 14:49 Pixel <pixel at mandriva.com>
+
+ * rescue/restore_ms_boot: update copyright
+
+2005-04-19 14:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: fix comment
+
+2005-04-19 14:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: install_steps_gtk.pm, mouse.pm: using same mouse
+ for alternate_install should be useless remove it for xbox
+ controller, thus making this option obsolete
+
+2005-04-19 14:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/mouse.pm: fix me sucks
+
+2005-04-19 14:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/mouse.pm: always set synaptics touchpad as secondary
+ and don't list them in mousedrake
+
+2005-04-19 11:50 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates indexhtml/po/da.po
+ soft/drakstats/po/da.po soft/mdkonline/po/da.po
+ gi/perl-install/share/po/da.po
+
+2005-04-19 11:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: suggest 1280x1024
+ instead of 1280x960 which causes pbs
+
+2005-04-18 22:20 rstandtke
+
+ * perl-install/share/po/de.po: some fixes
+
+2005-04-18 21:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/mouse.pm: preselect synaptics touchpad if no
+ external mouse is present
+
+2005-04-18 21:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/mouse.pm: use
+ detect_devices::getSynapticsTouchpads() to detect touchpads
+
+2005-04-18 21:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/modules.pm: append evdev in modprobe.preload if a
+ touchpad is detected
+
+2005-04-18 21:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: perl_checker fix
+
+2005-04-18 21:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: space fix
+
+2005-04-18 21:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: add getSynapticsTouchpads()
+
+2005-04-18 20:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/mouse.pm: always configure an universal mouse so
+ that USB mices can be hotplugged
+
+2005-04-18 20:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: clean includes
+
+2005-04-18 20:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/isdn.pm: remove useless includes
+
+2005-04-18 19:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: replace to_bool(grep) call with
+ any
+
+2005-04-18 18:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: fix automatic net interface
+ detection
+
+2005-04-18 18:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: fix automatic net interface
+ detection
+
+2005-04-18 17:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: merge wireless steps and move
+ advanced settings in advanced mode (#15501)
+
+2005-04-18 17:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add cinergyT2 & dvb-ttusb-budget DVB
+ drivers
+
+2005-04-18 17:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add ov511-alt & ovfx2 webcam drivers
+
+2005-04-18 17:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add dvb-dibusb DVB driver
+
+2005-04-18 17:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: list eagle-usb so that ADSL sagem based
+ connection works at install time
+
+2005-04-18 17:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add speedtch in "other" category so that
+ we're able to handle speedtouch ADSL based connections at install
+ time
+
+2005-04-18 16:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add missing hfc_usb and hisax_st5481 ISDN
+ drivers
+
+2005-04-18 16:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: added/modified various keyboards on the
+ list (for next update of xorg-x11)
+
+2005-04-18 16:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: netconnect.pm, network.pm: configure wpa
+ driver in drakconnect, wpa_supplicant init script is dropped
+
+2005-04-18 16:17 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm: add more atmel modules
+
+2005-04-18 16:13 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/modules.pl: sort modules list
+
+2005-04-18 16:10 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/modules.pl: always print missing usb modules on stderr
+
+2005-04-18 15:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/modules.pm: use better laptop detection now that
+ dmidecode is used
+
+2005-04-18 14:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: increase network check
+ timeout to lower the load
+
+2005-04-18 14:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: remove useless assignments
+
+2005-04-18 14:24 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: af.po, be.po, bn.po, cy.po, el.po, eo.po,
+ et.po, gl.po, he.po, hr.po, ko.po, ms.po, pl.po, ro.po, sq.po:
+ updated Welsh file; fixed some menu errors
+
+2005-04-18 14:23 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/: config-stage1.h, network.c: move defines
+
+2005-04-16 17:57 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: Translated a few strings.
+
+2005-04-15 22:05 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/thirdparty.c: really try to list partitions on USB
+ keys or hard disks
+
+2005-04-15 21:16 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-04-15 21:04 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/directory.c: enlarge directory list
+
+2005-04-15 17:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.1mdk
+
+2005-04-15 14:27 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps_gtk.pm: Change the
+ name of the directory where the rpms are copied
+
+2005-04-15 14:13 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/crypto.pm: Update the name of the update media added
+ by the installer
+
+2005-04-15 14:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: perl_checker cleanups
+
+2005-04-15 13:53 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/config-stage1.h: new domain name
+
+2005-04-14 21:31 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-04-14 18:59 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, pkgs.pm: When re-using the
+ rpmsrate and compssUsers.pl from a supplementary media, always
+ retrieve them locally in /tmp, instead of choosing the main
+ install method (this wasn't working for http installs)
+
+2005-04-14 18:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-04-14 18:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-04-14 16:41 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: sync'ed with Arabeyes CVS
+
+2005-04-14 16:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix typo in drakxservices'
+ description
+
+2005-04-14 14:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add cxgb gigabit driver
+
+2005-04-14 12:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: allow to modify METRIC
+ settings in the wizard
+
+2005-04-13 19:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (autologin) make autologin choice more user
+ friendly (#4304)
+
+2005-04-13 17:37 Pixel <pixel at mandriva.com>
+
+ * rescue/: make_rescue_img, partimage_whole_disk: we now use script
+ partimage_whole_disk around partimage
+
+2005-04-13 17:36 Pixel <pixel at mandriva.com>
+
+ * rescue/list.i386: add ntfsresize
+
+2005-04-13 17:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/resize_fat/any.pm: remove old debug code
+
+2005-04-13 17:31 Pixel <pixel at mandriva.com>
+
+ * rescue/make_partimage_save_rest_all: fix typo
+
+2005-04-13 17:29 Pixel <pixel at mandriva.com>
+
+ * rescue/tree/etc/rc.sysinit: mount /sys
+
+2005-04-13 17:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/raw.pm: create default_type() out of
+ zero_MBR()
+
+2005-04-13 17:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/log.pm: cleanup and allow openLog() to force the log
+ file
+
+2005-04-13 16:29 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Remount CD1 if we cancel insertion
+ of a supplementary CD
+
+2005-04-13 15:23 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps.pm: Eject CD-Rom
+ when installation is finished
+
+2005-04-13 12:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: use get_interface_type() to
+ decide if the wifi settings page should be displayed
+
+2005-04-13 12:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: consider a device as wifi even if
+ it isn't plugged (useful in manage wizard)
+
+2005-04-13 12:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix 10.2-16mdk's changelog
+
+2005-04-13 01:47 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: put text back
+
+2005-04-13 01:46 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: enabled kirghiz console kbd
+
+2005-04-12 21:23 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: fix direct-to-tape
+ backup/restore issues (#15293)
+
+2005-04-12 21:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: detect_devices.pm, network/netconnect.pm,
+ network/tools.pm, standalone/drakconnect: use sysfs as fallback
+ to detect wireless interfaces (rt2x00/prism2_*)
+
+2005-04-12 16:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-04-12 15:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: br.po: removing and re-adding file
+
+2005-04-12 15:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/br.po: updated po file
+
+2005-04-12 14:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-24mdk
+
+2005-04-12 14:31 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/network/tools.pm: Fix running ifup/ifdown not in
+ chroot
+
+2005-04-12 14:21 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: Remove the duplicates for a320raid
+ Workarround for clean-rpmsrate regexp pb
+
+2005-04-12 13:56 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/network/tools.pm: Need to specify the full path of
+ ifup/ifdown when a shell isn't used to run them
+
+2005-04-12 13:22 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: When installing urpmi, mark cd-rom
+ media as "static" so they never get updated. This is needed
+ because those media use hdlists, but the hdlist path is false for
+ all CDs except the first one.
+
+2005-04-12 12:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-04-11 14:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix setting perImageAppend to default
+ entry {append} (it was buggy when the default entry had an empty
+ append, making perImageAppend be failsafe on amd64 upgrade)
+
+2005-04-11 12:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: handle ESSID with spaces
+ (#15352)
+
+2005-04-11 12:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-23mdk
+
+2005-04-11 12:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix error reporting for
+ ndiswrapper package installation (#15373)
+
+2005-04-11 12:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/do_pkgs.pm: have a valid return value in
+ ->ensure_is_installed_if_available
+
+2005-04-11 11:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: the standard kernel is bigmem compliant, no
+ need to install kernel-smp for this (bugzilla #15353)
+
+2005-04-11 10:31 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/crypto.pm: Change the URL of the mirrorsfull.list
+ for installation of the updates
+
+2005-04-11 10:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: handle spaces in ndiswrapper
+ drivers path
+
+2005-04-10 10:18 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-04-08 23:07 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-04-08 21:46 Olivier Blin <oblin at mandriva.com>
+
+ * Makefile.config: Limited Edition 2005
+
+2005-04-08 18:58 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Supplementary cd-roms weren't marked
+ as supplementary. Fix this.
+
+2005-04-08 17:22 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Don't copy rpms that come from any
+ sort of supplementary media.
+
+2005-04-08 17:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: ugly hack to fix empty ModeLine
+ lines, XFdrake seems to generate some, but where??? at least this
+ allows fixing the pb by re-running XFdrake
+
+2005-04-08 17:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: 1152x864 needs more modelines than
+ the poor 1152x864@75Hz builtin xorg (bugzilla #11698)
+
+2005-04-08 16:59 Warly <warly at mandriva.com>
+
+ * perl-install/share/logo-mandrake.png: new install module
+
+2005-04-08 16:57 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: When sorting CDs, put supplementary CDs at
+ the end
+
+2005-04-08 16:54 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: More heuristics to figure out the CD
+ / DVD number from its name, used for the copy of media to the
+ local HD.
+
+2005-04-08 15:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-22mdk
+
+2005-04-08 15:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/data.pm: with harddrake crash with USB/PCI
+ DSL modems (#15034)
+
+2005-04-08 14:04 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: updates from Eskild Hustvedt:)
+
+2005-04-08 11:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add some comments for post
+ 10.2
+
+2005-04-08 11:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: do the edid probe before launching X
+ server (the way it was already done for i810fb)
+
+2005-04-08 11:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: XF86Config-4 doesn't exist anymore, no need
+ logging it
+
+2005-04-08 11:26 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: xbox kernel is x86 only
+
+2005-04-07 21:12 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/: probing.c, probing.h, thirdparty.c: - add
+ probing_detect_devices() to keep existing pci devices in an array
+ - allow to use external third-party pcitable - modules in
+ to_detect (thirdparty install) are now compared to external
+ third-par ty pcitable first, then to built-in pcitable
+
+2005-04-07 20:32 Pixel <pixel at mandriva.com>
+
+ * make_boot_img, kernel/update_kernel: add modules.cz for xbox
+
+2005-04-07 18:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: always restart slmodem, even
+ if it was already installed
+
+2005-04-07 18:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-21mdk
+
+2005-04-07 18:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps.pm, install_steps_interactive.pm:
+ handle third party modules from various devices (at least floppy
+ is still working :)
+
+2005-04-07 18:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: add some comment
+
+2005-04-07 18:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: fix refresh (forget erased
+ settings)
+
+2005-04-07 18:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: hide roaming frame by default,
+ not tested
+
+2005-04-07 17:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: net_applet: really allow users to
+ start connection without having to type the root password
+
+2005-04-07 17:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: run ifup/ifdown with
+ run_program::raw and detach, so that pppd doesn't complain about
+ invalid tty
+
+2005-04-07 15:21 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Sort the nic list for nbis.
+
+2005-04-07 13:29 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Add a trace
+
+2005-04-07 13:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: cosmetics
+
+2005-04-07 13:28 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: sent utf-8 by default for languages that
+ only use plain ascii, and for newly added or with few users
+ languages.
+
+2005-04-07 13:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: create correct /dev/modem for
+ HCF modems
+
+2005-04-07 13:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: use correct package name for
+ HCF modems
+
+2005-04-07 13:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix h[cs]f fix
+
+2005-04-07 12:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: don't truncate default gateway
+ (#15247)
+
+2005-04-07 12:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: workaround weird old code
+ (bugzilla #15300)
+
+2005-04-07 11:32 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/: thirdparty.c, thirdparty.h: export THIRDPARTY_DEVICE
+ and THIRDPARTY_DIR for stage2
+
+2005-04-06 16:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_gtk.pm: fix position of steps window in
+ direction rtl (bugzilla #15261)
+
+2005-04-06 16:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: leave bootsplash when X is up (and also
+ in newt and auto_install)
+
+2005-04-06 15:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: monitor-edid needs /dev/zero when
+ fallbacking on lrmi
+
+2005-04-06 15:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/: aliases, list: ship rmmod binary since
+ insmod from module-init-tools isn't combined with rmmod
+
+2005-04-06 14:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: when re-ordering the steps to have
+ doPartitionDisks just after selectInstallClass in case of
+ upgrade, do it properly so that the "Partitioning lamp" behaves
+ properly (bugzilla #15040)
+
+2005-04-06 13:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/do_pkgs.pm: now that I know how to short-circuit it,
+ make it work as well (have I already said I sux ?)
+
+2005-04-06 12:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/do_pkgs.pm: use short-circuit operator (/me sux,
+ thanks Pixel)
+
+2005-04-06 11:49 Warly <warly at mandriva.com>
+
+ * perl-install/share/logo-mandrake.png: LE-2005 logo
+
+2005-04-06 11:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: make the auto_inst.cfg more valid in
+ report.bug.gz, and add a warning
+
+2005-04-05 23:39 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po:
+
+ Updated Dutch translation by Reinout van Schouwen
+ <reinout@cs.vu.nl>
+
+2005-04-05 21:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/modules.pm: don't load modules.cz in uml install
+
+2005-04-05 21:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-20mdk
+
+2005-04-05 21:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: perl_checker, indent
+
+2005-04-05 20:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: do not crash if no essid is
+ selected (partially fix #15244)
+
+2005-04-05 20:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: hide unavailable features, add
+ close button
+
+2005-04-05 20:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: improve wifi detection
+
+2005-04-05 20:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: detect more devices (e.g.
+ wireless)
+
+2005-04-05 19:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/do_pkgs.pm: install dkms packages if found
+
+2005-04-05 18:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: support more slmodems
+
+2005-04-05 18:10 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/eu.po: updated Basque file
+
+2005-04-05 17:50 Sharuzzaman Ahmat Raslan <sharuzzaman at myrealbox.com>
+
+ * perl-install/share/po/ms.po: Updated Malay translation
+
+2005-04-05 16:56 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/share/po/ru.po: updated
+
+2005-04-05 16:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/mouse.pm: really apply specific ALPS touchpad
+ settings (#14510)
+
+2005-04-05 15:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: since we have a non-ascii font name, we
+ have to "use utf8"
+
+2005-04-05 15:01 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/crypto.pm: Add new countries to match the mirror
+ list
+
+2005-04-05 13:49 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/crypto.pm: Update mirror list
+
+2005-04-05 13:19 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: corrected small typo
+
+2005-04-05 12:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: media_browser is returning a file,
+ not a file handle, /me is bad :-/
+
+2005-04-05 12:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: please perl_checker
+
+2005-04-05 12:02 Pixel <pixel at mandriva.com>
+
+ * Makefile: do call "make check" in gi/perl-install (since it now
+ succeeds)
+
+2005-04-05 12:02 Pixel <pixel at mandriva.com>
+
+ * rescue/list: revert adding Compress::Zlib
+
+2005-04-05 12:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: the keyboard check is always failing,
+ can't make pablo have it right, so not checking it by default
+ (that way we can have the "make check" in gi call "make check" in
+ gi/perl-install)
+
+2005-04-05 12:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: check(): only display "Errors:" if there is
+ some errors
+
+2005-04-05 11:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: check the presence of non ascii characters
+ in perl files (allow utf8 chars if there is 'use utf8')
+
+2005-04-05 11:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/: share/advertising/05.pl, share/advertising/10.pl,
+ share/advertising/14.pl, share/advertising/21.pl,
+ share/advertising/22.pl, share/advertising/24.pl,
+ share/advertising/28.pl, standalone/drakpxe,
+ standalone/draksplash: - remove non useful non-ascii characters -
+ add "use utf8" for useful utf8 characters
+
+2005-04-05 11:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: remove useless and unwanted
+ non-ASCII character
+
+2005-04-05 11:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: replace the latin-charset unbreakable
+ space with a "use utf8" and the utf8 unbreakable space
+
+2005-04-05 11:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: replace non-ASCII characters
+
+2005-04-05 11:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/printer/main.pm: replace non ascii char
+
+2005-04-05 11:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: remove accentuated char
+
+2005-04-05 10:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: apply patch from bugzilla #15216,
+ adding support for "password=..." and "restricted" at per-entry
+ level (thanks to jarfil)
+
+2005-04-05 09:16 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sv.po: updated Swedish file
+
+2005-04-05 00:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: keyboard.pm, share/keyboards.tar.bz2:
+ included/fixed some xmodmap files
+
+2005-04-04 23:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/gl.po: updated Galician
+
+2005-04-04 21:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-19mdk
+
+2005-04-04 20:46 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/: stage1.c, thirdparty.c, thirdparty.h: add
+ thirdparty_load_media_modules(), try to find third party modules
+ on the install media
+
+2005-04-04 20:44 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/probing.h: allow to keep track of orphan devices (no
+ module available)
+
+2005-04-04 20:32 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/probing.c: allow to keep track of orphan devices (no
+ module available)
+
+2005-04-04 19:57 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: - Fixed bug
+ #4319: Printer options cannot be set after renaming the printer
+ or changing the connection type - Fixed bug of PostScript
+ printers with manufacturer-supplied PPD cannot be renamed at
+ all - Fixed bug of print queue being deleted when renaming fails
+ - Fixed bug of printerdrake trying to open a message window when
+ non-interactive queue generation fails - Fixed pre-definition of
+ $printer->{ARGS}, this bug made printerdrake crashing sometimes
+
+2005-04-04 19:39 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Try to guess the device associated
+ with the CD-ROM when installing urpmi (bug 14395)
+
+2005-04-04 18:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: disconnect internet interface
+ before trying to reconnect (or else some nasty pppd and pppoa may
+ be still alive)
+
+2005-04-04 18:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: do not reload firmware on eagle-usb
+ modems if already done
+
+2005-04-04 17:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: getNet(): only up wireless
+ devices
+
+2005-04-04 17:14 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: /me sux
+
+2005-04-04 15:24 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Don't ask for the same cd to be
+ reinserted when copying rpms on disk
+
+2005-04-04 15:14 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps_gtk.pm: Introduce
+ the new utility function getCDNumber()
+
+2005-04-04 13:24 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: small fix in /boot/message-text
+
+2005-04-04 12:56 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fr.po, it.po: updated French and Italian
+ files
+
+2005-04-04 12:22 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/de.po: updated German file
+
+2005-04-03 23:52 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: lang.pm, pixmaps/langs/lang-qu.png: Enabled choice
+ of Guarani, Quichua and Berber (tifinagh) at install time;
+ changed various encoding names internally used for font choosing
+ from language based to encoding based (following iso-15924
+ naming)
+
+2005-04-03 20:01 Thomas Backlund <tmb at mandrake.org>
+
+ * perl-install/share/po/fi.po: Updated Translations, fully
+ translated, was 93 fuzzy, 67 untranslated.
+
+2005-04-03 16:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: add /usr/local and /opt to
+ suggestions_mntpoints
+
+2005-04-02 17:46 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Updated translation
+ (supermount=automaatne haakimine).
+
+2005-04-02 15:04 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: es.po, sl.po, vi.po, wa.po: updated
+ Spanish, Slovenian, Vietnamese and Walloon files
+
+2005-04-02 10:07 Michal Bukovjan <bukovjan at mbox.dkm.cz>
+
+ * perl-install/share/po/cs.po: Updated Czech translation.
+
+2005-04-02 05:26 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-04-02 03:56 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2005-04-02 02:44 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ja.po: updated Japanese file
+
+2005-04-02 01:34 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2005-04-02 01:09 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: small update
+
+2005-04-01 22:31 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: jorge
+
+2005-04-01 20:54 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: Last minute strings:)
+
+2005-04-01 19:48 Warly <warly at mandriva.com>
+
+ * isolinux-graphic-simple.bmp.parameters,
+ isolinux-graphic.bmp.parameters: adjust progress bar size
+
+2005-04-01 19:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: one more item in 10.2-18mdk
+
+2005-04-01 19:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: fix harddrake crash
+
+2005-04-01 19:35 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: Actually remove multiple
+ Mini-CD media for deselection
+
+2005-04-01 19:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, 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, 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 3 new
+ strings from diskdrake
+
+2005-04-01 18:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add comments
+
+2005-04-01 18:53 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/: cdrom.c, disk.c: try to load ide-generic as fallback
+ when no disk or cdrom is found
+
+2005-04-01 18:45 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: When presenting the list of
+ media to deselect, group by CDs even when using the mini ISO
+
+2005-04-01 18:42 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/modules.pl: include ide modules too in all.rdz
+
+2005-04-01 18:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: ide-generic is compile as a module, not
+ in kernel core
+
+2005-04-01 18:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix truncated message (#13989)
+
+2005-04-01 18:06 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Sort CDs according to CD numbers,
+ not alphabetically
+
+2005-04-01 17:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-18mdk
+
+2005-04-01 16:42 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/it.po: updated Italian file
+
+2005-04-01 15:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: Makefile, lang.pm, pixmaps/langs/lang-pa_IN.png,
+ share/fonts.tar.bz2: Added font for gurmukhi script (used by
+ pa_IN translation); enabled pa_IN, and define the font for KDE
+
+2005-04-01 15:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/mouse.pm: configure wacom devices with synaptics
+ touchpads too
+
+2005-04-01 14:06 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cs.po, de.po, hu.po, id.po, is.po, nb.po,
+ ru.po, sk.po, sl.po: updated Slovenian file; run msgmerge on all
+ *.po files
+
+2005-04-01 13:14 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/share/po/ru.po: s/ÓÌÕÖÂ/ÓÅÒ×ÉÓ/
+
+2005-04-01 10:56 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: Small fuzzy fixes
+
+2005-04-01 08:22 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: az.po, ca.po, it.po, sv.po: updated
+ Swedish and Italian files; small fixes in Azeri and Catalan files
+
+2005-04-01 07:57 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cy.po: updated Welsh file
+
+2005-04-01 00:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: enable ethernet interfaces during
+ detection (fix Ralink wireless detection)
+
+2005-03-31 21:12 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: Updates from Eskild Hustvedt:)
+
+2005-03-31 20:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-17mdk
+
+2005-03-31 20:24 Marco De Vitis <mdv at spin.it>
+
+ * perl-install/share/po/it.po: fix
+
+2005-03-31 19:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: add enable_net_device
+
+2005-03-31 19:36 Marco De Vitis <mdv at spin.it>
+
+ * perl-install/share/po/it.po: fix
+
+2005-03-31 19:16 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cy.po: updated Welsh file
+
+2005-03-31 19:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: do not detect joystics as UPSes
+
+2005-03-31 18:17 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/az.po: some Azeri changes from Max Payne
+
+2005-03-31 17:46 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: use all the BOOT kernels we find (to have
+ both 2.6.8 and 2.6.11)
+
+2005-03-31 17:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: better locale-policy.fdi (bugzilla #15025)
+
+2005-03-31 17:27 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/share/po/ru.po: fixed drakperm:24 and drakperm:23
+
+2005-03-31 16:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/: authentication.pm, standalone/drakauth: don't
+ display description for non proposed authentication kinds
+
+2005-03-31 16:35 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: az.po, tr.po: small changes
+
+2005-03-31 16:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add some comment for post
+ 10.2
+
+2005-03-31 16:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: do not try to install
+ packages that are not availlable (#15106)
+
+2005-03-31 16:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not use ifplugd for
+ wireless cards (and don't allow users to enable it for wireless
+ cards in drakconnect)
+
+2005-03-31 16:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: do no try to install too
+ generic hw packages (#15101)
+
+2005-03-31 15:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/es.po: updated Spanish file
+
+2005-03-31 15:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: useSupermount is no more a
+ boolean, don't let the "More" dialog box set it to 1 when it is
+ magicdev
+
+2005-03-31 15:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: do not detect USB joystics as
+ UPSes (#15102)
+
+2005-03-31 14:52 Frederic Crozat <fcrozat at mandriva.com>
+
+ * perl-install/share/rpmsrate: Add gpdf and eog to GNOME packages
+
+2005-03-31 14:21 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/vi.po: updated Vietnamese file
+
+2005-03-31 14:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/az.po: update (Ugur Eminli
+ <system.virus@gmail.com>)
+
+2005-03-31 12:25 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Updated translation.
+
+2005-03-31 12:18 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/share/po/ru.po: updated drakperm
+
+2005-03-31 11:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: fix typo (bugzilla #15116)
+
+2005-03-31 11:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: the wmaker line didn't ask the window
+ manager to logout, but to rerun itself, so removing it (bugzilla
+ #15087)
+
+2005-03-31 10:53 Pixel <pixel at mandriva.com>
+
+ * rescue/list: disambiguate (esp for Config.pm which now has
+ Net/Config.pm)
+
+2005-03-31 10:11 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2005-03-31 00:51 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: es.po, fr.po, ja.po, pl.po, wa.po:
+ updated Japanese, Polish, Spanish, French and Walloon files
+
+2005-03-30 21:48 rstandtke
+
+ * perl-install/share/po/de.po: some fixes
+
+2005-03-30 20:22 rstandtke
+
+ * perl-install/share/po/de.po: some additions
+
+2005-03-30 20:01 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: updates:)
+
+2005-03-30 19:51 Michal Bukovjan <bukovjan at mbox.dkm.cz>
+
+ * perl-install/share/po/cs.po: Updated Czech translation.
+
+2005-03-30 17:57 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/share/po/ru.po: updated drakbackup
+
+2005-03-30 16:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: update 10.2-16mdk's changelog
+
+2005-03-30 16:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix speedtouch microcode url
+ (#15095)
+
+2005-03-30 15:59 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-03-30 15:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: az.po, bg.po, el.po, eo.po, mn.po, ro.po,
+ sq.po, sr.po, sr@Latn.po, ta.po, tr.po: manual updates
+
+2005-03-30 15:47 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: - merge in
+ new strings from drakroam - auto translate "RAID controllers" for
+ harddrake - manual updates for af, br & fr
+
+2005-03-30 15:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: eagle-usb: try to use the country
+ specific CMV
+
+2005-03-30 15:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/Makefile: fix makefile
+
+2005-03-30 13:42 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/share/po/ru.po: multiply fixes translation of
+ 'Service'
+
+2005-03-30 13:04 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/share/po/ru.po: s/search/Search
+
+2005-03-30 12:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: update 10.2-16mdk's changelog
+
+2005-03-30 12:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: megaraid controllers are listed
+ as RAID ones now
+
+2005-03-30 12:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: 3ware controllers are listed as
+ RAID ones now
+
+2005-03-30 12:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: fctStartAdsl is moved in /sbin too
+
+2005-03-30 12:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: ensure we detect all known sound
+ cards
+
+2005-03-30 12:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-16mdk
+
+2005-03-30 12:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: do not list hardware controllers
+ in unknown section
+
+2005-03-30 12:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: ensure we detect all known SATA
+ controllers
+
+2005-03-30 12:09 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/share/po/ru.po: fixed '...mail alert...'
+
+2005-03-30 01:45 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/it.po: updated Italian file
+
+2005-03-30 00:41 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm: - Let IOCTL detection of an USB
+ printer not get accepted if there is no relevant item at all in
+ the ID string, to avoid mis-detection of some USB keyboards as
+ printers.
+
+2005-03-29 23:02 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: es.po, fr.po: updated French and Spanish
+ files
+
+2005-03-29 21:29 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: Updates from Eskild Hustvedt
+
+2005-03-29 21:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: fix optical mice detection
+ (#15082)
+
+2005-03-29 20:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: really load network
+ configuration at start
+
+2005-03-29 19:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: move drakroam from drakxtools-newt
+ into drakxtools since it requires gtk+
+
+2005-03-29 19:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix tools' crash when drakconf is
+ not installing (#13392)
+
+2005-03-29 18:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-15mdk
+
+2005-03-29 17:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/pa_IN.po: Added Punjabi file
+
+2005-03-29 17:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/: modules.pm, harddrake/data.pm,
+ standalone/harddrake2, standalone/service_harddrake: - disable
+ imm/ppa probe during install since it causes some rubbish to be
+ printed (bugzilla #12560) - add an option in harddrake to probe
+ imm/ppa
+
+2005-03-29 17:29 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/Makefile: removed pa_IN.po and ta.po from install
+ due to font problems
+
+2005-03-29 17:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix NET_INTERFACE for sagem
+ modems not using pppoa
+
+2005-03-29 16:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: detect more Bewan devices
+
+2005-03-29 16:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/lvm.pm: ensure we have a {lv_name} (esp. for
+ auto_installs)
+
+2005-03-29 15:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (selectLanguage) remove unused variable
+
+2005-03-29 15:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * docs/HACKING: update package list regarding gtk+ bindings
+
+2005-03-29 15:31 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Updated translation.
+
+2005-03-29 15:14 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po:
+ Reinout van Schouwen <reinout@cs.vu.nl>: Updated Dutch
+ translation-
+
+2005-03-29 15:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: if i686-up-4GB is not there we don't have
+ pae, fallback on i586-up-1GB
+
+2005-03-29 12:52 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/share/po/ru.po: fixed Uninstall font
+
+2005-03-29 12:47 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sv.po: updated Swedish file
+
+2005-03-29 12:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (floppies) do not use dmidecode
+ for detecting floppies since it's not reliable (#15029)
+
+2005-03-29 11:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: revert to standard size (as told on
+ bugzilla #14988 to revert #13809)
+
+2005-03-29 10:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (selectLanguage) let "unicode" checkbox be
+ an advanced item at both install time and in standalone mode
+
+2005-03-29 10:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: (UpdateStatus) fix layout
+
+2005-03-29 10:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: translate columns' headers
+
+2005-03-28 22:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: adsl.pm, netconnect.pm: eaglectrl is now
+ in /sbin (#15033)
+
+2005-03-28 15:12 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/share/po/ru.po: fixed PPPoE, PPPoA,...
+
+2005-03-27 20:26 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2005-03-27 17:53 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-03-27 16:43 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * rescue/list: Add some more files to the rescue until packdrake
+ works correctly without Compress::Zlib.
+
+2005-03-27 14:03 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: transl. drakroam messages
+
+2005-03-27 01:01 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ar.po, br.po, fa.po, he.po, pl.po:
+ removed "10.1"
+
+2005-03-26 23:59 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, 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, 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, DrakX.pot, wa.po,
+ zh_CN.po, zh_TW.po: Oops! Sorry for the critial typo :(
+
+2005-03-26 23:46 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/advertising/09.pl: Oops, Sorry for the
+ critical typo
+
+2005-03-26 22:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: es.po, pt.po: updated Spanish file
+
+2005-03-26 17:54 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-03-26 13:31 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, 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-03-26 02:58 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/advertising/09.pl: s/Mandrakelinux
+ 10.1/Mandrakelinux. For advertising.
+
+2005-03-26 02: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, 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, 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: s/Mandrakelinux 10.1/Mandrakelinux/.
+ For advertising.
+
+2005-03-26 00:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/be.po: fix bogus translations introduced on
+ 6-Aug-2004
+
+2005-03-26 00:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-14mdk
+
+2005-03-26 00:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, 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, 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, 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 new strings
+ from drakroam - merge in kde's translations
+
+2005-03-25 17:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add megaraid_sas
+
+2005-03-25 17:19 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/rpmsrate: kdm was the new default
+
+2005-03-25 17:17 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * rescue/tree/usr/share/symlinks: I hate you pixel. ;-) You were
+ not lib64 aware of those modern arches. ;-))
+
+2005-03-25 17:16 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * rescue/list.x86_64: speculatively add 32-bit loader in case user
+ wants to use 3rdparty 32-bit binaries depending on it.
+
+2005-03-25 17:15 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * rescue/make_rescue_img: take care of lib64 platforms, also add
+ msboot restorer to x86_64 tree
+
+2005-03-25 16:01 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm: add prism2_cs module
+
+2005-03-25 14:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules/interactive.pm:
+ (load_category__prompt_for_more) enable one to load ide drivers
+ if needed
+
+2005-03-25 14:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: generic is not in either kernel-2.4.x nor
+ in kernel-2.6.x; let's replace it by ide-generic (#11704)
+
+2005-03-25 14:29 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/pt_BR.po: updated Brazilian file
+
+2005-03-25 12:36 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sc.po: Added Sardinian file
+
+2005-03-25 12:31 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: id.po, sl.po: updated Slovenian file
+
+2005-03-25 04:48 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Fix Typo
+
+2005-03-25 04:44 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Fix Typo and Minnor Update
+
+2005-03-25 04:31 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-03-24 19:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_any.pm: nasty warly uses different volume
+ IDs for mini CDs
+
+2005-03-24 18:27 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Always write an MD5SUM file
+
+2005-03-24 18:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: tag strings as being
+ translatable
+
+2005-03-24 17:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: do not crash in Help and About
+ buttons
+
+2005-03-24 17:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-03-24 17:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-03-24 16:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/pt_BR.po: - update from Cristiano Otto Von
+ Trompczynski <cris@mandrakesoft.com> - fix errors in cataglog
+
+2005-03-24 16:27 Pixel <pixel at mandriva.com>
+
+ * kernel/modules.pl: remove qla1280 as suggested by blino, at least
+ we have some space now :)
+
+2005-03-24 16:04 Pixel <pixel at mandriva.com>
+
+ * isolinux-graphic-simple.bmp: simplify image to be much smaller
+ when compressed
+
+2005-03-24 15:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps.pm, security/level.pm: really
+ default security level 3
+
+2005-03-24 15:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps.pm, install_steps_interactive.pm: -
+ configure a firewall by default in secure level >= 3 - allow
+ auto_install parameter {firewall_ports}
+
+2005-03-24 15:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: log what we are doing
+
+2005-03-24 13:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: force refresh if asked by
+ user from the menu
+
+2005-03-24 13:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: reload configuration on
+ SIGHUP
+
+2005-03-24 13:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: ask for root password if
+ needed when setting a new profile
+
+2005-03-24 13:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: return the user choices
+
+2005-03-24 13:11 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * tools/Makefile: Install modules required by packdrake and
+ gendistrib in MISC_DEST
+
+2005-03-24 13:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: - there is no reason to
+ have string ref for ports - replace main_auto_install() with
+ default_ports()
+
+2005-03-24 12:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/: raid.pm, diskdrake/interactive.pm: calling
+ inactivate_and_dirty() on a new structure is bad, we loose the
+ {isFormatted} flag (no big deal though, it happened because
+ raid::new() was creating a new raid with an already active md
+ name)
+
+2005-03-24 12:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-13mdk
+
+2005-03-24 12:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: use raid::free_mds() and
+ don't sort (we provide a better numerically sorted list)
+
+2005-03-24 12:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/raid.pm: ensure we use/propose a free md when
+ creating a new one
+
+2005-03-24 12:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/raid.pm: after "mdadm --assemble" there can be some
+ mds in inactivate state busying devices, stopping them
+
+2005-03-24 12:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::Banner::new) make banner be RTL
+ aware (aka follow language direction and display itself mirrored
+ for RTL languages) (#11910)
+
+2005-03-24 12:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::Banner::new) ensure icon is
+ centered vertically
+
+2005-03-24 11:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm:
+ network::drakfirewall::set_ports() doesn't *need* a $in anymore,
+ and it doesn't die when no network card
+
+2005-03-24 10:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps_interactive.pm,
+ network/drakfirewall.pm, network/shorewall.pm, standalone/drakgw,
+ standalone/drakvpn: -
+ network::shorewall::default_interfaces_silent() does not need any
+ parameter - network::shorewall::read() is simpler with a $o_in -
+ network::drakfirewall::default_from_pkgs() is non interactive,
+ better give it a do_pkgs - cleanup as little as possible
+
+2005-03-24 05:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: ATMARP support, useful for
+ modems using pppoatm (e.g. SpeedTouch) and ISP using RFC 1483
+ Routed VC MUX (e.g. Free Degroupe)
+
+2005-03-24 05:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: use new --nocall option of
+ speedtouch-start
+
+2005-03-24 05:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: write ATM_ADDR field
+
+2005-03-24 03:50 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-03-23 20:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_any.pm: temporarily fallback on /mnt/hd if
+ the hard disk mount point can't be found
+
+2005-03-23 19:57 Warly <warly at mandriva.com>
+
+ * isolinux-graphic-simple.bmp,
+ isolinux-graphic-simple.bmp.parameters, isolinux-graphic.bmp,
+ isolinux-graphic.bmp.parameters: updated boot images
+
+2005-03-23 19:57 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/disk.c: warn that the mount can fail if the partition
+ hasn't been cleanly unmounted
+
+2005-03-23 19:30 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Fix ejection of cdrom when asking
+ for the supplementary CD. (bug 14902)
+
+2005-03-23 18:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: make Bewan PCI modems work (drop
+ MTU config entries)
+
+2005-03-23 17:44 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: Add ufraw-gimp with gimp and ufraw
+ in photo (for handling raw images from digital camera)
+
+2005-03-23 16:29 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Fix Typo
+
+2005-03-23 16:13 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/share/po/ru.po: fixed 'Load/Save selection' and 'No
+ details'
+
+2005-03-23 16:10 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-03-23 15:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-03-23 15:18 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/share/po/ru.po: translated 'Smart Card'
+
+2005-03-23 15:14 Sergey Ribalchenko <fisher at obu.ck.ua>
+
+ * perl-install/share/po/uk.po: uk tr-tion update
+
+2005-03-23 13:14 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/share/po/ru.po: fixed 'Allow all users'
+
+2005-03-23 12:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: typo fix
+
+2005-03-23 12:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-12mdk
+
+2005-03-23 12:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: Makefile, Makefile.drakxtools: package rpmsrate
+
+2005-03-23 12:29 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: changed tifinagh kbd to
+ "tifinagh(phonetic)", to avoid conflicts with future moroccan
+ standard layout (as will be used in schools etc) which is a bit
+ different
+
+2005-03-23 11:36 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: Fix detection of available
+ space when copying rpms on disk (bug 14790)
+
+2005-03-23 10:51 Pixel <pixel at mandriva.com>
+
+ * kernel/modules.pl: still not enough room :-( (removing dmx3191d)
+
+2005-03-23 10:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: probe_using_X on neomagic can
+ return rubbish, so prefer probe_DMI() (even if dmi probe is quite
+ fuzzy...)
+
+2005-03-23 00:06 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: XBox - add options "xbox=1" for
+ sound driver (thx Thierry)
+
+2005-03-22 20:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/rpmsrate: install atmel firmwares for hardware
+ using at76* modules
+
+2005-03-22 19:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/rpmsrate: install prism54-firmware for prism54
+ devices only
+
+2005-03-22 19:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/rpmsrate: kernel 2.4 isn't needed anymore for
+ this hardware
+
+2005-03-22 18:37 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/disk.c: dirname may modify the string, so copy it
+ first
+
+2005-03-22 17:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: help perl_checker
+
+2005-03-22 17:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-11mdk
+
+2005-03-22 17:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: install packages needed for
+ hw support
+
+2005-03-22 17:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/: main.pm, xfree.pm: try a little harder to
+ know if we must write the config file. this is still not enough
+ though
+
+2005-03-22 17:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Xconfig/main.pm, standalone/XFdrake: put X conf
+ read in Xconfig::main
+
+2005-03-22 16:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive.pm: perl_checker cleanup
+
+2005-03-22 16:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/keyboarddrake: we
+ require_root_capability, so do it ASAP (bugzilla #13619)
+
+2005-03-22 16:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/keyboarddrake: clean-up
+
+2005-03-22 16:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/keyboarddrake: put the question inside
+ the interactive code
+
+2005-03-22 16:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: handle the return
+ value of any::setupBootloader() (bugzilla #13641)
+
+2005-03-22 16:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: be more explicit
+
+2005-03-22 16:34 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/: install_steps_gtk.pm, mouse.pm, share/list.i386:
+ XBox - get xpad to work in install (added xset)
+
+2005-03-22 16:31 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Fix Typo
+
+2005-03-22 16:22 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-03-22 16:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: perl_checker fix
+
+2005-03-22 16:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: when calling adduser, don't forget
+ {realname} or {home} if we have them (bugzilla #13805)
+
+2005-03-22 16:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: choose the default
+ background best matching the resolution
+
+2005-03-22 16:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: acpi=on is the default
+
+2005-03-22 12:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: no acpi means acpi=on, not the contrary
+ (bugzilla #13935)
+
+2005-03-22 12:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/rpmsrate: install xine-esd on Gnome desktops
+ so that totem works when esd is running
+
+2005-03-22 11:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/: lvm.pm, diskdrake/interactive.pm: ensure {lv_name}
+ is set when calling check_mntpoint() from Create() (via check())
+ (bugzilla #14253)
+
+2005-03-22 11:14 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: fix kdegraphics-common duplicate
+ problem
+
+2005-03-22 10:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/: authentication.pm, standalone/drakauth: SmartCard
+ authentication needs a (bloody) proprietary package, only propose
+ it when the package is available
+
+2005-03-22 06:15 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Fix Typo
+
+2005-03-22 06:01 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-03-21 21:49 rstandtke
+
+ * perl-install/share/po/de.po: some additions
+
+2005-03-21 21:35 Marco De Vitis <mdv at spin.it>
+
+ * perl-install/share/po/it.po: Successivo -> Next
+
+2005-03-21 20:43 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/keyboard.pm: fixed wrongly spelled us_intl for lb
+ locale.
+
+2005-03-21 19:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/do_pkgs.pm: add ->is_available
+
+2005-03-21 18:58 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/: install_messages.pm, 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/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/pl.po, share/po/pt.po, share/po/pt_BR.po,
+ share/po/ro.po, share/po/ru.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: s/102errata/errata/. There
+ will not be an 10.2, and errara.php3 is allways pointed to latest
+ errata :/
+
+2005-03-21 18:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/rpmsrate: install kwifimanager on
+ wireless-aware kde desktops
+
+2005-03-21 18:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: handle wireless hardware type
+
+2005-03-21 18:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add missing raid module (#14051)
+
+2005-03-21 17:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: is_lan_interface: do not list
+ wifi%d interfaces as LAN devices (#14523)
+
+2005-03-21 17:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add a new SATA driver: ata_adma
+
+2005-03-21 17:20 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Don't copy RPMs from supplementary
+ media, except supplementary CDs
+
+2005-03-21 17:14 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: install kdegraphics-common to
+ support camera
+
+2005-03-21 17:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: don't use show_all, it unhides hidden
+ summary (bugzilla #13941)
+
+2005-03-21 17:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: remove useless function to improve
+ readability and please Titi
+
+2005-03-21 17:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-10mdk
+
+2005-03-21 16:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: enhance yaboot macos entry handling
+ (mostly written by cjw) (bugzilla #14642)
+
+2005-03-21 16:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getUPS) enforce "hidups" as
+ driver for BackPro UPSes
+
+2005-03-21 16:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: (add_device_wizard) set extra
+ parameters if present
+
+2005-03-21 16:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/mouse.pm: help perl_checker
+
+2005-03-21 16:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: mouse.pm, Xconfig/xfree.pm: use specific Synaptics
+ settings for ALPS devices (#14512)
+
+2005-03-21 16:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: use new recommended settings for
+ synaptics-0.14.0
+
+2005-03-21 16:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: factorize and minimal comments
+
+2005-03-21 15:55 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Factorize code on opening CD tray.
+ This, and the previous change, fixed bug #14850.
+
+2005-03-21 15:32 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Force opening of cdrom tray when
+ asking for a supplementary CD.
+
+2005-03-21 14:54 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Fix typo
+
+2005-03-21 14:52 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Allow to eject non-mounted cdroms
+
+2005-03-21 14:45 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-03-21 14:43 Pixel <pixel at mandriva.com>
+
+ * rescue/make_partimage_save_rest_all: addmd5 to the generated iso
+
+2005-03-21 14:13 Pixel <pixel at mandriva.com>
+
+ * rescue/make_partimage_save_rest_all: factorize
+
+2005-03-21 14:10 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: rephrase message (#14813)
+
+2005-03-21 13:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: force net_applet start from menu
+ (#14858)
+
+2005-03-21 13:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: don't modify autostart config
+ file value if started with --force
+
+2005-03-21 13:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add missing DM modules for dmraid support
+ (#14806)
+
+2005-03-21 12:47 Pixel <pixel at mandriva.com>
+
+ * kernel/modules.pl: removing dc395x from cdrom.img and hd.img
+ (otherwise it doesn't fit in cdrom.img)
+
+2005-03-21 12:46 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: fix the module size in .not-enough-room
+
+2005-03-21 12:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/: detect_devices.pm, pkgs.pm: handle new kernel
+ flavour for i686 but non pae
+
+2005-03-21 11:36 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/bn.po: updated Bengali file
+
+2005-03-21 11:11 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sl.po: updated Slovenian file
+
+2005-03-21 10:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: ensure strange return value from
+ gtf(1) doesn't cause havoc
+
+2005-03-21 08:24 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Fix typo
+
+2005-03-21 08:11 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-03-20 04:59 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/: id.po: Fix Typo
+
+2005-03-20 04:46 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-03-19 17:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: we need latest ldetect-lst
+ (bugzilla #14785)
+
+2005-03-19 11:49 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: minnor update
+
+2005-03-19 11:42 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-03-19 10:45 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: minnor update
+
+2005-03-19 10:43 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-03-19 10:31 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-03-19 07:22 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po files
+
+2005-03-18 21:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: disable network hotplug for
+ via-velocity driver (#14763)
+
+2005-03-18 21:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: do "doPartitionDisks" and
+ "formatPartitions" ASAP in upgrade so that miscellaneous is
+ runned when /mnt is mounted (bugzilla #8678)
+
+2005-03-18 20:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-9mdk
+
+2005-03-18 20:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getUPS) move comment about
+ serial UPS where appropriate
+
+2005-03-18 20:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: fix explanation mode only
+ displaying last line (#14368)
+
+2005-03-18 20:36 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/: install_messages.pm, 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/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/pl.po, share/po/pt.po, share/po/pt_BR.po,
+ share/po/ro.po, share/po/ru.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: s/101errata/102errata for
+ the next release. We often forget this.
+
+2005-03-18 20:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: (parse_file) do not horribly
+ die
+
+2005-03-18 20:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: (add_device_wizard) fix device
+ path when manually adding an UPS (#12290)
+
+2005-03-18 18:45 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Better way to list NIC
+ modules (thx Thierry).
+
+2005-03-18 18:37 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/crypto.pm: Fix downloading update rpms with ftp
+ method.
+
+2005-03-18 18:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-8mdk
+
+2005-03-18 18:22 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-03-18 18:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: (row_setting_dialog) better
+ looking GUI: span groups & users on several columns (up to 3)
+
+ (we might have choosed to set number of columns depending of
+ number and max length of group/users rather than hardcoding 3
+ columns)
+
+2005-03-18 18:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: (get_user_or_group) do not
+ ignore groups with empty password field (#14777)
+
+2005-03-18 18:13 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Lose the "system" calls.
+ Use pxe.include now. Clean up some redundant code.
+
+2005-03-18 18:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: remove other mac address
+ occurrences in iftab
+
+2005-03-18 18:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix drakbackup message
+
+2005-03-18 17:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: remove the lvm if
+ lvm::vg_destroy() succeeds (bugzilla #14249)
+
+2005-03-18 17:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/lvm.pm: rootDevice must be properly set, esp. for
+ newt diskdrake (bugzilla #14254)
+
+2005-03-18 17:29 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/crypto.pm: Remove noisy log
+
+2005-03-18 16:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/localedrake: always warn the user to
+ logout, even if we can't help (bugzilla #14403)
+
+2005-03-18 16:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: handle grub file names that do not
+ correspond to a mounted filesystem (bugzilla #14410)
+
+2005-03-18 16:09 Olivier Blin <oblin at mandriva.com>
+
+ * rescue/tree/etc/issue: tell how to go back to the rescue menu
+
+2005-03-18 15:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-7mdk
+
+2005-03-18 15:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: really detect wireless
+ devices in manage interface
+
+2005-03-18 15:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/data.pm: adapt to new adsl_detect
+ prototype
+
+2005-03-18 15:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix bad translations
+
+2005-03-18 14:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/logdrake: perl_checker fixes
+
+2005-03-18 14:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/logdrake: fix save dialog
+
+2005-03-18 14:48 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-03-18 14:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: perl_checker/include fixes
+
+2005-03-18 14:28 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-03-18 13:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: use renamef instead of rename to
+ create .old conf files
+
+2005-03-18 13:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: simplify
+
+2005-03-18 13:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: ensure the .old X conf is the last
+ one
+
+2005-03-18 13:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: instead of having xorg.conf
+ symlinked to XF86Config, do the contrary
+
+2005-03-18 12:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: don't be verbose
+
+2005-03-18 12:16 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/ftp.pm: Meaningful error messages
+
+2005-03-17 22:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: - simplify GUI:
+ don't have a "ratio" combo. have the resolutions from current
+ ratio by default and allow "Other" to see all others - by default
+ 1280x1024 is now in 4/3, not 5/4 (stupid bloody resolution!)
+
+2005-03-17 21:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: have 1280x1024 in
+ both 4/3 and 5/4 ratios
+
+2005-03-17 21:40 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/doc/UPDATEMODULES, perl-install/install_steps.pm: give
+ ability to tell in which list_modules category is a module
+
+2005-03-17 19:29 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Fixed queue name
+ auto-generation, it sometimes hanged in an endless loop (bugs
+ #14426, #14525, #14563).
+
+2005-03-17 19:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: ensure the val registrations are kept
+ ordered
+
+2005-03-17 18:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/: main.pm, monitor.pm, xfree.pm: use
+ monitor-probe-using-X
+
+2005-03-17 18:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: ensure this bloody stupid code doesn't
+ break things when it is unused
+
+2005-03-17 18:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: simplify
+
+2005-03-17 18:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: vpi is given as hex too (though it
+ doesn't matter much since it's merely always less than or equal
+ to 9)
+
+2005-03-17 18:02 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: bring back generic
+ release-notes.txt to life
+
+2005-03-17 18:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/common.pm: (set_l10n_sort) import comments from
+ rpmdrake
+
+2005-03-17 17:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fill at least the DEVICE
+ field for non-configured devices
+
+2005-03-17 17:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/common.pm: (set_l10n_sort) do not bother touch
+ LC_ALL
+
+2005-03-17 17:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: interactive.pm, network/netconnect.pm: temporary
+ move collate sorting into net wizard in order to minimize
+ possible side effects
+
+2005-03-17 17:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: allow to modify non
+ configured devices in manage interface
+
+2005-03-17 17:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: we may need monitor-probe-using-X
+ installed to configure X during install (XFdrake already require
+ monitor-edid)
+
+2005-03-17 16:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive.pm: (ask_from_normalize) use newly
+ introduced set_l10n_sort() in order to have proper localized
+ sorting (#14634)
+
+2005-03-17 16:55 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/strip_modules: MERGE: remove debugging printfs :)
+
+2005-03-17 16:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/common.pm: (set_l10n_sort) stole it from rpmdrake
+
+2005-03-17 16:54 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/update_kernel: MERGE: don't be so i586-centric
+
+2005-03-17 16:53 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: MERGE: make it
+ possible to read arch-specific release notes in addition to
+ global (default) ones
+
+2005-03-17 16:53 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * rescue/list: MERGE: fix ldso name
+
+2005-03-17 16:52 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/: list, list.i386, list.x86_64: mdadm for
+ everyone, fix ldso linker name for other arches
+
+2005-03-17 16:51 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: MERGE: stop using dedicated X
+ drivers on x86-64, default to vesafb
+
+2005-03-17 16:50 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/devices.pm: MERGE: don't be so i586 centric
+
+2005-03-17 16:49 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * make_boot_img: MERGE: pcmcia is available on x86-64
+
+2005-03-17 16:48 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/Makefile: pcmcia also works on x86-64 (old
+ 10.1-branch)
+
+2005-03-17 16:47 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/pcmcia_/: cardmgr.c, cirrus.h, cs.h, cs_types.h,
+ driver_ops.h, ds.h, i82365.h, vg468.h, yacc_config.c,
+ yacc_config.h: merge with recent enough kernel and remove
+ osbolete (unused) stuff, also do some 64-bit fixing there
+ (forward port from cs3 and 10.1 branches)
+
+2005-03-17 16:45 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/usb-resource/update-usb-ids.pl: fix usb devices id
+ generation
+
+2005-03-17 16:44 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/modules.pl: remove obsolete stuff for at least 2 distros
+
+2005-03-17 16:43 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/list_modules.pm: add a320raid if people have an adaptec
+ ultra320 card with hostraid
+
+2005-03-17 16:40 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/pci-resource/update-pci-ids.pl: use sata modules too
+
+2005-03-17 16:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: add an item to 10.2-6mdk's log
+
+2005-03-17 14:44 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/thirdparty.c: probe in automatic mode to create
+ devices (and really check for mount return code)
+
+2005-03-17 14:26 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/thirdparty.c: fix return code check
+
+2005-03-17 14:22 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/thirdparty.c: message fix again
+
+2005-03-17 14:06 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-03-17 13:57 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-03-17 13:51 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/thirdparty.c: more message fixes
+
+2005-03-17 13:48 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/thirdparty.c: fix/enhance messages
+
+2005-03-17 13:47 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/thirdparty.c: look for modules in /install/thirdparty
+ first
+
+2005-03-17 12:48 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: updated
+
+2005-03-16 22:20 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/: modules.c, modules.h, stage1.c, stage1.h,
+ thirdparty.c, tools.c: - merge update_modules stuff in
+ third-party module - add "thirdparty" as an alias for the
+ "updatemodules" option - allow to specify thirdparty device using
+ automatic "thirdparty" option - try to mount as iso9660 too in
+ try_mount
+
+2005-03-16 20:36 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/thirdparty.c: fail if device doesn't match anything
+
+2005-03-16 20:14 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/Makefile: allow to clean local directory only
+
+2005-03-16 20:12 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/Makefile: partition.c is used only in disk installs
+ for now
+
+2005-03-16 20:05 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/: thirdparty.c, tools.c, tools.h: cdrom support in
+ third-party module
+
+2005-03-16 19:33 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/bootloader.pm: - cluster without capturing
+
+2005-03-16 19:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-6mdk
+
+2005-03-16 18:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix dropping line macos in
+ yaboot.conf (bugzilla #14642)
+
+2005-03-16 18:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: any.pm, standalone/localedrake: enable to
+ enable/disable utf-8
+
+2005-03-16 17:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (ask_fromW) remove dead code
+
+2005-03-16 17:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (ask_fromW) remove unecessary
+ sync (which was needed to workaround CList bug but now make
+ TreeViews breaking CheckBoxes)
+
+2005-03-16 16:57 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po files
+
+2005-03-16 16:44 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: Fix typo
+
+2005-03-16 16:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/localedrake: ensure there's never a
+ "previous" button on first step
+
+2005-03-16 15:48 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/default.pm: - Fixed setting of default
+ printer on daemon-less CUPS client (bug #13940).
+
+2005-03-16 12:45 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install2.pm, pkgs.pm: Allow to specify "suppl" and
+ "askmedia" in the kernel command-line as well as in the hdlists
+ file
+
+2005-03-16 12:25 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: finalized slovak translation for
+ 10.2
+
+2005-03-16 11:35 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: eu.po, fr.po, sv.po: updated French,
+ Basque and Swedish files
+
+2005-03-16 09:23 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/id.po: Fix po syntax
+
+2005-03-16 03:04 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-03-16 02:57 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-03-16 02:45 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-03-15 20:56 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/: any.pm, install_any.pm, pkgs.pm: Install
+ kernel-xbox on XBOX, bypass bootloader setup and eject call
+
+2005-03-15 20:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: adsl.pm, netconnect.pm: allow drakconnect
+ to display multiple instances of the same adsl device
+
+2005-03-15 19:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix comment
+
+2005-03-15 18:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix unicorn packages
+ installation
+
+2005-03-15 18:34 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Fix cdrom device name
+
+2005-03-15 18:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_any.pm, mdk-stage1/stage1.c: fix pcmcia
+ modules loading
+
+2005-03-15 15:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/: main.pm, monitor.pm: - new function
+ Xconfig::monitor::is_valid() - new function
+ Xconfig::monitor::probe() which probes DDC, then fallbacks on DMI
+
+2005-03-15 15:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: don't pass $monitors_db around,
+ use memoized monitors_db()
+
+2005-03-15 15:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/: detect_devices.pm, install_any.pm, modules.pm,
+ c/stuff.xs.pl, share/list: - add dmi_probe() - some special code
+ on dmi is now moved in dmitable with flags Pkg: and Module:
+
+2005-03-15 13:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: install scim-input-pad too for japanese
+
+2005-03-15 13:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-5mdk
+
+2005-03-15 12:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not compare translated
+ string, on Pixel's advice
+
+2005-03-15 12:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/: empty.pm: do not drop field {info}
+ that can be created in zero_MBR
+
+2005-03-15 11:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: allow not to set gateway
+ device (#14633)
+
+2005-03-15 11:36 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Fixed translation.
+
+2005-03-15 11:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix typo
+
+2005-03-15 11:02 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cy.po, it.po: updated Italian and Welsh
+ files
+
+2005-03-15 00:35 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/id.po: fixed encoding
+
+2005-03-14 22:12 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-03-14 19:28 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Delete Conflict Indicator and Little
+ Update
+
+2005-03-14 19:07 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Change the code for the rpm copying
+ progress bar to avoid forking.
+
+2005-03-14 19:00 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Little Update
+
+2005-03-14 18:51 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/rpmsrate: install setarch by default on
+ x86_64, add provisions for a320raid-kernel drivers, add 32-bit
+ compat galaxy gnome theme
+
+2005-03-14 18:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: allow connections from local
+ net to firewall (#14586)
+
+2005-03-14 18:15 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/id.po: fixed syntax errors
+
+2005-03-14 17:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: remove eagle-usb_must_be_configured
+ file
+
+2005-03-14 17:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/bootloader-config: ensure we have /sbin
+ in our PATH
+
+2005-03-14 17:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: fix and force CMVs symlink creation
+
+2005-03-14 16:54 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-03-14 16:49 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-03-14 16:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ja.po, wa.po: updated Japanese file
+
+2005-03-14 15:03 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated again
+
+2005-03-14 14:59 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/crypto.pm: Update mirror list
+
+2005-03-14 14:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-03-14 14:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: br.po, fr.po: fix netmask message after
+ funda fixed blino message
+
+2005-03-14 14:35 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: Fix typo
+
+2005-03-14 13:21 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/zh_CN.po: Fix newline issue
+
+2005-03-14 13:08 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Downgrade one version
+
+2005-03-14 09:38 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: Don't die while upgrading if
+ /var/ftp/pub/Mandrakelinux isn't there (bug #14585)
+
+2005-03-14 07:52 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: updated
+
+2005-03-14 07:25 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: fix netmask string..
+
+2005-03-13 22:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: add some xxXGA names
+
+2005-03-13 20:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: fix looking for the user uid.gid
+
+2005-03-13 17:52 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-03-13 17:13 Michal Bukovjan <bukovjan at mbox.dkm.cz>
+
+ * perl-install/share/po/cs.po: Updates to Czech translations
+
+2005-03-13 15:25 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: Updated Dutch (nl) translation by
+ Reinout van Schouwen <reinout@cs.vu.nl> * DrakX
+
+2005-03-13 12:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: don't die when we have no entries in
+ grub menu.lst
+
+2005-03-12 20:18 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: Updates soft/control-center/po/da.po
+ gi/perl-install/share/po/da.po
+
+2005-03-12 18:54 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/: network/netconnect.pm, 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/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/pl.po, share/po/pt.po, share/po/pt_BR.po,
+ share/po/ro.po, share/po/ru.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/drakconnect:
+ s/Netmask address/Netmask/. typo fix
+
+2005-03-12 18:12 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2005-03-12 13:44 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: jorge
+
+2005-03-12 09:00 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: vi.po, zh_CN.po: updated Vietnamese file;
+ corrected syntax error in Chinese file
+
+2005-03-12 08:16 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2005-03-11 20:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: fix typo (linetype for eagle-usb)
+
+2005-03-11 20:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: for 1400x1050, put the resolutions
+ (60 and 75Hz are already in extramodes, but they are GTF
+ modelines, we can overrule them)
+
+2005-03-11 19:25 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Updated translation.
+
+2005-03-11 18:42 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: When removing duplicate
+ physical media, take DVDs into account as well as CDs
+
+2005-03-11 18:12 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Use library functions
+
+2005-03-11 17:48 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Create an empty MD5SUM file to make
+ urpmi happy
+
+2005-03-11 17:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_any.pm: remove useless /
+
+2005-03-11 17:39 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Don't stack information windows on
+ top of another
+
+2005-03-11 17:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_any.pm: really create ISO images mountpoint
+ (me sux)
+
+2005-03-11 15:56 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Eject last CD after copy of rpms on
+ disk
+
+2005-03-11 14:24 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, 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-03-11 14:01 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: lt.po, ltg.po, lv.po, mk.po, mn.po,
+ ms.po, mt.po, nb.po, nl.po, nn.po, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.po: updated pot file
+
+2005-03-11 13:54 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/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: updated pot file
+
+2005-03-11 13:46 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: am.po, ar.po, az.po, be.po, bg.po, br.po,
+ bs.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: updated pot file
+
+2005-03-11 13:10 Pablo Saratxaga <pablo at mandriva.com>
+
+ * 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: updated pot file
+
+2005-03-11 13:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: am.po, az.po, bn.po, cs.po, eu.po, hr.po,
+ ja.po, ko.po, ms.po, sl.po, tr.po, uk.po, zh_CN.po, zh_TW.po: fix
+ translations
+
+2005-03-11 11:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_any.pm: use full path to rpms for ISO media
+
+2005-03-11 04:14 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: grf, translate last minute strings
+
+2005-03-10 21:11 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: Updated Norwegian Nynorsk
+ translation.
+
+2005-03-10 21:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_any.pm: don't spawn a shell if stage2 isn't
+ run directly
+
+2005-03-10 21:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_any.pm: setup urpmi media for ISO images
+
+2005-03-10 20:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: cleanup
+
+2005-03-10 20:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: don't add modelines for 1280x1024,
+ they are already in standard vesamodes (builtin Xorg)
+
+2005-03-10 20:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: when adding gtf modelines, have
+ them sorted with high frequencies first (since Xorg prefer the
+ first matching modeline (!))
+
+2005-03-10 18:59 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/: diskdrake/interactive.pm, fs/type.pm,
+ partition_table/raw.pm: Diskdrake mods for XBox (thks Pixel)
+
+2005-03-10 18:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * 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, pl.po, pt.po, pt_BR.po, ro.po, ru.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: fix kde merge
+
+2005-03-10 18:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-4mdk
+
+2005-03-10 18:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: harddrake: require hwdb-clients
+
+2005-03-10 18:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * 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, pl.po, pt.po, pt_BR.po, ro.po, ru.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: further merge with KDE
+
+2005-03-10 17:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: fr.po, br.po: update
+
+2005-03-10 17:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * 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, pl.po, pt.po, pt_BR.po, ro.po, ru.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: remove duplicated string
+
+2005-03-10 17:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * 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, pl.po, pt.po, pt_BR.po, ro.po, ru.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: remove uneeded string
+
+2005-03-10 17:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: af.po, ar.po, az.po, be.po, bg.po, bn.po,
+ br.po, bs.po, ca.po, cs.po, da.po, de.po, el.po, eo.po, es.po,
+ et.po, eu.po, fa.po, fi.po, fr.po, ga.po, gl.po, he.po, hi.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, nn.po, pl.po, pt.po,
+ pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po,
+ sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po, wa.po, zh_CN.po,
+ zh_TW.po: merge translations from KDE
+
+2005-03-10 17:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: (upload) remove uneeded
+ string
+
+2005-03-10 17:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix messages
+
+2005-03-10 17:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, 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, 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, pl.po, pt.po, pt_BR.po,
+ ro.po, ru.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 in new strings
+
+2005-03-10 16:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: enable to upload the hardware
+ list
+
+2005-03-10 16:37 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Put a wait message for copying rpms
+ from CDs
+
+2005-03-10 16:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/run_program.pm: (raw) ensure runned programs are
+ logged in explanations
+
+2005-03-10 15:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: (getinfoFromDDC) fix crash (eg
+ when called from hwdb-clients)
+
+2005-03-10 14:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/dos.pm: catch bad use of
+ get_rawCHS()
+
+2005-03-10 14:19 Olivier Blin <oblin at mandriva.com>
+
+ * make_boot_img: do not copy debug shell on floppy disks
+
+2005-03-10 14:04 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/thirdparty.c: fix messages
+
+2005-03-10 13:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/modem.pm: use a higher timeout for modem
+ dialing (#10814)
+
+2005-03-10 12:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: simplify
+
+2005-03-10 11:59 Sergey Ribalchenko <fisher at obu.ck.ua>
+
+ * perl-install/share/po/uk.po: tr-tion update
+
+2005-03-10 11:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: we don't want the 4/3
+ detailed_timings otherwise they conflict with the Xorg builtin
+ vesamodes
+
+2005-03-10 11:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone.pm: help perl
+
+2005-03-10 02:54 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2005-03-09 23:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: hide wlan-ng settings for
+ non-root users
+
+2005-03-09 22:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: make wpa_supplicant.conf
+ readable by root only
+
+2005-03-09 18:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile: ga translation level has been leveraged up
+
+2005-03-09 18:49 Warly <warly at mandriva.com>
+
+ * isolinux-graphic.bmp: new boot image
+
+2005-03-09 18:37 Warly <warly at mandriva.com>
+
+ * perl-install/share/logo-mandrake.png: rc1 logo
+
+2005-03-09 18:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-03-09 18:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: better looking text
+
+2005-03-09 18:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-03-09 17:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-3mdk
+
+2005-03-09 17:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: network/ethernet.pm, network/netconnect.pm,
+ network/network.pm, standalone/drakconnect: write selected dhcp
+ client in ifcfg files
+
+2005-03-09 16:12 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/: stage1.c, stage1.h, tools.c: expert mode is dead
+
+2005-03-09 16:11 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/Makefile: don't forget to link with third_party stuff
+
+2005-03-09 16:10 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/stage1.c: do not ask for third party modules here,
+ it's available from main menu
+
+2005-03-09 16:07 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/stage1.c: allow to use new third party stuff from main
+ menu
+
+2005-03-09 15:56 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/: thirdparty.c, thirdparty.h: initial import (allow to
+ load thirdparty modules from disks)
+
+2005-03-09 15:52 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/disk.c: fix message
+
+2005-03-09 15:51 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/stage1.c: probe usb devices before trying to use third
+ party modules
+
+2005-03-09 15:49 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/: Makefile, disk.c, partition.c, partition.h, tools.c,
+ tools.h: move partition stuff in partition.c and common disk
+ stuff in tools.c
+
+2005-03-09 15:42 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/probing.c: do ask for modules here, it is already done
+ when needed
+
+2005-03-09 15:41 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/probing.c: wait for mass storage devices to be
+ detected
+
+2005-03-09 15:41 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/probing.c: add log message when looking for scsi
+ adapters
+
+2005-03-09 13:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (get_eth_cards) update comments
+
+2005-03-09 13:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (get_eth_cards) do not
+ overwrite driver name with sysfs one when we already got it from
+ ethtool, thus fixing bogus names registered though pci layer in
+ kernel (#14163)
+
+2005-03-09 12:46 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sl.po: updated Slovenian file
+
+2005-03-09 12:22 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/Makefile: updated list of too low languages
+
+2005-03-09 12:16 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Translation fixes.
+
+2005-03-08 19:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/msec.pm: (load_values) fix getting value
+ when it's defined but 0 (#14364)
+
+2005-03-08 19:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/msec.pm: (get_function_value) fix getting
+ value when it's 0 (#14364)
+
+2005-03-08 18:06 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Disable progress bar when copying
+ rpms from CDs. (The change CD dialog clashes with it)
+
+2005-03-08 17:37 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/rpmsrate: removed obsolete IMEs for zh_TW
+
+2005-03-08 16:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: please perl_checker differently
+
+2005-03-08 16:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix 10.2-2mdk's changelog
+
+2005-03-08 15:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-2mdk
+
+2005-03-08 15:43 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/bootloader.pm: perl_checker - bad /me
+
+2005-03-08 15:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: use full path for net_applet icon
+ in menu entry (#14346)
+
+2005-03-08 15:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install scim-input-pad for japanese
+ users
+
+2005-03-08 15:14 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/: bootloader.pm, mouse.pm: mousedrake, detectloader
+ support for XBox
+
+2005-03-08 14:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: interactive.pm, standalone.pm, ugtk2.pm: log
+ program exiting
+
+2005-03-08 12:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: Vera is now in xorg
+
+2005-03-08 11:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: choose a 4/3
+ resolution by default
+
+2005-03-08 11:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: xbox support (by
+ Stew)
+
+2005-03-08 11:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (wpa_supplicant_configure) scan
+ hidden ssid
+
+2005-03-08 09:14 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2005-03-07 23:20 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: use fonts-ttf-dejavu instead of
+ fonts-ttf-vera (bug #13493).
+
+2005-03-07 21:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: handle NEEDHOSTNAME and
+ DHCP_HOSTNAME in Manage interface
+
+2005-03-07 21:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: move DHCP settings in a
+ notebook page
+
+2005-03-07 16:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-1mdk
+
+2005-03-07 15:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: allow live resizing of
+ reiserfs on lvm (as tested by Gaetan Lehmann). not tested
+
+2005-03-07 15:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: delete gateway if appropriate
+ when configuring DSL devices too (#13978)
+
+2005-03-07 14:13 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: remove spurious space
+
+2005-03-07 14:11 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: try to reuse hostname and domain
+ information from dhcp step (#14285)
+
+2005-03-07 14:08 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: ask if the http proxy should be used for
+ ftp (#13492)
+
+2005-03-07 14:02 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: don't segault if proxy step is cancelled
+
+2005-03-07 13:56 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/bn.po: updated Bengali file
+
+2005-03-07 13:40 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/lang.pm: added gcin setup
+
+2005-03-07 13:27 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/lang.pm: Added settings for new traditional chinese
+ IME gcin.
+
+2005-03-07 13:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-03-07 12:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_gtk.pm, share/list, share/themes-blue.rc,
+ share/themes-galaxy.rc: - by default, gtk use
+ /usr/share/themes/Galaxy/gtk-2.0/gtkrc, so add this gtkrc to
+ the install, and so no need to have galaxy settings in
+ themes-galaxy.rc => this fixes the doc theme not having the
+ good shapes for the buttons - fix the worst pb in themes-blue.rc
+ (even if we don't use it)
+
+2005-03-07 12:04 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/dhcp.h: export dhcp_domain too
+
+2005-03-07 01:57 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: more and more fixes
+
+2005-03-07 00:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: proofreading (gerard delafond)
+
+2005-03-06 23:58 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: more fixes..
+
+2005-03-06 15:00 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po files
+
+2005-03-06 14:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/: interactive.pm, resize_ntfs.pm: ensure
+ ntfsresize is available
+
+2005-03-06 11:18 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-03-05 14:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: set Linetype in eagle-usb.conf to
+ use CMVs
+
+2005-03-05 14:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: create CMV symlinks for both POTS
+ and ISDN lines
+
+2005-03-05 06:22 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po files
+
+2005-03-04 20:33 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/stage1.c: set MODE_TESTING too if DEBUGSTAGE1 is set
+
+2005-03-04 19:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: CMV support for eagle-usb
+
+2005-03-04 18:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: copy provider_id tag too
+
+2005-03-04 18:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: use provider_id as key
+ instead of id
+
+2005-03-04 18:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: add provider IDs, comments,
+ cleanups
+
+2005-03-04 18:09 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/default.pm: - Let printerdrake recognize if
+ the user edited /etc/cups/client.conf manually.
+
+2005-03-04 18:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: do not check yaboot "magic" on ppc
+ (it seems the magic we have is somewhat wrong), assuming we have
+ yaboot installed (it is the only handled bootloader anyway)
+
+2005-03-04 18:00 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: 100% good to go!:)
+
+2005-03-04 17:00 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Add an explicit error message
+ instead of a built-in cryptic one (bug #14243)
+
+2005-03-04 16:43 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po files
+
+2005-03-04 16:05 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/probing.c: remove unused variable
+
+2005-03-04 15:46 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: Disallow to delect the first
+ media listed in the "hdlists" file.
+
+2005-03-04 15:33 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Modify new string in order to merge with
+ KDE translations
+
+2005-03-04 14:49 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Fix passing installation method instead of
+ description to install_any::getFile
+
+2005-03-04 13:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: perl_checker fix
+
+2005-03-04 13:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: allow to modify DHCP
+ settings too
+
+2005-03-04 13:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: ethernet.pm, netconnect.pm: add
+ @network::ethernet::dhcp_clients
+
+2005-03-04 12:44 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Add a wait message when downloading hdlists
+ from network
+
+2005-03-04 12:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: use
+ detect_devices::is_lan_interface
+
+2005-03-04 12:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: add is_lan_interface
+
+2005-03-04 11:42 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: Translation nit
+
+2005-03-04 05:27 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: A few more fixes:)
+
+2005-03-04 03:36 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: 100%! :)
+
+2005-03-03 23:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-03-03 23:27 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Sync with Arabeyes CVS
+
+2005-03-03 21:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-03-03 20:58 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po files
+
+2005-03-03 20:57 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: Updated Norwegian Nynorsk
+ translation.
+
+2005-03-03 20:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: add ralink RT2x00 interfaces type
+ in comment
+
+2005-03-03 20:46 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po files
+
+2005-03-03 17:03 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps_gtk.pm: perl_checker
+ fixes
+
+2005-03-03 16:41 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps_gtk.pm: Add a
+ progress bar when copying rpms from the media to the hard disk
+
+2005-03-03 14:56 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/nb.po: Fix .po syntax
+
+2005-03-03 13:13 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/commands.pm: Avoid unnecessary stats.
+
+2005-03-03 11:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: delete gateway settings if
+ gateway device is invalid too (#11761)
+
+2005-03-03 10: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, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.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: Added translation for "recommended"
+ string
+
+2005-03-02 22:25 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: - Made the
+ "(recommended)" in the printer/driver lists translateable (bug
+ 10651)
+
+2005-03-02 22:25 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2005-03-02 22:20 rstandtke
+
+ * perl-install/share/po/de.po: some additions
+
+2005-03-02 19:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: delete gateway settings if
+ reconfiguring the gateway interface to dhcp
+
+2005-03-02 17:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: add the various "names" for
+ standard resolutions
+
+2005-03-02 17:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: sort CVT_ratios by preference
+
+2005-03-02 14:29 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/zh_TW.po: fixed menu
+
+2005-03-02 14:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix 10.2-0.35mdk's changelog
+
+2005-03-02 14:10 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/share/rpmsrate: - Let hardware-specific GUI tools
+ for HP printers not be installed by default during
+ installation. They get only preloaded now, so that printerdrake
+ can install them if needed (bug 13957).
+
+2005-03-02 13:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.35mdk
+
+2005-03-02 12:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: refresh every second, and do
+ not reread network conf at each refresh
+
+2005-03-02 12:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: handle boot-as and master-boot
+ (bugzilla #13846)
+
+2005-03-02 12:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix comment
+
+2005-03-02 12:15 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/bg.po: fixed menus
+
+2005-03-02 12:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: "keyboard" InputDevice can also be
+ called "kbd"
+
+2005-03-02 12:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_scrolled_window) Gtk2::Html::View
+ has native scrolling support and thus behave badly with
+ GtkViewport
+
+2005-03-02 11:37 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/af.po: updated po file
+
+2005-03-02 11:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/af.po: small fix in Afrikaans file
+
+2005-03-02 10:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: screenshot_dir__and_move(): use /tmp
+ which is ramdisk instead of /tmp/stage2 which is now always
+ read-only
+
+2005-03-01 22:51 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Make sure that
+ recommended driver is preselected in expert mode, even if the
+ recommended driver is a manufacturer-supplied PPD with language
+ tag.
+
+2005-03-01 22:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: configure iocharset and codepage option for
+ hal
+
+2005-03-01 22:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: add 1280x600 for VAIO PCG-C1M
+ (bugzilla #5192)
+
+2005-03-01 22:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/parse.pm: fix section with only comments
+ (putting the comment after the EndSection is wrong)
+
+2005-03-01 21:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: give up trying to only add
+ modelines not defined in xorg, otherwise xorg will prefer the
+ modelines we give here (eg: it will use 1024x768@50 whereas it
+ could use 1024x768@60)
+
+2005-03-01 21:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix buggy get_append_memsize()
+ (bugzilla #13874)
+
+2005-03-01 20:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: stringify using a perl_checker compliant
+ way
+
+2005-03-01 20:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: add a ratio choice,
+ and restrict the resolutions to this choice
+
+2005-03-01 20:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: - handle {list_ref} in ComboBox - handle
+ more than one {ref} per widget - check that the string value of
+ the ref doesn't change when it is set (maybe we should remove
+ the REF or SCALAR prefix?)
+
+2005-03-01 19:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::ComboBox::set_popdown_strings)
+ clear model before filling the list
+
+2005-03-01 19:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (get_eth_cards) backport fixes
+ from HEAD: - workaround buggy kernel until provided patch got
+ applied (#12609) - do not rely on broken ethtool from hostap
+ drivers (#13979)
+
+2005-03-01 19:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (get_eth_cards) workaround
+ buggy kernel until provided patch got applied (#12609)
+
+2005-03-01 19:23 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Added possibility to add
+ a remote LPD printer in beginner's mode (bug 13734) - Fixed
+ incorrect display of accentuated characters in PPD options also
+ for boolean options (bug 13928) - Let detected LPD printer
+ model be shown in a pop-up window and not in the add printer
+ wizard - Let detected socket printer model be shown if the
+ IP/port was manually entered - Small fix on selection of test
+ pages
+
+2005-03-01 19:10 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/probing.c: do not show a dialog box before loading
+ network or SCSI drivers, we'll load it anyway ...
+
+2005-03-01 19:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm: when testing, don't silently default
+ to newt
+
+2005-03-01 18:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.34mdk
+
+2005-03-01 18:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: Makefile, Makefile.drakxtools: fix build after
+ pixel's pass
+
+2005-03-01 18:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: - when setting a resolution,
+ create associated gtf modelines for various standard vfreqs
+ (but don't do it for builtin_ModeLines (cf vesamodes and
+ extramodes in xorg)) - drop the Dell modelines (this is now
+ cleanly handled) - drop the Vaio modeline (but this modeline was
+ not gtf, will it work with the gtf modeline?) - export {ModeLine}
+ raw to allow playing with pre_comment
+
+2005-03-01 17:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: do not install gftp with gnome, it's
+ not HIG compliant, it's not gtk+2, it's bog prone and browser &
+ nautilus are better
+
+2005-03-01 17:32 Frederic Crozat <fcrozat at mandriva.com>
+
+ * perl-install/share/rpmsrate: add i18n packages for
+ mozilla-firefox
+
+2005-03-01 16:17 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Fixed add printer wizard
+ ("Previous" and "Cancel") for printerdrake being run embedded
+ in the MCC (bug 13929).
+
+2005-03-01 16:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix bogus translation
+
+2005-03-01 16:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: remember encryption
+ algorithm
+
+2005-03-01 16:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: allow to choose encryption
+ algorithm (#13472)
+
+2005-03-01 15:01 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/any.pm: - webclient alternative is obsolete, launch
+ browser with new /usr/bin/www-browser
+
+2005-03-01 14:54 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakbug: - load link with
+ /usr/bin/www-browser
+
+2005-03-01 14:49 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakhelp: - load link with
+ /usr/bin/www-browser
+
+2005-03-01 13:47 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakbug: - use
+ any::launch_browser_with_wm func to launch better suited browser
+
+2005-03-01 13:41 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakhelp: - use
+ any::launch_browser_with_wm
+
+2005-03-01 13:41 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/any.pm: - check and launch browser according to wm
+
+2005-03-01 12:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.33mdk
+
+2005-03-01 12:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: fix typo
+
+2005-03-01 12:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: - sort the whole
+ resolutions to simplify the code, and get better choices - add a
+ failsafe resolution
+
+2005-03-01 12:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/: monitor.pm, resolution_and_depth.pm:
+ create {preferred_resolution} out of the edid detailed_timings
+ and use it
+
+2005-03-01 11:33 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: more proof reading
+
+2005-03-01 11:25 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/pt.po: corrected syntax error
+
+2005-03-01 11:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: skip detailed_timings flagged
+ bad_ratio
+
+2005-03-01 01:11 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: Small fixes
+
+2005-03-01 00:34 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: minor fixes
+
+2005-03-01 00:32 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: updates from eskild hustvedt:)
+
+2005-03-01 00:10 Michal Bukovjan <bukovjan at mbox.dkm.cz>
+
+ * perl-install/share/po/cs.po: Updated Czech translation.
+
+2005-03-01 00:07 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Arabic QA
+
+2005-03-01 00:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile.config, perl-install/Makefile.drakxtools,
+ perl-install/any.pm, perl-install/drakxtools.spec,
+ perl-install/install2.pm, perl-install/Xconfig/monitor.pm,
+ perl-install/Xconfig/resolution_and_depth.pm,
+ perl-install/Xconfig/various.pm, perl-install/Xconfig/xfree.pm,
+ perl-install/share/list, tools/Makefile: - remove ddcxinfos,
+ replaced by monitor-edid (which is in a separate package) - add
+ many resolutions (they are structured by aspect ratio for next
+ move) - put the "Monitor preferred modeline" from EDID in
+ xorg.conf - for this ModeLine must be exported from the monitor
+ section - specifying a VendorName|ModelName in auto_inst is
+ valid, don't overwrite it with edid probe - the strange /dev/zero
+ needed (?) by ddcxinfos is no more needed - field {size} is now
+ {diagonal_size}, and is no more "corrected" - add @CVT_ratios and
+ @CVT_vfreqs (unused at the moment) - Getopt::Long is needed by
+ monitor-parse-edid
+
+2005-03-01 00:02 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: a few fixes
+
+2005-02-28 23:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: - drop hashes -
+ handle lower than 640 resolutions (prepare for next move,
+ introducing aspect ratio in choose_gtk)
+
+2005-02-28 22:11 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Bugzilla 13998 - Sort list
+ of nbis.
+
+2005-02-28 21:40 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-02-28 21:23 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Bugzilla 14031 - cleint
+ files created as char devices.
+
+2005-02-28 19:49 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: define 'compose:rwin' in XkbOptions
+ when $keyboard->{GRP_TOGGLE} is different than "rwin_toggle" and
+ also when $keyboard->{GRP_TOGGLE} is not defined.
+
+2005-02-28 18:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: network/netconnect.pm, standalone/drakconnect:
+ enhance "wrong network mask format" message (#10712)
+
+2005-02-28 18:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix adding net_applet menu entry
+
+2005-02-28 18:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.32mdk
+
+2005-02-28 17:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: add net_applet menu entry
+
+2005-02-28 17:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: netprofile support, allow to
+ select watched interface
+
+2005-02-28 16:50 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sl.po: updated Slovenian file
+
+2005-02-28 15:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: allow to modify DHCP timeout
+
+2005-02-28 15:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: write DHCP_TIMEOUT for DHCP
+ connections
+
+2005-02-28 15:28 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: Make regexps a bit more
+ lenient.
+
+2005-02-28 15:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add comment
+
+2005-02-28 14:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-02-28 14:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: handle PEERYP and PEERNTPD
+ too (#9982)
+
+2005-02-28 14:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: write PEERYP and PEERNTPD for
+ DHCP connections
+
+2005-02-28 14:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix typo
+
+2005-02-28 13:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: have install.sh 755 (as suggested by
+ Vincent Meyer)
+
+2005-02-28 13:24 Pixel <pixel at mandriva.com>
+
+ * advanced.msg.xml: we should not mention "expert" anymore
+ (bugzilla #13986)
+
+2005-02-28 13:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: typo fixes
+
+2005-02-28 12:43 Pixel <pixel at mandriva.com>
+
+ * rescue/: make_partimage_save_rest_all, make_rescue_img: - in
+ rest_all, try to restore from the cdrom - remove the debugging
+ setting of leia as the partimage server
+
+2005-02-28 12:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: peerdns support (and assorted
+ space fixes)
+
+2005-02-28 12:13 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: QA for Arabic
+
+2005-02-28 12:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: write PEERDNS for DHCP
+ interfaces
+
+2005-02-28 11:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: do not rely on broken ethtool
+ from hostap drivers
+
+2005-02-28 11:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: apply USERCTL settings for
+ modems too
+
+2005-02-28 10:39 Pixel <pixel at mandriva.com>
+
+ * rescue/list: add xfs_repair to the rescue (bugzilla #10488)
+
+2005-02-28 10:14 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: cdrom.c, directory.c, disk.c, stage1.h, tools.c: new
+ option "keepmounted" to allow the rescue media to be kept mounted
+
+2005-02-28 09:03 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/fr.po: updated French file
+
+2005-02-28 08:59 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/vi.po: updated Vietnamese file
+
+2005-02-28 08:49 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sl.po: updated Slovenian file
+
+2005-02-28 08:45 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: br.po, bs.po, cy.po, da.po, et.po, fa.po,
+ it.po, ja.po, nl.po, pt.po, sk.po: updated Welsh, Persian,
+ Italian adn Japanese files; ran msgmerge on all *.po files
+
+2005-02-28 03:23 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2005-02-28 02:56 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: install_steps_interactive.pm,
+ printer/printerdrake.pm: - Let country and not language decide
+ about default paper size
+
+2005-02-27 20:54 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-02-27 17:00 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: Updated Dutch (nl) translation by
+ Reinout van Schouwen <reinout@cs.vu.nl> * DrakX
+
+2005-02-27 16:37 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: Updated Dutch (nl) translation by
+ Reinout van Schouwen <reinout@cs.vu.nl> * DrakX
+
+2005-02-26 14:49 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: translated new 78 messages
+
+2005-02-26 11:16 vljubovic
+
+ * perl-install/share/po/bs.po: Latest changes to Bosnian files
+
+2005-02-25 22:09 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates
+ gi/perl-install/share/po/da.po
+
+2005-02-25 21:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.31mdk
+
+2005-02-25 18:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: pre-detect modem device
+ (instead of mouse device ...) and do it at the right place
+
+2005-02-25 18:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: do not ask for root password if
+ interface allows USERCTL
+
+2005-02-25 17:59 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: changed keyboard to "us" for Chinese
+
+2005-02-25 17:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: remove debug code (spotted by
+ Pixel)
+
+2005-02-25 17:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: allow to enable USERCTL
+
+2005-02-25 17:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: write USERCTL too
+
+2005-02-25 17:29 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Driver "oki4w" was
+ renamed to "oki4drv". Adapted printerdrake appropriately
+
+2005-02-25 17:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: space fixes
+
+2005-02-25 17:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: space fixes
+
+2005-02-25 16:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.30mdk
+
+2005-02-25 16:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ja.po: fix wrong key accelerator (#13540)
+
+2005-02-25 15:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: simplify
+
+2005-02-25 15:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: drakfont, draksec: rollback unwanted
+ changes
+
+2005-02-25 14:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: (backend_mod) fix uninstalling
+ fonts (#9324)
+
+2005-02-25 14:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-02-25 14:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: perl_checker fixes
+
+2005-02-25 14:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: drakfont: (backend_mod) fix
+ uninstalling fonts (#9324)
+
+2005-02-25 14:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: perl_checko fixes
+ (especially fix wrong message)
+
+2005-02-25 14:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakxtv: perl_checker fixes
+
+2005-02-25 13:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/wa.po: small update
+
+2005-02-25 13:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: now that i
+ understand hsync and vsync, i can filter using HorizSync much
+ more nicely :)
+
+2005-02-25 12:59 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: gl.po, sv.po: updated Swedish file;
+ corrected "default:LTR" entry for Galician
+
+2005-02-25 12:39 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2005-02-25 11:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: allow to select "unlisted"
+ provider in adsl provider list
+
+2005-02-25 01:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/bn.po: updated Bengali file
+
+2005-02-25 01:10 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2005-02-25 00:49 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: da.po, eu.po: updated Basque and Danish
+ files
+
+2005-02-25 00:20 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates soft/control-center/po/da.po
+ soft/mdkonline/po/da.po soft/urpmi/po/da.po
+ gi/perl-install/share/po/da.po
+
+2005-02-24 21:59 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/es.po: updated Spanish file
+
+2005-02-24 21:47 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: nn.po, wa.po: updated Walloon file
+
+2005-02-24 20:51 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Updated translation.
+
+2005-02-24 20:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: br.po, eo.po, lt.po: merge in strings
+ from urpmi & rpmdrake
+
+2005-02-24 20:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-02-24 19:52 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/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-02-24 19:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/.perl_checker: blacklist bad Libconf package
+
+2005-02-24 19:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: perl_checker fixes
+
+2005-02-24 19:48 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: Updated Norwegian Nynorsk
+ translation.
+
+2005-02-24 19:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: do not update kde config file if
+ kde isn't installed (spotted by Mathieu Geli)
+
+2005-02-24 18:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: fix typos
+
+2005-02-24 18:52 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: nb.po, nl.po, nn.po, pl.po, pt.po,
+ pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po,
+ sv.po: updated pot file
+
+2005-02-24 18:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.29mdk
+
+2005-02-24 18:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: netconnect.pm, network.pm, tools.pm:
+ minimal WPA support
+
+2005-02-24 18:32 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation.
+
+2005-02-24 18:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: fix reading UPS db: some UPS
+ have the same name but differes in the way they're plugged into
+ the system (eg: USB vs serial cable), so we need to differ them
+ through the "extra" field
+
+2005-02-24 18:07 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/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: updated pot file
+
+2005-02-24 17:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: adapt to new Libconf API
+
+2005-02-24 17:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: always restart wlan-ng interface
+
+2005-02-24 17:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: netconnect.pm, network.pm: move wlan-ng
+ stuff in network::network
+
+2005-02-24 17:45 Pablo Saratxaga <pablo at mandriva.com>
+
+ * 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, DrakX.pot,
+ fur.po: updated pot file
+
+2005-02-24 17:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: space cleanup
+
+2005-02-24 17:14 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-02-24 17:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: spaces cleanup
+
+2005-02-24 16:01 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/net_applet: no space before question
+ marks in English
+
+2005-02-24 16:00 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/net_applet: no space after colon in
+ English
+
+2005-02-24 15:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: minor update
+
+2005-02-24 15:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: af.po, az.po, bg.po, eo.po, id.po, ko.po,
+ lv.po, mk.po, ro.po, sr@Latn.po, th.po: update
+
+2005-02-24 14:59 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: move "HPOJ" and "HPLIP" as
+ parameters of translatable strings, so common phrases need to be
+ translated only once.
+
+2005-02-24 14:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/mount_options.pm: if we remove a weird option,
+ also remove nodev, noexec and nosuid (but don't do it everytime,
+ since those options can be usefully used for /tmp for example)
+
+2005-02-24 14:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/: mount_options.pm: fix typo
+
+2005-02-24 13:09 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: perl_cheker doesn't like a
+ line break between function name and parenthesis
+
+2005-02-24 12:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add support for new sata_qstor SATA
+ driver
+
+2005-02-24 11:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakxtv: explain
+
+2005-02-24 11:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakxtv: fix #13865: scan TV channels for
+ TV ocards that do not require any driver configuration
+
+2005-02-23 23:38 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/: drakTermServ, drakbackup: Drop banner,
+ using up too much window space. Perl_checker mods.
+
+2005-02-23 22:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: - fix displaying "Advanced"
+ instead of "Basic" in advanced_state by default - cleanup
+
+2005-02-23 22:33 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - Made possible modifying the
+ options on a non-Foomatic queue not set up with printerdrake.
+
+2005-02-23 21:02 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Fixed bug of accentuated
+ characters in PPDs not correctly reproduced in the printer
+ options dialog.
+
+2005-02-23 19:35 vljubovic
+
+ * perl-install/share/po/bs.po: Fixes in Bosnian translation
+
+2005-02-23 19:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: add norwegian ADSL providers
+ (Eskild Hustvedt)
+
+2005-02-23 19:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/modem.pm: remove all non-digit characters in
+ phone number (#10813)
+
+2005-02-23 18:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: remove spurious spaces
+
+2005-02-23 18:31 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/zh_TW.po: Fix missing \n
+
+2005-02-23 18:31 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/ugtk2.pm: Force to open file selector as a modal
+ window (bug 13942)
+
+2005-02-23 18:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: fix usage of create_file_selector()
+
+2005-02-23 16:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: fix
+
+2005-02-23 16:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: cleanup is_xbox() here too
+
+2005-02-23 15:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_any.pm: (default_packages) setup acerk for
+ another laptop (which doesn't need any option)
+
+2005-02-23 15:16 Sergey Ribalchenko <fisher at obu.ck.ua>
+
+ * perl-install/share/po/uk.po: ukrainian tr-tion update
+
+2005-02-23 14:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: handle wpa_supplicant files
+
+2005-02-23 14:38 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/: common.pm, detect_devices.pm, keyboard.pm,
+ Xconfig/monitor.pm, Xconfig/xfree.pm: XBox support - XFdrake
+
+2005-02-23 14:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-02-23 13:43 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-02-23 12:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: write code correctly
+
+2005-02-23 12:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: "pae" flag in the cpu is needed
+ for new kernel
+
+2005-02-23 11:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: SuSE also have "Hand Held" as a
+ laptop (ch_type in { 8, 9, 10, 11, 14 })
+
+2005-02-23 06:31 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: merge correctly between 1.352 and
+ 1.353
+
+2005-02-22 22:40 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Arabic QA
+
+2005-02-22 21:26 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-02-22 20:42 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po files
+
+2005-02-22 19:45 rstandtke
+
+ * perl-install/share/po/de.po: some fixes
+
+2005-02-22 18:52 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: finished translation for 10.2
+
+2005-02-22 18:21 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm: add CVS Id
+
+2005-02-22 18:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: drakconnect, net_applet: reuse the very
+ same message
+
+2005-02-22 17:49 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, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.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 missing strings from mcc's
+ domain
+
+2005-02-22 17:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: drakconnect, net_applet: unbreak blino
+ change: reuse string from mcc since that's what will be displayed
+ and allter *all* callers
+
+2005-02-22 17:13 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Fix location of hdlist for rpms
+ copied on disk
+
+2005-02-22 17:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: reflect new label from
+ drakconf
+
+2005-02-22 16:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: (interactive_mode) typo fix
+
+2005-02-22 15:33 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ky.po: updated Kirghiz file
+
+2005-02-22 14:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.28mdk
+
+2005-02-22 14:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: disable activefw by default
+
+2005-02-22 14:34 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Corrected default
+ settings for printer auto-detection in beginner's mode
+
+2005-02-22 14:33 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/bn.po: updated Bengali file
+
+2005-02-22 14:27 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sl.po: updated Slovenian file
+
+2005-02-22 14:13 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_steps_gtk.pm, pkgs.pm: Verify free space
+ on disk for copying rpms
+
+2005-02-22 13:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: lang.pm, share/rpmsrate: adapt to new uim
+ splitting
+
+2005-02-22 10:25 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-02-22 00:07 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/data.pm: - Removed "gpr" from the packages
+ to be installed. It is taken from the distro because it is not
+ maintained anymore.
+
+2005-02-21 23:05 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2005-02-21 21:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: add an explanation about the
+ Gtk2::SimpleList workaround
+
+2005-02-21 21:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: uggly workaround of
+ Gtk2::SimpleList bugs
+
+2005-02-21 20:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: fix scim-anthy appearing twice
+
+2005-02-21 20:10 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: Updated Norwegian Nynorsk
+ translation.
+
+2005-02-21 18:51 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: part. update
+
+2005-02-21 17:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: do URPM::add_macro in write_langs(), and
+ require URPM instead of using it (for now it's only used during
+ install) (bugzilla #13796)
+
+2005-02-21 14:34 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sl.po: updated Slovenian file
+
+2005-02-21 13:30 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Translation fixes.
+
+2005-02-21 04:04 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2005-02-21 00:51 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: End of days work
+
+2005-02-20 12:07 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: Updated Norwegian Nynorsk
+ translation
+
+2005-02-20 11:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakfont: perl_checker fixes
+
+2005-02-20 11:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakfont: really use the file selection
+ message
+
+2005-02-20 11:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakfont: allow to select multiple files
+
+2005-02-20 11:00 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/lang.pm: New koi8-u font size. bug#13809
+
+2005-02-20 06:35 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: keyboard values for "lb" language.
+
+2005-02-20 05:09 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/scannerdrake: - Let unsupported scanners
+ be visibly marked in the scanners list (bug #12049) - Load kernel
+ modules (and make them loaded on boot) if specified in ScannerDB
+ - Tell user if his scanner requires manual editing of config
+ files to work (the appropriate scanner models are marked in
+ ScannerDB)
+
+2005-02-20 01:25 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: End of another day
+
+2005-02-19 17:34 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, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.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: small typo fix
+
+2005-02-19 17:24 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: small fix
+
+2005-02-19 04:16 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/scanner.pm: - Added support for the new keywords
+ MANUAL, MANUALREQUIRED, and KERNEL in the scanner database
+
+2005-02-19 02:05 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: More translations
+
+2005-02-18 21:00 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-02-18 20:53 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/detect_devices.pm: Detect XBox, don't probe for
+ floppy on XBox.
+
+2005-02-18 20:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm: ensure the "range" entry returned
+ value is bounded as asked (useful for backends not handling
+ "range" correctly, like interactive::newt) (bugzilla #13744)
+
+2005-02-18 20:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: remove spurious spaces
+
+2005-02-18 20:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakgw: indentation/spaces cleanups
+
+2005-02-18 20:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: show unprocessed attacks when
+ the applet starts
+
+2005-02-18 20:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/activefw.pm: support GetReports method
+
+2005-02-18 19:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: use ->ask_filename instead
+ of ->ask_file (esp. useful in "save" mode)
+
+2005-02-18 19:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: Makefile.config, Makefile.drakxtools,
+ drakxtools.spec: don't package drakids for now
+
+2005-02-18 19:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: really fix the typo!
+
+2005-02-18 19:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: fix typo
+
+2005-02-18 18:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: - add HTTP support in media_browser
+ - HTTP support is non save only
+
+2005-02-18 18:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, diskdrake/interactive.pm,
+ standalone/XFdrake: factorize code in
+ ask_window_manager_to_logout_then_do()
+
+2005-02-18 18:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: don't reboot if the window
+ manager did not exit
+
+2005-02-18 18:29 Sergey Ribalchenko <fisher at obu.ck.ua>
+
+ * perl-install/share/po/uk.po: translation update
+
+2005-02-18 18:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps.pm: generated auto_install.cfg.pl
+ can contain a somewhat empty printer config, but not really empty
+
+2005-02-18 18:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: don't let upNetwork break
+ /etc/protocols when the install is not done yet
+
+2005-02-18 17:28 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: a small note so I don't forget why I did it
+ that way
+
+2005-02-18 16:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps_interactive.pm,
+ partition_table.pm, diskdrake/interactive.pm: media_browser
+ returns a filehandle when non save
+
+2005-02-18 15:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: store attacks in a queue
+ instead of blocking DBus bus with a Gtk2 main loop
+
+2005-02-18 15:48 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sl.po: updated po file
+
+2005-02-18 15:42 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/directory.c: fix using the mirror tree when there is
+ an iso at the root of the mirror but we don't use it (or can't
+ use it)
+
+2005-02-18 12:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: let the daemon handle the
+ blacklist policy in automatic mode
+
+2005-02-18 11:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: prefer uim-qt for japanese under KDE
+
+2005-02-18 11:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ga.po: update
+
+2005-02-18 09:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: pt.po, sl.po: updated Slovenian file
+
+2005-02-18 09:27 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/rpmsrate: uim has a new gtk frontend
+
+2005-02-18 08:57 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Sync with Arabeyes CVS -> 100%
+ Arabic translation :-)
+
+2005-02-18 04:45 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/: lang.pm, share/rpmsrate: scim-chinese has been
+ renamed to scim-pinyin.
+
+2005-02-17 21:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-02-17 20:33 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-02-17 20:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: perl_checko cleanup
+
+2005-02-17 20:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/keyboarddrake: simplify
+
+2005-02-17 19:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakvpn: perl_checker fixes
+
+2005-02-17 18:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: titifix
+
+2005-02-17 18:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: perl_checker fix
+
+2005-02-17 18:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix typo
+
+2005-02-17 18:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: perl_checker fixes
+
+2005-02-17 18:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: standalone/drakgw, network/tools.pm: perl_checker
+ fixes
+
+2005-02-17 18:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: revert some previous commit
+
+2005-02-17 18:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: definitively get rid off
+ net_cnx scripts
+
+2005-02-17 18:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: add get_default_device
+
+2005-02-17 18:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: net_cnx scripts shouldn't be used
+ anywhere now
+
+2005-02-17 18:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: remove unused
+ network::netconnect::get_net_device
+
+2005-02-17 18:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: remove unneeded test
+
+2005-02-17 18:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: standalone/drakgw, standalone/drakvpn,
+ network/shorewall.pm: use network::shorewall::get_net_device
+
+2005-02-17 18:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: add and use
+ network::shorewall::get_net_device
+
+2005-02-17 18:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: don't use net_cnx_up anymore
+
+2005-02-17 17:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: remove set_cnx_script
+
+2005-02-17 17:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: remove write_cnx_script
+
+2005-02-17 17:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakgw: net_cnx scripts shouldn't be used
+ anymore
+
+2005-02-17 17:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Makefile.drakxtools: move drakids in /usr/bin
+
+2005-02-17 16:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: ship drakids in drakxtools
+
+2005-02-17 16:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: do not ship activefw.pm in
+ drakxtools-backend but in drakxtools
+
+2005-02-17 16:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Makefile.config: ship drakids
+
+2005-02-17 16:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: only install gnome-volume-manager
+ for KDE & GNOME desktops
+
+2005-02-17 16:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: KDE uses gnome-volume-manager too
+
+2005-02-17 15:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Makefile: probe.c is located in c/
+
+2005-02-17 15:47 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, br.po, cs.po, cy.po, da.po,
+ de.po, es.po, et.po, eu.po, fi.po, fr.po, he.po, is.po, it.po,
+ ltg.po, nb.po, nl.po, nn.po, pt.po, pt_BR.po, ru.po, sk.po,
+ sl.po, sr.po, sv.po, tg.po, uk.po, uz.po, uz@Latn.po, vi.po,
+ zh_CN.po, zh_TW.po: updated Slovenian file; fixed various
+ MandrakeSoft -> Mandrakesoft etc.
+
+2005-02-17 14:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/: detect_devices.pm, install_any.pm: - create
+ dmidecode_category() - don't use field {string} when not needed -
+ better use regexps on dmidecode returned strings (even the kernel
+ use strstr)
+
+2005-02-17 13:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: clear white list too
+
+2005-02-17 12:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: allow to enable automatic
+ mode from popup
+
+2005-02-17 11:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install cpufreqd on laptops w/o KDE
+ (#13697)
+
+2005-02-17 11:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: use only one 'edge' ButtonBox
+
+2005-02-17 11:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: in case someone use
+ diskdrake only to create partitions, shut up the predefined mount
+ point automatic choice
+
+2005-02-17 01:16 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: cleaning up more
+
+2005-02-16 22:08 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: More updates:)
+
+2005-02-16 19:18 Frederic Crozat <fcrozat at mandriva.com>
+
+ * perl-install/share/rpmsrate: install nautilus-filesharing when
+ installing nautilus
+
+2005-02-16 19:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: rollback
+
+2005-02-16 19:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/: compssUsers.pl, rpmsrate, po/af.po,
+ po/am.po, po/ar.po, po/az.po, po/be.po, po/bg.po, po/bn.po,
+ po/br.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po,
+ po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po,
+ po/fa.po, po/fi.po, po/fr.po, po/fur.po, po/ga.po, po/gl.po,
+ po/he.po, po/hi.po, po/hr.po, po/hu.po, po/id.po, po/is.po,
+ po/it.po, po/ja.po, po/ko.po, po/ky.po, po/lt.po, po/ltg.po,
+ po/lv.po, po/mk.po, po/mn.po, po/ms.po, po/mt.po, po/nb.po,
+ po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po,
+ po/ru.po, po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/sr@Latn.po,
+ po/sv.po, po/ta.po, po/tg.po, po/th.po, po/tl.po, po/tr.po,
+ po/uk.po, po/uz.po, po/uz@Latn.po, po/vi.po, po/wa.po,
+ po/zh_CN.po, po/zh_TW.po: typo fix (Per Oyvind Karlsen)
+
+2005-02-16 18:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: include more EVMS packages
+
+2005-02-16 17:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/vi.po: updated Vietnamese file
+
+2005-02-16 17:24 Frederic Crozat <fcrozat at mandriva.com>
+
+ * perl-install/share/rpmsrate: install desktop-printing when
+ installing GNOME
+
+2005-02-16 17:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-02-16 16:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: use foreach (perl_checker)
+
+2005-02-16 16:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: fix whitelist display and
+ unwhitelist call
+
+2005-02-16 15:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-02-16 15:38 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sl.po: updated Slovenian file
+
+2005-02-16 15:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: typo fixes
+
+2005-02-16 14:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: use drakfirewall icon
+
+2005-02-16 14:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: network/activefw.pm, standalone/net_applet: rename
+ get_mode as get_interactive
+
+2005-02-16 14:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/activefw.pm: add generic call_method sub to
+ factorize
+
+2005-02-16 14:35 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: - If a printer
+ is set up with HPLIP and has still an old HPOJ configuration,
+ it will be automatically removed now.
+
+2005-02-16 14:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: handle Whitelist signal
+
+2005-02-16 14:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/activefw.pm: typo fix
+
+2005-02-16 14:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: network/activefw.pm, standalone/drakids: handle
+ whitelist
+
+2005-02-16 14:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: allow to sort blacklist by date,
+ attacker or attack type
+
+2005-02-16 13:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.27mdk
+
+2005-02-16 13:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/keyboarddrake: better display of keyboard
+ layouts by using a tree (rationale: big pull-down menu is slow to
+ browse)
+
+2005-02-16 13:04 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sl.po: updated Slovenian file
+
+2005-02-16 12:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: list usb mice that have not
+ driver set as "Mouse:xxx" in usbtable (#13575)
+
+2005-02-16 10:47 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-02-16 10:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/patch/patch-updatemodules.pl: for the real 10_1, not
+ the 10_1-update branch
+
+2005-02-16 04:25 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: minor update
+
+2005-02-16 01:23 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Arabic translation (sync with
+ arabeyes CVS)
+
+2005-02-15 22:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sl.po: updated Slovenian file
+
+2005-02-15 21:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: az.po, bg.po, bn.po, br.po, ca.po, el.po,
+ eo.po, fi.po, gl.po, he.po, hi.po, hr.po, id.po, is.po, mk.po,
+ mt.po, pl.po, pt_BR.po, ro.po, ru.po, sl.po, sr.po, sr@Latn.po,
+ tg.po, th.po, tr.po, zh_TW.po: update
+
+2005-02-15 21:21 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: More updates again!:)
+
+2005-02-15 21:20 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sr@Latn.po: fixed cyrillic mix
+
+2005-02-15 20:49 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Force only ASCII letters,
+ numbers, and underscores being used in print queue names.
+
+2005-02-15 20:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: perl_checker fixes
+
+2005-02-15 20:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: delete unblacklisted entries
+ from the list
+
+2005-02-15 19:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: handle Init signal (look again
+ for daemon if received)
+
+2005-02-15 19:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/activefw.pm: allow to look for daemon after
+ startup
+
+2005-02-15 19:40 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Fix bug 13661 : umounting a
+ supplementary CD wasn't done cleanly after failure
+
+2005-02-15 19:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: clear blacklist when needed
+
+2005-02-15 19:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: add quit button
+
+2005-02-15 19:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po: update
+
+2005-02-15 18:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: initial import
+
+2005-02-15 18:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/activefw.pm: add unblacklist
+
+2005-02-15 18:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: fix typo again
+
+2005-02-15 18:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: fix typo
+
+2005-02-15 18:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: be.po, ko.po, lt.po, lv.po, mn.po, ms.po,
+ sq.po, ta.po, uz.po: update
+
+2005-02-15 18:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: remove unneeded variable
+
+2005-02-15 18:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: use network::activefw;
+
+2005-02-15 18:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/activefw.pm: initial import
+
+2005-02-15 18:08 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_steps_gtk.pm, pkgs.pm: Support media size
+ check when copying every rpm on HD
+
+2005-02-15 18:04 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nb.po: corrected encoding
+
+2005-02-15 17:55 Pixel <pixel at mandriva.com>
+
+ * tools/cvslog2changelog.pl: fix typo
+
+2005-02-15 17:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps_gtk.pm,
+ install_steps_interactive.pm, diskdrake/interactive.pm: replace
+ load/save from floppy with using media_browser()
+
+2005-02-15 17:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/th.po: small fix
+
+2005-02-15 17:50 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: Even more fixes:)
+
+2005-02-15 17:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/: interactive.pm, interactive/gtk.pm: create
+ ->ask_filename and ->ask_directory to replace ->ask_file
+
+2005-02-15 17:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: _ask_dir and _ask_file now use FileChooser
+
+2005-02-15 17:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: add FileChooser creation and rollback
+ ugly ->run thing (hopefully now unneeded)
+
+2005-02-15 17:24 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/th.po: small fix
+
+2005-02-15 16:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: am.po, be.po, br.po, el.po, eo.po,
+ fur.po, ga.po, hr.po, ko.po, ky.po, lt.po, ltg.po, lv.po, mn.po,
+ ms.po, ro.po, sq.po, sr.po, sr@Latn.po, ta.po, th.po, tr.po,
+ uz.po, uz@Latn.po: automerging
+
+2005-02-15 16:52 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: More updates again
+
+2005-02-15 16:21 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sl.po: updated Slovenian file
+
+2005-02-15 15:30 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/printerdrake: - Wait for CUPS being ready
+ before querying the printer states for the printer list in the
+ main window.
+
+2005-02-15 15:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: don't let table=c: break (special for
+ Frank Griffin)
+
+2005-02-15 14:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/cvslog2changelog.pl: add peroyvind
+
+2005-02-15 12:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/is.po: updated po Icelandic file
+
+2005-02-15 12:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: oops, no per package
+ _requires_exceptions, only a global one, but that's ok to forget
+ alltogether about ther require perl(URPM) since we do require
+ urpmi explictly
+
+2005-02-15 10:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: we want drakxtools-backend requires
+ to be *low* (ie no perl-URPM nor packdrake)
+
+2005-02-15 05:44 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: Lots of more fixes!!!
+
+2005-02-15 04:22 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: Moremoremoremoremore fixes:)
+
+2005-02-15 02:14 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: More fixes!!:D
+
+2005-02-14 22:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/zh_TW.po: Chinese country names from Gnome
+
+2005-02-14 20:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: perl_checker fix
+
+2005-02-14 19:57 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/install_any.pm: - Copy complete $printer structure
+ for installation records (all irrelevant was already removed by
+ printer::printerdrake::final_cleanup($printer), called in
+ install_steps_interactive.pm at the end of the "Summary" step.
+
+2005-02-14 19:31 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/install_steps.pm: - Updated for new printer drivers
+ packages.
+
+2005-02-14 19:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: use real IP address
+
+2005-02-14 19:12 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Let printer autodetection
+ results get into /root/drakx/report.bug.gz
+
+2005-02-14 18:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: remove some debug code
+
+2005-02-14 18:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: proxy_configure: modify KDE
+ proxy settings too
+
+2005-02-14 17:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: active firewall support
+
+2005-02-14 17:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: add evms for advanced disk usage
+
+2005-02-14 17:23 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: partial update
+
+2005-02-14 16:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ga.po: format fix
+
+2005-02-14 16:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ga.po: update
+
+2005-02-14 16:07 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, vi.po: updated Vietnamese file
+
+2005-02-14 15:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: replace "Advanced" with
+ "Authentication method" (as suggested in bugzilla #11041)
+
+2005-02-14 15:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: network/netconnect.pm, 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/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/pl.po, share/po/pt.po, share/po/pt_BR.po,
+ share/po/ro.po, share/po/ru.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 (Arpad Biro)
+
+2005-02-14 15:42 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: detect.pm, printerdrake.pm: - Allow
+ setting the network printer auto-detection timeout in expert mode
+ - Let network not be scanned by default during printer
+ auto-detection in beginner's mode
+
+2005-02-14 15:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (isTVcard) perl_checko cleanup
+
+2005-02-14 15:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.26mdk
+
+2005-02-14 15:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules/any_conf.pm: (remove_module) handle removal
+ of cards (#7049)
+
+2005-02-14 15:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: handle removal of
+ cards (#7049)
+
+2005-02-14 13:13 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm: - Fixed bug of network printers
+ without DNS hostname entry not detected - Longer timeouts for
+ "ping", as some network printers were missed - Suppressed stderr
+ output of called command line tools
+
+2005-02-14 12:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: better style
+
+2005-02-14 11:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (probeSerialDevices) simplify
+
+2005-02-14 08:33 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/lang.pm: Modified font settings for zh_CN and zh_TW,
+ 10pt would be fine to New Sung rather than 14pt.
+
+2005-02-14 01:29 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: Updates from Eskild Hustvedt:)
+
+2005-02-14 00:02 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: Allow HPLIP
+ setup also when setting up the print queue manually.
+
+2005-02-13 22:30 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: Updated Dutch (nl) translation by
+ Reinout van Schouwen <reinout@cs.vu.nl> * drakconf, DrakX
+
+2005-02-13 20:38 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-02-13 18:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: protect against bad depth (may
+ occur on ppc?)
+
+2005-02-13 09:27 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ja.po: updated Japanese file
+
+2005-02-12 22:14 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cy.po: updated Welsh file
+
+2005-02-12 16:02 Michal Bukovjan <bukovjan at mbox.dkm.cz>
+
+ * perl-install/share/po/cs.po: Updated Czech translations
+
+2005-02-12 15:52 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, eu.po: updated Basque file
+
+2005-02-12 13:36 rstandtke
+
+ * perl-install/share/po/de.po: some additions
+
+2005-02-11 22:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add leedslite crypto driver (from
+ kernel-multimedia)
+
+2005-02-11 22:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/Makefile: list drivers in pcitable but not in list_modules
+
+2005-02-11 22:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add sedlfax driver
+
+2005-02-11 22:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add sis190 gigabit driver
+
+2005-02-11 21:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add adm8211 wireless driver (from
+ kernel-multimedia)
+
+2005-02-11 21:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: align
+
+2005-02-11 21:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm, kernel/list_modules.pm: add
+ snd-hdspm & snd-indigo
+
+2005-02-11 21:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm, kernel/list_modules.pm: add
+ snd-emu10k1x
+
+2005-02-11 21:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add cx88-blackbird and cx8800 drivers to
+ multimedia/tv
+
+2005-02-11 20:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add rhineget ethernet driver
+
+2005-02-11 20:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add avmfritz ISDN driver
+
+2005-02-11 20:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add w6692pci ISDN driver
+
+2005-02-11 20:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add dmx3191d SCSI driver
+
+2005-02-11 20:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add r8180 wireless driver (from
+ kernel-multimedia)
+
+2005-02-11 19:01 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-02-11 18:40 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Sort media names in recapitulative
+ message
+
+2005-02-11 17:02 Sergey Ribalchenko <fisher at obu.ck.ua>
+
+ * perl-install/share/po/uk.po: translation update
+
+2005-02-11 16:41 Frederic Crozat <fcrozat at mandriva.com>
+
+ * perl-install/share/rpmsrate: GNOME is now using
+ gnome-volume-manager instead of magicdev
+
+2005-02-11 16:40 Frederic Crozat <fcrozat at mandriva.com>
+
+ * perl-install/share/rpmsrate: -install GNOME software if GNOME AND
+ KDE are selected at install -install gthumb instead of gqview
+ -install sound-juicer and rhythmbox for sound and GNOME
+
+2005-02-11 16:25 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/lang.pm: Don't use the RPM_LANG_INSTALL environment
+ variable anymore
+
+2005-02-11 16:20 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Arabic translation + a few fixes
+
+2005-02-11 16:15 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Updated and fixed translation.
+
+2005-02-11 15:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.25mdk
+
+2005-02-11 15:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: fix removing a PCMCIA
+ controller
+
+2005-02-11 15:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/: advertising/10.pl, po/af.po, po/am.po,
+ po/ar.po, po/az.po, po/be.po, po/bg.po, po/bn.po, po/br.po,
+ po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po,
+ po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po,
+ po/fi.po, po/fr.po, po/fur.po, po/ga.po, po/gl.po, po/he.po,
+ po/hi.po, po/hr.po, po/hu.po, po/id.po, po/is.po, po/it.po,
+ po/ja.po, po/ko.po, po/ky.po, po/lt.po, po/ltg.po, po/lv.po,
+ po/mk.po, po/mn.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po,
+ po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po,
+ po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po,
+ po/ta.po, po/tg.po, po/th.po, po/tl.po, po/tr.po, po/uk.po,
+ po/uz.po, po/uz@Latn.po, po/vi.po, po/wa.po, po/zh_CN.po,
+ po/zh_TW.po: fix CD-ROM acronym
+
+2005-02-11 15:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/pkgs.pm: do not favor perl-GTK
+
+2005-02-11 15:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm, perl-install/modules.pm: add
+ various/crypto category (support for hardware accelerated crypto)
+
+2005-02-11 15:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: (write_preload_conf) preload padlock
+ driver for VIA C3 that have RNG (crypto hw) enabled
+
+2005-02-11 14:25 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Arabic translation
+
+2005-02-10 22:03 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2005-02-10 19:34 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fr.po, sl.po: updated Slovenian file
+
+2005-02-10 19:27 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Sync with arabic translation CVS
+
+2005-02-10 18:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * docs/HACKING: add another required package (dmraid)
+
+2005-02-10 18:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install hotkeys even when KDE isn't
+ selected
+
+2005-02-10 18:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/list: include dmraid
+
+2005-02-10 17:57 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-02-10 17:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (isTVcard) better style
+
+2005-02-10 17:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (probeSerialDevices) really
+ "install" serial modules
+
+2005-02-10 16:44 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/fr.po: updated French file
+
+2005-02-10 15:48 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ja.po: updated Japanese file
+
+2005-02-10 15:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: typo fix in 10.2-0.24mdk's
+ changelog
+
+2005-02-10 15:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.24mdk
+
+2005-02-10 15:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakxtv: do not complain about no tv
+ cards when there're but they do not require any configuration
+ beyond loading proper module (#7443, #11270 and the like)
+
+2005-02-10 15:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (isTVcard) only look for drivers
+ configurable by drakxtv
+
+2005-02-10 15:24 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Tell that card reader is
+ USB storage in the HPLIP help text only if the device is actually
+ connected via USB.
+
+2005-02-10 15:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getTVcards) rely on
+ "multimedia/tv" category
+
+2005-02-10 15:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: (write_preload_conf) typo fix
+
+2005-02-10 15:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: (write_preload_conf) rely on
+ "multimedia/tv" category, thus managing more TV cards
+
+2005-02-10 15:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: do not detect speakers as
+ keyboards
+
+2005-02-10 15:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: rely on new "multimedia/webcam"
+ category for detecting webcams
+
+2005-02-10 15:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: cyber2000fb and ov518_decomp are webcam
+ drivers, not tv ones
+
+2005-02-10 15:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: mod_quickcam is now quickcam in
+ kernel-2.6.x
+
+2005-02-10 15:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: split multimedia/tv into multimedia/tv
+ and multimedia/webcam
+
+2005-02-10 12:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix 10.2-0.23mdk's changelog
+
+2005-02-10 12:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.23mdk
+
+2005-02-10 11:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add another pci radio driver
+
+2005-02-10 11:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: (write_preload_conf) minimal joystick
+ support: preload proper modules (though only those on sound cards
+ from Creative Labs and Fortemedia are detectable by
+ pci_probe()...)
+
+2005-02-10 11:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: (write_preload_conf) simplify and
+ support multiple different AGP controllers (though unprobable)
+
+2005-02-10 11:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: (write_preload_conf) minimal DVB
+ support: preload proper modules
+
+2005-02-10 11:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm, perl-install/detect_devices.pm: add
+ various/serial category and thus add support for mice and modems
+ connected to multiport serial cards
+
+2005-02-10 11:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm, perl-install/modules.pm: add
+ various/laptop category (only toshiba is detectable by
+ pci_probe() though...)
+
+2005-02-10 11:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm, perl-install/detect_devices.pm: add
+ network/modem category, thus adding support for ACP (Mwave)
+ modems
+
+2005-02-10 11:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mygtk2.pm: (main) fix FileSelection (inactive &
+ unusable window)
+
+2005-02-10 11:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix ndiswrapper installing:
+ always install it if needed (btw run faster if already installed)
+
+2005-02-10 11:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix stepping back from lan
+ interface step (impossible when using ndiswrapper and when
+ there's only one interface)
+
+2005-02-10 11:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: simplify ndiwrapper step
+ chaining
+
+2005-02-10 11:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-02-10 11:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: logibusmouse has been replaced by logibm
+ in kernel-2.6.x
+
+2005-02-10 11:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: atixlmouse and msbusmouse have been
+ replaced by inport in kernel-2.6.x
+
+2005-02-10 11:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: serial is now generic_serial for both
+ kernels 2.4.x and 2.6.x
+
+2005-02-10 04:53 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: - Added help
+ text for printers used with HPLIP. - Let "ask_warn()" messages
+ not embed in the wizard, this breaks the "Cancel" button (help
+ texts when MF device queue is added).
+
+2005-02-09 22:41 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-02-09 21:55 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: Added reading the printing
+ technology type in the HPLIP model database.
+
+2005-02-09 20:09 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/es.po: updated po file
+
+2005-02-09 19:29 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/it.po: updated Italian file
+
+2005-02-09 18:41 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: Added automatic
+ setup of HP printers with HPLIP.
+
+2005-02-09 18:40 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: * translate the word "daemon" to
+ norwegian * various corrections
+
+2005-02-09 18:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.22mdk
+
+2005-02-09 18:03 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: updated
+
+2005-02-09 17:32 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/ugtk2.pm: Add the possibility to call a callback
+ just after widget initialisation in
+ ask_browse_tree_info_given_widgets().
+
+2005-02-09 17:02 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/rpmsrate: Arabic-only fonts are useless for
+ "fa" or "ur" locales
+
+2005-02-09 17:00 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: changed arabic font for KDE ("Roya" doesn't
+ have ascii glyphs; "Terafik" does)
+
+2005-02-09 16:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/fa.po: updated Persian file
+
+2005-02-09 15:26 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, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.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-02-09 14:29 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, 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/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/pl.po, share/po/pt.po,
+ share/po/pt_BR.po, share/po/ro.po, share/po/ru.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: Make an error message more user-friendly
+
+2005-02-09 14:13 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: make perl_checko, the little bot,
+ happy
+
+2005-02-09 13:54 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Remove "Cancel" button from the
+ supplementary media selection window
+
+2005-02-09 13:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: nb.po, sv.po: updated Swedish and
+ Norwegian files
+
+2005-02-09 13:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: perl_checker fixes
+
+2005-02-09 12:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/fs.pm: (mount) let's support ntfs and reorder fs
+ list btw (#3653)
+
+2005-02-09 12:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: handle ntfs at install time (#3653)
+
+2005-02-09 12:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.21mdk
+
+2005-02-09 12:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: add bug reference in 10.1-14mdk's
+ changelog
+
+2005-02-09 11:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: prevent adding
+ spurious empty lines at end of /etc/hotplub/blacklist on stop
+
+2005-02-09 11:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: list skge gigabit driver (new in kernels
+ 2.6.11-rcX-mmY)
+
+2005-02-09 11:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: list all ide drivers (thus enabling to
+ modularize ide drivers)
+
+2005-02-09 11:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix ugly typo (especially causing
+ acpi to not be set in drakboot --boot)
+
+2005-02-09 03:22 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: Added subroutine to parse HPLIP
+ device database XML file.
+
+2005-02-08 22:51 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: complete translation from Eskild:)
+
+2005-02-08 21:12 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Updated device destinctions
+ for HPOJ to the newest models.
+
+2005-02-08 20:58 vljubovic
+
+ * perl-install/share/po/bs.po: Update translation
+
+2005-02-08 20:25 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cy.po: updated Welsh file
+
+2005-02-08 19:01 Pablo Saratxaga <pablo at mandriva.com>
+
+ * 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, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.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-02-08 18:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/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-02-08 18:33 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: updated pot file
+
+2005-02-08 18:25 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: translatable string already
+ in use
+
+2005-02-08 17:58 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: Fixed (worked around?) bug of
+ parallel HP MF devices not being set up correctly with HPOJ
+ (probably bad interaction with udev).
+
+2005-02-08 17:57 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-02-08 17:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: when the partition table is empty, try to
+ see if we are not using the plain disk
+
+2005-02-08 17:09 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_steps_gtk.pm, 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/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/pl.po,
+ share/po/pt.po, share/po/pt_BR.po, share/po/ro.po,
+ share/po/ru.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: Better wording for a couple
+ of strings
+
+2005-02-08 16:17 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/fr.po: updated French file
+
+2005-02-08 16:16 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po, uk.po, uz.po,
+ uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2005-02-08 16:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/type.pm: add iso9660 in isOtherAvailableFS
+
+2005-02-08 16:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: allow mounting isOtherAvailableFS
+ filesystems read-only
+
+2005-02-08 15:57 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: gl.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, pl.po,
+ pt.po, pt_BR.po: updated pot file
+
+2005-02-08 15:41 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: detect.pm, printerdrake.pm: - Prevented
+ restarting of HPOJ and reloading the parallel port kernel modules
+ when printerdrake's queue generator is called by the hotplug
+ script.
+
+2005-02-08 15:37 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - Corrected recognition of driver
+ name in Foomatic-generated PPDs. - Conserve auto-detection data
+ when a Foomatic printer entry is replaced by an entry from a
+ native PostScript PPD.
+
+2005-02-08 15:31 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/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: updated pot file
+
+2005-02-08 15:21 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: Don't propose to copy RPMs on
+ disk for ISO installation method
+
+2005-02-08 14:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-27.5.101mdk
+
+2005-02-08 14:42 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, tr.po: updated pot file
+
+2005-02-08 14:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakbug: cleanup this mess
+
+2005-02-08 13:51 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/drakbug: "%s" is not a translatable thing
+ (changed N() -> translate())
+
+2005-02-08 13:49 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: keyboard.pm, share/keyboards.tar.bz2: synchronized
+ keyboards with X11; added second bengali layout; make Serbian
+ cyrillic use Serbian latin (isntead of "us") for latin layout
+
+2005-02-08 13:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/type.pm: detect iso9660 filesystem
+
+2005-02-08 12:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.20mdk
+
+2005-02-08 12:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: start automatically net_applet in
+ fluxbox and XFce4 too
+
+2005-02-08 12:37 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/probing.c, perl-install/fs.pm,
+ perl-install/install2.pm, perl-install/modules.pm: new kernel
+ doesn't like usbdevfs any more, it wants usbfs
+
+2005-02-08 12:17 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/data.pm: Added hplip-model-data package to
+ be installed.
+
+2005-02-08 11:34 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * docs/HACKING: Add some more necessary RPMs
+
+2005-02-08 11:33 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * Makefile: "images" target is phony
+
+2005-02-08 10:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/format.pm: workaround perl limitation
+
+2005-02-08 10:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: {rwindow} is more probably a
+ mygtk2::MagicWindow
+
+2005-02-08 09:01 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ja.po: updated Japanese file
+
+2005-02-08 08:56 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/any.pm: Allow upper case letters in users' real
+ names.
+
+2005-02-08 03:47 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Menus and some more translation
+ fixes.
+
+2005-02-08 01:12 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Limited automatically
+ generated print queue names to 12 characters and warn user if he
+ manually enters longer names. Names longer than 12 characters
+ will make the printer unaccessible for certain Windows clients
+ (bug #12674).
+
+2005-02-07 23:31 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Some more translation fixes.
+
+2005-02-07 22:38 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fa.po, zh_TW.po: updated Farsi file
+
+2005-02-07 22:19 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: First round of translation fixes
+ ended...
+
+2005-02-07 21:34 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: conflicts between 1.336 & 1.337
+ solved
+
+2005-02-07 21:01 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2005-02-07 20:45 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/wa.po: updated Walloon file
+
+2005-02-07 20:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * 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, pl.po, pt.po, pt_BR.po, ro.po, ru.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-02-07 20:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/DrakX.pot: updated pot file
+
+2005-02-07 19:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: select manual adsl connection
+ type if the network interface was static
+
+2005-02-07 19:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: add missing methods
+
+2005-02-07 17:35 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/printerdrake: Adjusted version number.
+
+2005-02-07 17:33 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/data.pm: Use "hplip-hpijs" for HPIJS
+ package.
+
+2005-02-07 17:32 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/share/rpmsrate: Updated rpmsrate for new printing
+ packages
+
+2005-02-07 14:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: handle new qla4xxx driver
+
+2005-02-07 14:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: handle new arcmsr driver (from
+ kernel-2.6.11-rc3-mm1)
+
+2005-02-07 13:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add new ISDN driver hfc4s8s_l1
+
+2005-02-07 13:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add new PCMCIA drivers from
+ kernel-2.6.11-rc3
+
+2005-02-07 13:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: ->get('window-position') should be done
+ on real_window
+
+2005-02-07 12:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: do not require perl-Gnome2-Gconf
+ in drakxtools, but use gconftool-2
+
+2005-02-07 11:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: make it easy to use other GConf
+ interfaces
+
+2005-02-07 10:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: really fix "Graphical
+ interface - not configured" bug
+
+2005-02-07 10:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/mount_options.pm: ensure some options are not set
+ for directories_needed_to_boot (bugzilla #13433)
+
+2005-02-07 10:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: fix setting @hdlists when
+ deselectionAllowed is false
+
+2005-02-07 02:46 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: More translation fixes.
+
+2005-02-06 22:11 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: More translation fixes.
+
+2005-02-06 18:34 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: More translation fixes.
+
+2005-02-06 16:35 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Fixed translations.
+
+2005-02-06 13:15 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/data.pm: Added "hplip-hpijs-ppds" to be
+ installed when printerdrake is started.
+
+2005-02-06 03:14 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: data.pm, printerdrake.pm: Adapted
+ printerdrake to new printer drivers packages.
+
+2005-02-05 12:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: remove useless message
+
+2005-02-05 12:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: \w can match non-ascii characters, so
+ expanding it (bugzilla #13432). It would be better to remove
+ accents, but i don't know how to do it easily
+
+2005-02-05 04:52 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2005-02-05 04:48 Warly <warly at mandriva.com>
+
+ * perl-install/install_any.pm: fix copy_rpms_on_disks
+
+2005-02-05 03:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: netconnect.pm, tools.pm: basic ndiswrapper
+ support
+
+2005-02-05 01:56 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: changed LANGUAGE value for languages that
+ will need renaming in the future (ph->fil, ltg->LTG)
+
+2005-02-04 21:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: gnome proxy support in drakproxy
+
+2005-02-04 19:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.19mdk
+
+2005-02-04 19:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: handle bpalogin service
+
+2005-02-04 19:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: perl_checker fixes
+
+2005-02-04 18:56 Warly <warly at mandriva.com>
+
+ * perl-install/share/logo-mandrake.png: beta 10.2 logo
+
+2005-02-04 18:47 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Better version to install urpmi with
+ copied RPMs
+
+2005-02-04 18:38 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Make install_urpmi work when having
+ copied every RPM on disk
+
+2005-02-04 17:51 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fr.po, zh_TW.po: updated French file;
+ corrected syntax errors in Chinese file
+
+2005-02-04 17:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add bpalogin support for
+ cable connections
+
+2005-02-04 17:05 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: call hdInstallPath only once
+
+2005-02-04 16:34 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/vi.po: updated Vietnamese file
+
+2005-02-04 16:11 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Remove a debug trace, and
+ perl_checker fixes
+
+2005-02-04 15:51 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps.pm,
+ install_steps_gtk.pm, install_steps_interactive.pm, pkgs.pm: Add
+ support to copy all RPMs to the hard drive before installation.
+
+2005-02-04 15:36 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: Untranslated string
+
+2005-02-04 09:31 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/zh_TW.po: Fix zh_TW problem
+
+2005-02-04 06:08 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2005-02-03 19:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/main.pm: in auto, $raw_X non empty is "ok"
+
+2005-02-03 19:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.18mdk
+
+2005-02-03 18:13 rstandtke
+
+ * perl-install/share/po/de.po: some additions
+
+2005-02-03 16:26 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Arabnic translation
+
+2005-02-03 15:45 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: updated
+
+2005-02-03 15:23 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: CAT_X at Pixel's suggestion
+
+2005-02-03 15:08 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Always install mozilla-firefox when
+ NETWORKING_WWW is selected
+
+2005-02-03 14:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table.pm: cleanup
+
+2005-02-03 13:02 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ja.po: updated Japanese file
+
+2005-02-02 18:06 vljubovic
+
+ * perl-install/share/po/bs.po: Updating Bosnian translation
+
+2005-02-02 18:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/isdn.pm: fix capi kernel drivers
+ installation
+
+2005-02-02 18:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/isdn.pm: fix capi kernel drivers
+ installation
+
+2005-02-02 15:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: prefer beep-media-player over xmms
+
+2005-02-02 14:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: fix samba port range syntax
+
+2005-02-02 12:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add new uli526x ethernet driver
+
+2005-02-02 12:25 Pixel <pixel at mandriva.com>
+
+ * rescue/: make_partimage_save_rest_all, make_rescue_img: add a
+ basic partimage save_all/rest_all feature
+
+2005-02-02 10:21 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Arabic translation
+
+2005-02-02 10:16 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-02-02 03:10 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2005-02-01 22:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cy.po, it.po: updated Italian and Welsh
+ files
+
+2005-02-01 21:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: supplement previous
+ half-fix
+
+2005-02-01 20:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: port 445 is used for Samba
+ (without NetBios)
+
+2005-02-01 20:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: use new range syntax for
+ smb
+
+2005-02-01 19:32 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2005-02-01 18:25 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: updates
+
+2005-02-01 16:13 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: Restore a bunch of translation that
+ have disappeared
+
+2005-02-01 15:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: like latest rxvt-CJK, rxvt-unicode
+ works fine with SCIM too, but is multilingual too (unlike rxvt)
+
+2005-02-01 15:52 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/po/fr.po: Update
+
+2005-02-01 13:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ga.po: update
+
+2005-02-01 11:48 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Updated translation.
+
+2005-02-01 11:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install rxvt-CJK with the same
+ priority as rxvt
+
+2005-02-01 11:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-02-01 10:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: check the given mount
+ points
+
+2005-02-01 10:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, loopback.pm, diskdrake/interactive.pm:
+ $hd is now unused, no need to pass it
+
+2005-02-01 10:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/type.pm: ensure isLVM() works on both the VG and
+ the partitions (isLVM() on a part was already used once in
+ fsedit::check_mntpoint())
+
+2005-02-01 10:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/lvm.pm: ensure {lv_name} is set for LVM partitions
+
+2005-01-31 21:44 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sv.po: updated Swedish file
+
+2005-01-31 21:40 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/eu.po: updated Basque file
+
+2005-01-31 17:56 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/.cvsignore, mdk-stage1/Makefile, mdk-stage1/modules.c,
+ mdk-stage1/network.c, mdk-stage1/network.h,
+ mdk-stage1/newt-frontend.c, mdk-stage1/stage1.c,
+ rescue/make_rescue_img: add a dhcp-client built using mdk-stage1
+ code
+
+2005-01-31 17:06 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/stage1.c: - have nothing talking about interactive
+ when SPAWN_INTERACTIVE is unset - same for SPAWN_SHELL
+
+2005-01-31 15:52 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/es.po: updated Spanish file
+
+2005-01-31 15:49 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/fr.po: updated French file
+
+2005-01-31 15:46 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/fr.po: updated French file
+
+2005-01-31 13:22 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: don't remove ending zeroes, it causes pbs: - it
+ seems some zeroes are used (at least for network.img) - loopback
+ mounted images can't be used - cdrom.img can't be used in mkisofs
+ anymore
+
+2005-01-30 22:18 Michal Bukovjan <bukovjan at mbox.dkm.cz>
+
+ * perl-install/share/po/cs.po: Updated Czech translations.
+
+2005-01-30 18:12 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, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.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-01-30 15:06 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, 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, pl.po, pt.po, pt_BR.po, ro.po, ru.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: s/Disk/Hard Disk/. from Harddrake
+
+2005-01-30 14:55 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/harddrake/data.pm: s/Disk/Hard Disk/
+
+2005-01-30 11:52 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2005-01-29 10:22 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Small corrections (väljalasketeave
+ -> info väljalaske kohta + kasutaja õige -> lisa kasutaja).
+
+2005-01-28 19:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (console_font_files) perl_checker cleanup
+
+2005-01-28 19:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: perl_checker cleanup
+
+2005-01-28 17:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (configure_eth_aliases)
+ simplify
+
+2005-01-28 14:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/pt_BR.po: typo fix (#12660)
+
+2005-01-28 14:08 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: Makefile, modules.c: only prompt for "Additional
+ Drivers floppy" for network
+
+2005-01-28 13:53 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/modules.c: don't prompt if no modules, otherwise "Ok"
+ in ask_from_list_comments() gets a segfault
+
+2005-01-28 13:41 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/stage1.c: ensure switching between different install
+ methods do not break due to IMAGE_LOCATION (/sysroot/tmp/image
+ can be either symlink or a directory)
+
+2005-01-28 12:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: - bump Glib/Gtk+2 requires -
+ 10.2-0.17mdk
+
+2005-01-28 12:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: fix PCMCIA autoconfig
+ in harddrake service
+
+2005-01-28 12:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: make --force force
+ harddrake to eeconfigure everything
+
+2005-01-28 10:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fs.pm, fsedit.pm, fs/mount_options.pm, fs/type.pm:
+ - create fs::type::directories_needed_to_boot() and use it - for
+ removable drives used for / /usr and the like, ensure we check it
+ at boot time (bugzilla #13283)
+
+2005-01-28 07:07 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/es.po: updated po file
+
+2005-01-28 06:08 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/it.po: updated Italian file
+
+2005-01-28 06:01 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/am.po: updated Amharic file
+
+2005-01-27 21:59 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakbug: - vincent danen patch (barely
+ tested)
+
+2005-01-27 18:34 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * make_boot_img: Don't default the boot.iso to cdrom installation
+ method (Pixel). This also fixes bug #13279.
+
+2005-01-27 16:41 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates soft/control-center/po/da.po
+ gi/perl-install/share/po/da.po soft/drakstats/po/da.po
+
+2005-01-27 13:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: typo fix
+
+2005-01-27 12:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/format.pm: remove log
+
+2005-01-27 12:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/raid.pm: switch back to auto=yes :
+
+ > > the only problem with auto=yes is that it ignores the minor
+ number
+ > > specified and always uses the first avaliable minor number,
+ so you might
+ > > find /dev/md2 with minor 0, /proc/mdstat will call it based
+ on minor
+ > > number. This is going to get really confusing for users.
+ > > I was planning to fix this in upstream source, but i have not
+ been able
+ > > to find time to do it yet.
+ >
+ > ok, i fixed that in mdadm-1.8.0-2mdk
+ > there is a new option (auto=dev) that will create the device
+ file with
+ > the correct minor number based on the device name.
+ > so please put auto=dev instead of auto=yes in the
+ /etc/mdadm.conf
+ >
+ please hold the auto=dev change, the mdadm author feel this
+ should be the default behaviour for auto=yes, so i will upload a
+ new mdadm-1.9.0-0pre1.1mdk with fully working auto as soon as i
+ return to italy (this weekend i believe)
+
+2005-01-27 12:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/raid.pm: fix "mdadm package not installed" during
+ install (bugzilla #13259)
+
+2005-01-26 22:28 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: Updated Norwegian Nynorsk
+ translation.
+
+2005-01-26 22:13 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Wizard, System Backup
+ configuration problems (#13235)
+
+2005-01-26 18:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table.pm: nicer description() (esp. when
+ the size is 0)
+
+2005-01-26 17:36 Pixel <pixel at mandriva.com>
+
+ * kernel/modules.pl: loopback modules are needed on every images
+ (bugzilla #13215)
+
+2005-01-26 17:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: fix commented code :)
+
+2005-01-26 17:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: drakx_version() is now in install_any
+
+2005-01-26 17:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: Makefile, Makefile.drakxtools, drakxtools.spec,
+ standalone/convert: - move convert script from spec file into
+ standalone/convert - btw, do not try converting if uneeded
+
+2005-01-26 15:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.16mdk
+
+2005-01-26 14:57 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: have floppy images as small as possible
+
+2005-01-26 14:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, install_any.pm: drakx_version() is now in
+ install_any and use getFile() to get VERSION
+
+2005-01-26 13:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: xorg_version is 6.8.2
+
+2005-01-26 10:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: fix return value of method calls on
+ MagicWindow
+
+2005-01-26 10:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: ->size_request doesn't return anything on
+ the box, it is better done on the window (for rpmdrake)
+
+2005-01-26 10:05 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-01-26 09:55 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: main kernel should be i586-up-1GB to run on
+ C3 (bugzilla #13206)
+
+2005-01-26 09:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/network.pm: fix (bugzilla #13197)
+
+2005-01-25 23:00 rstandtke
+
+ * perl-install/share/po/de.po: some additions and fixes
+
+2005-01-25 18:38 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: do_pkgs.pm, drakxtools.spec: Use the new --gui
+ option to urpmi for the drakxtools to ask for media change;
+ update the dependency of drakxtools on urpmi version accordingly.
+ Remove dependency on gurpmi.
+
+2005-01-25 16:15 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: build all.img (even for the non BOOT kernel), this
+ works for usb keys
+
+2005-01-25 16:14 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: don't pass $mnt around, use directly $tmp_mnt
+
+2005-01-25 14:31 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: factorize code in VERSION()
+
+2005-01-25 14:26 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: add comment
+
+2005-01-25 14:25 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: simplify (same timeout for everyone)
+
+2005-01-25 14:21 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: create syslinux_all_files() out of isolinux(), and
+ use it for boot_iso()
+
+2005-01-25 14:04 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: create syslinux_cfg_all() and cleanup using it
+
+2005-01-25 13:51 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: simplify (and remove entry "all", which is nearly
+ "alt0")
+
+2005-01-25 13:43 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: - factorize code in syslinux_cfg() - change the
+ data structure returned by entries_append()
+
+2005-01-25 13:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-01-25 12:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: fix rpmsrate_always_flags() not
+ applied (bugzilla #13177)
+
+2005-01-25 11:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/format.pm: even if it still takes some time when
+ format is over, we don't want the progress bar to stay at 85%
+
+2005-01-25 10:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: fix previous commit (we don't want
+ devfsd anymore)
+
+2005-01-25 02:51 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Bugzilla 13138, 13139.
+ (portmap check, dhcpd.conf.pxe.include)
+
+2005-01-24 20:15 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ja.po: updated Japanese file
+
+2005-01-24 15:27 Pixel <pixel at mandriva.com>
+
+ * rescue/tree/etc/rc.sysinit: create /var/log
+
+2005-01-24 14:04 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/rpmsrate: Fix duplicate flag in rpmsrate
+
+2005-01-24 12:35 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Updated translation.
+
+2005-01-24 12:28 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cy.po, it.po: updated Welsh and Italian
+ files
+
+2005-01-24 12:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: fix wrong package name
+
+2005-01-23 21:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: removing code setting devfs=mount
+ or devfs=nomount
+
+2005-01-23 16:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/raid.pm: put the new option auto=dev instead of
+ auto=yes (see mdadm-1.8.0-2mdk)
+
+2005-01-23 14:50 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/eu.po: updated Basque file
+
+2005-01-22 21:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/: diskdrake/hd_gtk.pm, standalone/drakboot,
+ standalone/drakfloppy, standalone/drakfont, standalone/drakperm,
+ standalone/draksec, standalone/draksplash, standalone/drakups,
+ standalone/harddrake2, standalone/logdrake,
+ standalone/printerdrake: fix the various transient on {rwindow}
+ (or even {window} ?) not working anymore on the MagicWindow
+ (maybe the code could be simplified since it should now work even
+ when embedded (?))
+
+2005-01-22 19:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: allow using {real_window} instead of
+ {rwindow}{real_window} (esp. for set_transient_for for which we
+ can't easily do some magic)
+
+2005-01-22 17:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/eu.po: updated Basque file
+
+2005-01-22 14:57 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2005-01-22 13: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, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.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-01-21 20:34 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Drop quasi-pxe setup in
+ dhcp.conf as we can use real pxe now. Perl_checker fixes.
+
+2005-01-21 16:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.15mdk
+
+2005-01-21 16:22 Warly <warly at mandriva.com>
+
+ * isolinux-graphic.bmp, isolinux-graphic-simple.bmp: Test image for
+ 10.2 beta
+
+2005-01-21 15:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/main.pm: fix check_valid()
+
+2005-01-21 15:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/main.pm: - rename Xconfig::main::is_valid()
+ to Xconfig::main::check_valid() and return the cause of the error
+ - ensure an empty config file doesn't make it display "Your Xorg
+ configuration file is broken..."
+
+2005-01-21 14:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: do show_all on the real window (this is
+ used by drakloop)
+
+2005-01-21 13:55 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/printerdrake: - main loop fix - remove
+ dead code - cleanups
+
+2005-01-21 12:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.14mdk
+
+2005-01-21 12:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: tag devices as bridges later so
+ that pcmcia controllers got a chance to be detected
+
+2005-01-21 11:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: updates from baud: - add
+ "Czech Republic|Cesky Telecom" - add "Switzerland|Tiscali.ch" -
+ add "Tunisia|Planet.tn" - add dns servers to "Israel|Bezeq"
+
+2005-01-21 11:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.13mdk
+
+2005-01-21 11:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/printerdrake: fix subdialogs when
+ embedded in mcc
+
+2005-01-21 11:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/printerdrake: fix banner's title by
+ initializing mcc domain before ugtk2
+
+2005-01-21 11:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: br.po: typo fixes
+
+2005-01-21 10:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/: keyboard.pm, standalone/keyboarddrake: minimal
+ XkbModel support
+
+2005-01-21 10:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/raid.pm: - don't write /etc/mdadm.conf when no raid
+ - use option "auto=yes" in mdadm.conf to ensure mdadm will create
+ /dev/mdX devices when needed (those are not there when using
+ udev and neither kernel raid autostart nor initrd created the
+ raid)
+
+2005-01-20 18:57 Pixel <pixel at mandriva.com>
+
+ * rescue/dirs: not useful anymore (maybe others are unneeded too?)
+
+2005-01-20 18:56 Pixel <pixel at mandriva.com>
+
+ * rescue/tree/etc/rc.sysinit: we want /mnt at the root of the
+ rescue
+
+2005-01-20 18:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/: network/ethernet.pm, network/shorewall.pm,
+ standalone/drakconnect: restore previous
+ network::ethernet::get_eth_cards_names() behaviour (i got hit by
+ { map ... }; being a block and not a hash ref)
+
+2005-01-20 17:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/commands.pm: add lspcidrake
+
+2005-01-20 16:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm, perl-install/harddrake/sound.pm: snd-azx
+ was renamed as snd-hda-intel in ALSA's CVS, so let's prepare
+ ground for future
+
+2005-01-20 15:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/modules.pl: handle disk install from SATA drives
+
+2005-01-20 14:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_any.pm: (default_packages) simplify through
+ modules::append_to_modules_loaded_at_startup_for_all_kernels()
+
+2005-01-20 14:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm:
+ (append_to_modules_loaded_at_startup_for_all_kernels) introduce
+ it (wrapper around append_to_modules_loaded_at_startup())
+
+2005-01-20 14:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_any.pm: (default_packages) handle buggy
+ laptops that're unusable without laoding acerhk module
+
+2005-01-20 13:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: - farsync & sdladrv are wan drivers, so
+ move them out of ethernet list into new wlan list - list other
+ wlan drivers
+
+2005-01-20 13:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: fix typo in comment
+
+2005-01-20 13:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add missing drivers: - pcips2 serial
+ driver - dpc7146 & zr36067 tv drivers
+
+2005-01-20 13:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add missing cx8800 tv driver
+
+2005-01-20 13:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add missing drivers: - synclinkmp serial
+ driver - sungem & sunhme net drivers - fm801-gp, lightning, ns558
+ & vortex joystick driver - it821x & megaraid_mbox RAID driver
+ (first new one being new in 2.6.10, second one having been
+ added in 10.1_64bit)
+
+2005-01-20 13:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules/interactive.pm:
+ (load_category__prompt_for_more) - fix missing help for SCSI -
+ display it too for non SCSI disks that're handled as SCSI ones
+ (USB, Firewire, SATA, raid ...)
+
+2005-01-20 13:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/modules.pl: sync with list_modules.pl
+
+2005-01-20 12:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: comment
+
+2005-01-20 12:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm, perl-install/install_steps.pm,
+ perl-install/install_steps_interactive.pm,
+ perl-install/modules.pm, perl-install/modules/interactive.pm:
+ move SATA in its own category
+
+2005-01-19 18:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/keyboarddrake: use ->ask_from instead of
+ ->ask_from_listf (keeping the same GUI behaviour)
+
+2005-01-19 17:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: (switch) add hint for translator
+
+2005-01-19 12:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.12mdk
+
+2005-01-19 10:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakconnect: adapt to new
+ network::ethernet::get_eth_cards_names() prototype
+
+2005-01-19 00:20 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/gl.po: corrected "default:LTR" translation
+
+2005-01-19 00:18 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: am.po, eu.po, uz.po, uz@Latn.po: updated
+ Basque files; corrected "<control>X" translations for non-latin
+ keyboards
+
+2005-01-18 19:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: fix generating compssUsers.flat (was broken
+ because of the CAT_xxx switch)
+
+2005-01-18 18:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: fix broken focus during install
+
+2005-01-18 17:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/commands.pm: fix *old* typo
+
+2005-01-18 14:51 Pixel <pixel at mandriva.com>
+
+ * Makefile: fix building images
+
+2005-01-18 14:42 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/rescue-gui.c: VERSION is now DISTRIB_VERSION
+
+2005-01-18 14:39 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/Makefile: include gi/Makefile.config to have
+ DISTRIB_DESCR defined
+
+2005-01-18 14:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: auto_install compatibility:
+ CAT_SYSTEM used to be selected by default
+
+2005-01-17 21:11 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Bugzilla 13056 - custom cron
+ setup
+
+2005-01-17 21:09 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Bugzilla 13056 - custom cron
+ configuration
+
+2005-01-17 20:42 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: Updated translation.
+
+2005-01-17 20:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: fix backward compatibility
+
+2005-01-17 18:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: require dmidecode in -backend
+ subpackage
+
+2005-01-16 20:47 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo e jorge
+
+2005-01-16 16:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/main.pm: when reading an existing X config
+ file, ensure it is not too bad, otherwise propose to start from
+ scratch (bugzilla #8548)
+
+2005-01-16 16:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: don't be too picky on uppercase or
+ lowercase sections
+
+2005-01-16 16:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps.pm, Xconfig/main.pm,
+ Xconfig/various.pm: move setupFB() in Xconfig, and do it when
+ needed (including when standalone)
+
+2005-01-16 16:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix syntax error
+
+2005-01-16 16:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: mapdrive should not bother
+ same_entries()
+
+2005-01-16 12:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/XFdrake: make perl_checker happy
+
+2005-01-16 12:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps_interactive.pm, Xconfig/main.pm,
+ standalone/XFdrake: for Driver fbdev, rework to allow configuring
+ vga= in bootloader and telling to reboot instead of restarting X
+ server (now i simply need to configure bootloader in
+ Xconfig::main::write() when need_reboot)
+
+2005-01-16 11:55 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: Updated translation.
+
+2005-01-16 11:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: if the window is
+ not modal, the main XFdrake window can block it :-(
+
+2005-01-16 11:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: fix auto_install graphic card
+ configuration (when one specify the Driver)
+
+2005-01-16 11:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: MagicWindow: - hide is done on the window
+ if popped - show is done on both the window and the child (to
+ handle initial show on the window, and show after a hide on the
+ child)
+
+2005-01-16 09:28 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2005-01-15 19:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: in read_grub(), setting {table} cause
+ write_grub to create a {mapdrive} even when we didn't have one
+ (bugzilla #12307)
+
+2005-01-15 19:00 Pixel <pixel at mandriva.com>
+
+ * Makefile, make_boot_img: add a VERSION file in boot.iso to allow
+ its identification (as suggested on cooker)
+
+2005-01-15 18:57 Pixel <pixel at mandriva.com>
+
+ * kernel/modules.pl: adapt to list_modules.pm changes
+
+2005-01-15 18:56 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm: fix titi! uh, no fix titi's commit
+ (easier) (we should vote for the worse commit ever, 1.137 will
+ have a good place)
+
+2005-01-15 18:44 Pixel <pixel at mandriva.com>
+
+ * Makefile.config, mdk-stage1/Makefile, mdk-stage1/config-stage1.h,
+ mdk-stage1/stage1.c, rescue/Makefile, rescue/make_rescue_img,
+ rescue/tree/etc/issue: factorize the distrib version
+
+2005-01-15 18:16 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm: fix typo
+
+2005-01-15 18:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/format.pm: gtk2 progress bar when formatting ext3
+
+2005-01-15 18:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: change packing for the widgets
+ given
+
+2005-01-15 17:55 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: Updated translation.
+
+2005-01-15 17:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/: mygtk2.pm, ugtk2.pm, interactive/gtk.pm: - move
+ set_main_window_size() from ugtk2 to mygtk2 - call it in
+ MagicWindow creation
+
+2005-01-15 14:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: fix using gtkset with text => ... on a
+ Button
+
+2005-01-15 13:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: allow passing gtk widgets to
+ ->wait_message
+
+2005-01-14 23:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: MagicWindow is now really magic, {rwindow}
+ and {window} can be the same thing :)
+
+2005-01-14 23:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: create wrapper object mygtk2::MagicWindow
+ which handles the {rwindow} vs {window} duality
+
+2005-01-14 23:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: - fix displaying wait_message -
+ restore previous display of the wait_message during install (is
+ that better ?)
+
+2005-01-14 22:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: this warning is stupid
+ during install
+
+2005-01-14 19:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: since dmidecode can fail to
+ properly detect a floppy drive, don't use it during install
+ (where we don't care if it's a bit slow)
+
+2005-01-14 19:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sv.po: updated Swedish file
+
+2005-01-14 18:57 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: More translation
+
+2005-01-14 17:58 Pixel <pixel at mandriva.com>
+
+ * tools/hd_grub.cgi: fix typo
+
+2005-01-14 16:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: fix switching back nsswitch.conf
+ to local authentication (bugzilla #13024)
+
+2005-01-14 16:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: fix crash on opening help
+ windows
+
+2005-01-14 11:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/eo.po: updated Esperanto file
+
+2005-01-14 11:00 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/fr.po: updated po file
+
+2005-01-13 23:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: tag SATA drivers as such
+
+2005-01-13 23:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: 3w-9xxx, 3w-xxxx and mptscsih really are
+ hardware raid
+
+2005-01-13 20:50 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: Updated translation.
+
+2005-01-13 10:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/shorewall.pm: fix bugzilla #12996
+
+2005-01-12 19:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: have separate SizeGroup's for
+ advanced and non advanced entries
+
+2005-01-12 18:59 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: don't die when we can't
+ update_kernel_from_repository
+
+2005-01-12 18:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.11mdk
+
+2005-01-12 17:32 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/stage1.c, perl-install/Makefile: use /etc/init instead
+ of /sbin/init to allow umounting clp in init
+
+2005-01-12 16:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: display the menubar and the
+ banner when embedded
+
+2005-01-12 15:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: we don't need the clp read-write (if
+ it is read-only it allows remounting /mnt ro)
+
+2005-01-12 14:31 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/init.c: fix buggy blino commit which caused install
+ failures to cause reboot without prompting
+
+2005-01-12 14:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/: mygtk2.pm, ugtk2.pm: return the child when
+ MagicWindow is using the $::WizardWindow (otherwise the user of
+ the MagicWindow can destroy the WizardWindow)
+
+2005-01-12 14:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: one more change in 10.2-0.10mdk
+
+2005-01-12 14:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.10mdk
+
+2005-01-12 13:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: write in lilo.conf the global root=
+ (bugzilla #12312)
+
+2005-01-12 13:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/format.pm: remove debug code
+
+2005-01-12 13:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/printerdrake: show banner when embedded
+
+2005-01-12 13:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: rewrite wait_messageW using
+ mygtk2
+
+2005-01-12 13:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: - fix gtkadd() - fix displaying banner -
+ no banner if no ::Wizard_title (as used to be)
+
+2005-01-12 12:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: add user specific shell support in
+ create_user (Nicolas Planel)
+
+2005-01-11 20:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: typo fix
+
+2005-01-11 20:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (dmidecode) do not rerun
+ dmidecode on machines that do not support it
+
+2005-01-11 17:57 Nicolas Planel <nplanel at mandriva.com>
+
+ * perl-install/any.pm: add user specific shell support in
+ create_user
+
+2005-01-11 16:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/: mygtk2.pm, ugtk2.pm, interactive/gtk.pm: create
+ "MagicWindow" in mygtk2 out of ugtk2::new()
+
+2005-01-11 14:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: do not install ivtv packages since
+ it's already in the kernel (it wasn't in our pcitable due to the
+ lack of MODULE_DEVICE_TABLE)
+
+2005-01-11 14:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: ivtv & zaptel dkms packages were
+ renamed
+
+2005-01-11 13:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: mygtk2::_gtk() takes an hash ref to allow
+ checking the resulting hash
+
+2005-01-11 12:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: simplify away thing already done in
+ %window_options
+
+2005-01-11 12:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/: mygtk2.pm, ugtk2.pm: move ugtk2::create_window()
+ to mygtk2::_create_Window()
+
+2005-01-11 12:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/: ugtk2.pm, interactive/gtk.pm: change
+ set_main_window_size() prototype
+
+2005-01-11 12:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/: mygtk2.pm, ugtk2.pm: - create mygtk2::main() - get
+ rid of setting {destroyed}, use a local variable instead
+
+2005-01-11 12:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, run_program.pm: do not log the encrypted
+ password
+
+2005-01-11 12:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: simplify (no need to protect against
+ double destroy anymore)
+
+2005-01-11 12:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: {window}->show is already done in ->new
+
+2005-01-11 11:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: show advanced languages by default
+
+2005-01-11 10:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: better comment
+
+2005-01-11 10:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: the ugly gtkset_mousecursor_wait() done on
+ destroy is not called often nowadays, and not very useful either
+ since the wait cursor is only on the root window, and since
+ install use isWizard, the root window is not often seen. We
+ should at least also set the wait cursor on the $::WizardTable
+
+2005-01-11 10:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/: ugtk2.pm: fix typo
+
+2005-01-11 10:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: - $current_window can be local to ugtk2,
+ so do it that way - create force_keyboard_focus()
+
+2005-01-11 10:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: better comments
+
+2005-01-11 10:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps_gtk.pm, ugtk2.pm, Xconfig/test.pm:
+ we always have force_focus when we have !$::isStandalone, so do
+ it that way and get rid of $ugtk2::force_focus
+
+2005-01-11 09:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps_gtk.pm, ugtk2.pm: remove
+ $ugtk2::force_center_at_pos, inline it instead
+
+2005-01-11 09:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_gtk.pm: cleanup
+
+2005-01-11 09:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_gtk.pm: help size doesn't need anything
+ special anymore
+
+2005-01-11 09:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_gtk.pm: don't fake a ugtk2, use pure
+ mygtk2 instead
+
+2005-01-11 09:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_gtk.pm: no need to set title to 'skip' (it
+ was used by aewm-drakx)
+
+2005-01-11 09:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: no need to set widget name to Title (what
+ was it used for?)
+
+2005-01-11 09:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: more consistent naming
+
+2005-01-11 09:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: help initial positioning of window during
+ install (since position_policy center-on-parent only works with a
+ window manager, we can't get rid of force_center_at_pos)
+
+2005-01-11 09:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: revert bad commit
+
+2005-01-11 09:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_gtk.pm: install_gtk::create_help_window is
+ unused, removing it
+
+2005-01-11 09:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm:
+ install_gtk::create_help_window is unused, removing it
+
+2005-01-11 09:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: add comments
+
+2005-01-10 18:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: move some now common things in
+ _create_window()
+
+2005-01-10 18:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: more installing special install shortcuts
+ in _create_window() (there is no reason for not having the
+ shortcuts when the window has pop_it)
+
+2005-01-10 18:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/: ugtk2.pm, Xconfig/test.pm: - XFdrake test is not
+ standalone, it is the non install nor standalone state (used
+ when there is no window manager) - get rid of now unused
+ $ugtk2::force_center
+
+2005-01-10 18:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: dont_run_directly_stage2 and trace_stage2
+ needs the live, not the clp
+
+2005-01-10 17:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: use {icon_no_error} instead of {icon}
+
+2005-01-10 17:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: create {icon_no_error}
+
+2005-01-10 17:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: rewrite
+
+2005-01-10 17:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: rewrite
+
+2005-01-10 17:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: the test is not useful, we can't get to
+ this code when $::isEmbedded is set
+
+2005-01-10 16:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: emove unused feature
+
+2005-01-10 16:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: $ugtk2::pop_it is unused
+
+2005-01-10 16:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: simplify using {pop_it}
+
+2005-01-10 16:15 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/gl.po: updated Galician file
+
+2005-01-10 16:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Makefile, lang.pm: - add vera fonts (normal and
+ bold) - generate fonts.dir and fonts.cache-1 - take cursor.pcf.gz
+ from system
+
+2005-01-10 16:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list: add /etc/fonts/fonts.conf
+
+2005-01-10 16:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/fonts.tar.bz2: - remove cursor.pcf.gz (now
+ taken from system) - generate fonts.dir and fonts.cache-1
+
+2005-01-10 14:45 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/drakxtools.spec: Require urpmi 4.6.11 (for
+ --expect-install)
+
+2005-01-10 14:44 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/do_pkgs.pm: Add --expect-install to the options
+ passed to urpmi to install packages, so do_pkgs::install() can
+ return 0 or true depending on whether some packages were actually
+ installed.
+
+2005-01-10 13:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install zaptel packages if needed
+
+2005-01-10 13:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: simplify
+
+2005-01-10 13:07 Pixel <pixel at mandriva.com>
+
+ * rescue/list: rsync is useful too
+
+2005-01-10 13:06 Pixel <pixel at mandriva.com>
+
+ * rescue/tree/etc/inittab: use "mingetty --autologin" instead of
+ calling directly "bash --login", that way the shell has a valid
+ controlling terminal (CTTY, accessed via /dev/tty). This is
+ needed for ssh to work
+
+2005-01-10 12:36 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Silent install of
+ terminal-server if needed (--X is deprecated)
+
+2005-01-10 12:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add ivtv driver
+
+2005-01-10 12:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install ivtv packages if needed
+
+2005-01-10 12:22 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Don't use deprecated urpmi
+ --X option
+
+2005-01-10 10:56 Pixel <pixel at mandriva.com>
+
+ * rescue/tree/etc/rc.sysinit: have /dev rw (eg: for /dev/initctl)
+
+2005-01-10 09:57 Pixel <pixel at mandriva.com>
+
+ * rescue/list: add what Lord Packdrakeng.pm request
+
+2005-01-10 09:47 Pixel <pixel at mandriva.com>
+
+ * rescue/list: minimal ssh tools (alas it doesn't on console 1
+ because /dev/tty is allocated properly, it needs fixing)
+
+2005-01-10 09:46 Pixel <pixel at mandriva.com>
+
+ * rescue/dirs: at least be able to mount /dev/pts if needed
+
+2005-01-09 22:35 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-01-09 21:22 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2005-01-08 22:30 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/lang.pm: install scim-chewing if zh is selected by
+ localedrake. Fix font setting for zh_CN.
+
+2005-01-08 19:38 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2005-01-08 18:04 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: Updated translation.
+
+2005-01-07 18:39 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: changed chinese font names
+
+2005-01-07 18:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/rpmsrate: new fonts-ttf-chinese package
+
+2005-01-07 16:38 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ja.po: updated po file
+
+2005-01-07 16:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakclock: simplify
+
+2005-01-07 16:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/: ugtk2.pm, interactive/gtk.pm: $w->{isEmbedded} is
+ unused
+
+2005-01-07 16:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/: ugtk2.pm, interactive/gtk.pm: $w->{isWizard} is
+ unused
+
+2005-01-07 16:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: $o->{force_center} is unused
+
+2005-01-07 15:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: no icon during install
+
+2005-01-07 13:55 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/keyboard.pm: Make %lang2keyboard a global variable,
+ so it can be overriden in a patch file
+
+2005-01-07 11:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: simplify using mygtk2
+
+2005-01-07 11:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: add "Plug"
+
+2005-01-06 21:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-01-06 21:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-01-06 19:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.9mdk
+
+2005-01-06 17:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: simplify
+
+2005-01-06 17:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_gtk.pm: fix typo (thanks to perl_checker)
+
+2005-01-06 17:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/: common.pm, install2.pm, install_any.pm,
+ install_gtk.pm, ugtk2.pm: - move some install specific code out
+ of ugtk2.pm into install_gtk.pm - move some install specific code
+ out of common.pm into install_any.pm
+
+2005-01-06 17:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: - change _create_window() prototype to be
+ more "mygtk2" like - use more mygtk2 properties - create and use
+ wm_icon() (until all this crap is cleaned) (drop $o->{wm_icon}
+ which is unused)
+
+2005-01-06 16:39 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cy.po, et.po: updated Welsh and Estonian
+ files
+
+2005-01-06 15:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: add {icon} for Window
+
+2005-01-06 15:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: merge Window and Dialog creation
+
+2005-01-06 12:10 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/doc/UPDATEMODULES: fix
+
+2005-01-06 11:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: allow setting padding for pack_start, but
+ only globally (it works like spacing, but also include spacing at
+ beginning, and at end)
+
+2005-01-06 11:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: add {position_policy} for Window
+
+2005-01-06 11:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps_interactive.pm, loopback.pm,
+ raid.pm, diskdrake/interactive.pm, fs/format.pm: -
+ fs::format::part_raw() now takes $wait_message to allow
+ displaying the progress of format - create
+ fs::format::wait_message() which creates a $wait_message valid to
+ give to fs::format::part - fs::format::mke2fs() format while
+ parsing the output to display the progress
+
+2005-01-06 11:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fs.pm, install_steps.pm: fs::formatMount_all()
+ parameter wait_message is no more optional (though you can give
+ undef)
+
+2005-01-06 11:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: on a label, we must use
+ ->get_text, not ->get
+
+2005-01-06 11:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: update UIM config for uim-0.4.5 (UTUMI
+ Hirosi)
+
+2005-01-06 10:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/tools.pm: remove unused variables
+
+2005-01-06 10:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/: harddrake/sound.pm, standalone/draksec: remove
+ unused variable
+
+2005-01-06 10:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/shorewall.pm: cleanup unused variables
+
+2005-01-05 22:32 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates soft/urpmi/po/da.po
+ soft/wizard_perl/po/da.po gi/perl-install/share/po/da.po
+
+2005-01-05 18:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.8mdk
+
+2005-01-05 16:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps_interactive.pm: fix selecting
+ "other" keyboard when @best <= 1
+
+2005-01-05 13:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_any.pm: (migrate_device_names) fix message
+
+2005-01-05 12:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/mount_options.pm: don't set fs_type to ext2:vfat
+ for ext3 or reiserfs /home coming from usb key (bugzilla #9827)
+
+2005-01-05 12:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm, perl-install/harddrake/sound.pm: add a
+ couple of new ALSA drivers (from CVS)
+
+2005-01-05 12:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install echomixer if needed
+
+2005-01-05 11:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: part2wild_device_name('', $part) is better
+ than devices::make($part->{device}) (esp. for nfs "devices")
+
+2005-01-05 11:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fs.pm, network/smb.pm: handle spaces in username
+
+2005-01-05 11:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: switch default IM to scim-chewing
+ for zh_TW
+
+2005-01-04 23:57 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/hr.po: updated Croatian file
+
+2005-01-04 23:14 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/lang.pm: backport s/jp/ja/ fix from HEAD
+
+2005-01-04 22:35 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cy.po: updated Welsh file
+
+2005-01-04 21:46 Pixel <pixel at mandriva.com>
+
+ * rescue/list: ld-linux.so.2 is also needed on the rescue :)
+
+2005-01-04 20:04 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/init.c: ensure /tmp/syslog in stage2 contains the full
+ log
+
+2005-01-04 18:25 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/stage1.c: ensure /tmp/syslog in stage2 contains the
+ full log (currently stage2 init was writing in a file shadowed by
+ stage2 copying the /stage1/tmp/syslog over its file)
+
+2005-01-04 15:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install hotkeys in order to have
+ working special keys on internet/multimedia laptop keyboards
+
+2005-01-04 13:57 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2005-01-04 13:52 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, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.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-01-04 12:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: update ADSL ISPs list
+
+2005-01-04 00:17 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Bugzilla 12861 - Directories
+ with spaces Mandrakeclub - Perms too relaxed on tarballs
+ perl_checker compliance
+
+2005-01-04 00:09 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Bugzilla 12861 - Directories
+ with spaces Mandrakeclub - Perms too relaxed on tarballs
+ perl_checker compliance
+
+2005-01-04 00:06 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Bugzilla 12861 - Directories
+ with spaces Mandrakeclub - Perms on tarballs too relaxed
+ perl_checker compliance
+
+2005-01-03 19:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules/interactive.pm: a somewhat nicer message
+ when loading a module
+
+2005-01-03 18:22 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/do_pkgs.pm: '--best-output' is no longer an urpmi
+ option (and it's not necessary anyway since --auto is specified)
+
+2005-01-03 18:01 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm,
+ perl-install/install_steps_interactive.pm,
+ perl-install/harddrake/data.pm, perl-install/network/ethernet.pm,
+ perl-install/network/netconnect.pm,
+ perl-install/network/network.pm: move and rename
+ network::ethernet::get_eth_categories() into
+ list_modules::ethernet_categories() (it's closer to the
+ definition of the categories)
+
+2005-01-03 17:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/: authentication.pm, steps.pm: "Administrator
+ (root)" is more user-friendly than "root"
+
+2005-01-03 17:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add another wifi driver (will be in next
+ kernel)
+
+2005-01-03 17:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_any.pm: (migrate_device_names) try to be
+ smarter with translators
+
+2005-01-03 16:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: default security level is now 3
+
+2005-01-03 16:39 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_steps.pm: Make do_pkgs::install() return the
+ number of packages actually installed (used by printerdrake,
+ apparently)
+
+2005-01-03 16:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/mount_options.pm: remove codepage= option for fs
+ types which don't handle it (eg: ntfs)
+
+2005-01-03 16:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/type.pm: create can_be_one_of_those_fs_types()
+
+2005-01-03 15:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm, kernel/list_modules.pm: add
+ another sparc sound driver
+
+2005-01-03 14:54 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: init.c, stage1.c: ensure /tmp/syslog in stage2
+ contains the full log (currently stage2 init was writing in a
+ file shadowed by stage2 copying the /stage1/tmp/syslog over its
+ file)
+
+2005-01-03 14:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: no clp is not an error
+
+2005-01-03 14:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/: devices.pm, install2.pm, install_any.pm: move
+ mdkinst.clp on hard drive ASAP => allows multi-cd installs even
+ if the mdkinst.clp was not preloaded => allows to better memory
+ handling during pkgs install (hopefully at least)
+
+2005-01-03 13:55 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/tools.c: it's cleaner to have the clp_tmpfs in /tmp (i
+ think it was already that way for move and that i broke it, but
+ who knows?)
+
+2005-01-03 13:30 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cy.po: updated Welsh file
+
+2005-01-03 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, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.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-01-03 11:29 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: - enabled choice of various new
+ keyboard layouts. - don't prepend "us," if there is already a
+ list of layouts
+
+2005-01-03 02:58 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2005-01-03 02:14 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/lang.pm: s/jp/ja. Corrected spelling of locale ja
+
+2004-12-31 19:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_gtk.pm: simplify (we always want the logo,
+ and looking the right path is already done elsewhere)
+
+2004-12-31 19:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: no need to have things twice in
+ _icon_paths()
+
+2004-12-31 11:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list: ldd doesn't say anymore which file
+ ld-linux is, so adding it explicitly
+
+2004-12-31 10:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: better layout: - ensure buttons
+ are at bottom using pack_end instead of packing a growing empty
+ vbox for ask_warn-like dialogs - drop old code - always allow box
+ to grow (this may be wrong)
+
+2004-12-31 10:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: simplify (thanks to
+ perl_checker)
+
+2004-12-31 10:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: remove code using
+ getAndSaveFile to get the X server (we don't have live directory
+ anymore, and anyway we only use one X server)
+
+2004-12-30 18:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: more spacing around the separator and the
+ buttons (as requested by ergonomy team)
+
+2004-12-30 16:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: finish backporting HEAD changes
+ for finish-install (any::write_passwd_user() doesn't exist
+ anymore)
+
+2004-12-29 19:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/: devices.pm, lvm.pm: move device mapper
+ initialisation out of lvm.pm into devices.pm (since it will be
+ useful for other things)
+
+2004-12-29 19:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: simplify and speed up computeGroupSize()
+
+2004-12-29 18:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: in computeGroupSize() - fix old ugly bug
+ (CAT_FOO && CAT_BAR || CAT_FOO was reduced to CAT_FOO &&
+ CAT_BAR) - log the time spent - ignore already selected packages
+ - group by same rpmsrate flags (nice speedup :)
+
+2004-12-29 18:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: when computing group
+ size, select CAT_SYSTEM packages
+
+2004-12-28 18:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: - add can_default - remove known_opts
+ (alike the rest of the code)
+
+2004-12-28 16:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_gtk.pm: fix overlap
+
+2004-12-28 16:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_gtk.pm: re-organize steps display as
+ requested by ergonomic team
+
+2004-12-28 14:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps_interactive.pm,
+ pkgs.pm: - create set_rpmsrate_category_flags(),
+ set_rpmsrate_default_category_flags(), default_packages(),
+ rpmsrate_always_flags() replacing setDefaultPackages() - create
+ select_default_packages() - apply "always" rpmsrate flags ASAP
+ and skip packages with flag "FALSE" in computeGroupSize() => 30%
+ speed-up
+
+2004-12-28 13:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: fix displaying package tree
+ (was empty since moving from XXX to CAT_XXX)
+
+2004-12-24 10:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps_interactive.pm,
+ share/rpmsrate: differentiate compssUsers flags from non-user
+ modifiable flags (eg: hardware flags)
+
+2004-12-24 09:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: "Samba server" is better
+ named "Windows Files Sharing (SMB)" (bugzilla #10585)
+
+2004-12-23 17:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: bump require on perl in order to
+ prevent beakage on update due to binary incompatibility (#12719
+ and the like)
+
+2004-12-23 16:17 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * tools/checkusedmodules: Add a new check script in tools. It
+ compares the perl modules used by the .pm files in perl-install
+ against the ones listed in share/list, to detect potential
+ missing modules (and potential run-time problems during the stage
+ 2)
+
+2004-12-23 13:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix typo in 10.2-0.7mdk's changelog
+
+2004-12-23 13:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.7mdk
+
+2004-12-23 13:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add a couple of new ALSA drivers
+
+2004-12-23 10:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/XFdrake: fix
+ Xconfig::default::configure() use
+
+2004-12-23 10:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/XFdrake: "XFdrake --auto" is now fully
+ auto using auto_install configuration instead of "as much auto as
+ can be"
+
+2004-12-23 10:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/XFdrake: - don't ask X to restart in auto
+ mode - set exit status to 1 when configuration failed (esp. auto
+ mode)
+
+2004-12-22 23:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: "snd-audigyls" ALSA driver was
+ renamed "snd-ca0106" in ALSA CVS; let's have our tools be aware
+ of that once our kernel got synced
+
+2004-12-22 23:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: handle new snd-pcxhr driver from
+ alsa CVS
+
+2004-12-22 23:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install proper tools for Digigram
+ PCXHR sound card
+
+2004-12-22 18:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: simplify
+
+2004-12-22 18:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: no need to use
+ max_size, no need to compute it
+
+2004-12-22 18:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: fix previous commit
+
+2004-12-22 15:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: create read_rpmsrate_raw() out of
+ read_rpmsrate(), this new function can be easily used outside
+ install
+
+2004-12-22 09:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, install2.pm: add option no_bad_drives
+ (to workaround bugzilla #12766)
+
+2004-12-21 15:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: /proc/sys/kernel/modprobe wants
+ something non empty, otherwise it doesn't change anything
+
+2004-12-21 15:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, fs.pm, install_steps.pm: - fs::mount()
+ wants a real device or a faked one, but doesn't accept things
+ like fd0 anymore (give it /dev/fd0) - a little more robust
+ analyze_wild_device_name() during install - handle bad things in
+ subpart_from_wild_device_name()
+
+2004-12-21 15:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/: crypto.pm, install_any.pm, install_steps.pm,
+ install_steps_gtk.pm, install_steps_interactive.pm, pkgs.pm:
+ don't pass prefix, use $::prefix
+
+2004-12-21 13:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps_interactive.pm,
+ network/netconnect.pm, printer/printerdrake.pm,
+ standalone/drakconnect: don't pass prefix to
+ network::netconnect::main() (it doesn't use it)
+
+2004-12-21 13:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, commands, commands.pm, install_any.pm,
+ install_steps.pm, standalone/drakbug_report: don't pass prefix,
+ use $::prefix
+
+2004-12-21 12:28 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/doc/UPDATEMODULES, perl-install/install_steps.pm: much
+ simpler code to handle post-install update modules - it handles
+ new modules - it calls depmod
+
+2004-12-21 11:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: fix floppies detection (through
+ dmidecode)
+
+2004-12-20 19:51 Pixel <pixel at mandriva.com>
+
+ * make_boot_img, mdk-stage1/Makefile, mdk-stage1/automatic.c,
+ mdk-stage1/bootsplash.c, mdk-stage1/bootsplash.h,
+ mdk-stage1/frontend.h, mdk-stage1/newt-frontend.c,
+ mdk-stage1/stdio-frontend.c, mdk-stage1/tools.c,
+ mdk-stage1/tools.h: minimal bootsplash stage1 support
+
+2004-12-20 19:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: don't die when
+ /proc/sys/kernel/modprobe doesn't exist (for BOOT kernels)
+
+2004-12-20 14:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/modem.pm: (get_user_home) do not horribly
+ die if USER environment variable list a non existing user
+
+2004-12-20 14:13 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: automatic.c, cdrom.c, modules.c, network.c,
+ stage1.c, tools.c, tools.h: create unset_automatic()
+
+2004-12-19 11:45 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/lang.pm: jp console should not be localized
+
+2004-12-19 11:38 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/lang.pm: jp console should not be localized
+
+2004-12-18 14:58 rstandtke
+
+ * perl-install/share/po/de.po: added some translations
+
+2004-12-17 17:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/test.pm: remove unused code
+
+2004-12-17 17:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_gtk.pm, mygtk2.pm: don't parse the theme
+ rc file to set the root window background color during install,
+ instead use the gc of a fake window named "background"
+
+2004-12-17 16:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: oops, set_background *is* needed
+
+2004-12-17 16:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: remove unneeded ->set_background
+
+2004-12-17 16:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: ia64 uses the lilo method (even if it
+ has some important differences)
+
+2004-12-17 14:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix NETMASK autofilling
+
+2004-12-17 14:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: on ia64, use method lilo
+
+2004-12-17 13:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_gtk.pm: switch to mygtk2
+
+2004-12-17 13:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/: mygtk2.pm, ugtk2.pm: add some more functions in
+ mygtk2
+
+2004-12-17 13:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: packdrake changed a little, ensuring
+ that if we ask no modules it doesn't cause havoc
+
+2004-12-16 17:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: migrate to mygtk2
+
+2004-12-16 17:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: fix typo (mygtk2 wants active_ref, not
+ val)
+
+2004-12-16 17:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: - add DrawingArea - add text_ref & format
+ for buttons
+
+2004-12-16 16:28 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/c/smp.c: merge smp detection from fedora/ydl
+
+2004-12-16 16:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/: detect_devices.pm, install_any.pm, pkgs.pm: create
+ function detect_devices::BIGMEM() which calls
+ c::dmiDetectMemory(), but only if we are root (this helps
+ testings install without dying)
+
+2004-12-16 15:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: help testing
+
+2004-12-16 14:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: much simpler code
+ using mygtk2
+
+2004-12-16 14:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: remove debug code
+
+2004-12-16 13:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: we must allow more than one callback per
+ ref & widget
+
+2004-12-16 11:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/: mygtk2.pm, ugtk2.pm: add option
+ allow_unknown_options for easy compatibility
+
+2004-12-15 16:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update (stef, neoclust)
+
+2004-12-15 15:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.6mdk
+
+2004-12-15 15:22 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/: init.c, rescue-gui.c: lib64 fixes on ppc64
+
+2004-12-15 14:41 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/insmod-modutils/obj/obj_ia64.c: add support for
+ R_IA64_PCREL60B reloc
+
+2004-12-15 14:40 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/insmod-modutils/: insmod.c, util/Makefile,
+ util/modstat.c, util/sys_oim.c: drop support for kernel 2.0
+
+2004-12-15 14:34 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/insmod-modutils/obj/obj_ia64.c: build fix
+
+2004-12-15 14:26 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/insmod-modutils/obj/obj_gpl_license.c: add missing
+ file from older merge from modutils 2.4.26
+
+2004-12-15 14:26 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/insmod-modutils/: include/elf_ppc64.h,
+ obj/obj_ppc64.c: merge ppc64 support from modutils 2.4.26
+
+2004-12-15 14:24 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/insmod-modutils/obj/obj_kallsyms.c: fix build to
+ expose assignments better
+
+2004-12-15 14:23 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/insmod-modutils/: include/util.h, util/logger.c:
+ rename log to do_log in order to avoid clashes with builtins
+
+2004-12-15 11:09 Warly <warly at mandriva.com>
+
+ * perl-install/share/: rpmsrate.corpo-desktop,
+ rpmsrate.corpo-server: remove mdkonline-backend
+
+2004-12-15 09:52 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/network.c: fix http directory not starting with a "/"
+ (it was handled for stage1, but not for URLPREFIX given to
+ stage2)
+
+2004-12-15 02:59 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: perl_checker, suggestions
+ from Pixel, rework buttons in main GUI
+
+2004-12-14 18:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: export gtkval_register() and
+ gtkval_modify()
+
+2004-12-14 18:06 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/pcmcia_/merge_from_pcitable: cleanup
+
+2004-12-14 12:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/: netconnect.pm: for drakx-finish-install,
+ we want drakconnect to restart network
+
+2004-12-14 10:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix release (keep 101mdk for 10.1
+ packages)
+
+2004-12-13 22:13 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates soft/drakpxelinux/po/da.po
+ soft/rpmdrake/po/da.po soft/urpmi/po/da.po
+ gi/perl-install/share/po/da.po
+
+2004-12-13 18:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: introduce in CVS 27.2.101mdk which
+ was using a patch on drakbug
+
+2004-12-13 18:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakbug: commit vdanen patch which makes
+ drakbug send everything to bugzilla (instead of anthill)
+
+2004-12-13 18:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: fix
+
+2004-12-13 17:51 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/list: Add a gazillion modules required by the
+ new packdrake for now
+
+2004-12-13 17:37 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/list: Add the subset of POSIX.pm needed by the
+ new packdrake
+
+2004-12-13 16:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * move/move.pm, move/tree/mdk_totem, perl-install/any.pm,
+ perl-install/authentication.pm, perl-install/bootloader.pm,
+ perl-install/c.pm, perl-install/commands.pm,
+ perl-install/common.pm, perl-install/detect_devices.pm,
+ perl-install/devices.pm, perl-install/do_pkgs.pm,
+ perl-install/fs.pm, perl-install/fsedit.pm, perl-install/ftp.pm,
+ perl-install/help.pm, perl-install/http.pm,
+ perl-install/install2.pm, perl-install/install_any.pm,
+ perl-install/install_gtk.pm, perl-install/install_interactive.pm,
+ perl-install/install_steps.pm, perl-install/install_steps_gtk.pm,
+ perl-install/install_steps_interactive.pm,
+ perl-install/interactive.pm, perl-install/keyboard.pm,
+ perl-install/lang.pm, perl-install/loopback.pm,
+ perl-install/modules.pm, perl-install/mouse.pm,
+ perl-install/mygtk2.pm, perl-install/partition_table.pm,
+ perl-install/pkgs.pm, perl-install/raid.pm,
+ perl-install/run_program.pm, perl-install/services.pm,
+ perl-install/standalone.pm, perl-install/ugtk2.pm,
+ perl-install/Xconfig/card.pm, perl-install/Xconfig/parse.pm,
+ perl-install/Xconfig/xfree.pm,
+ perl-install/diskdrake/interactive.pm,
+ perl-install/diskdrake/smbnfs_gtk.pm, perl-install/fs/format.pm,
+ perl-install/fs/mount_options.pm, perl-install/fs/type.pm,
+ perl-install/harddrake/sound.pm, perl-install/harddrake/v4l.pm,
+ perl-install/interactive/http.pm,
+ perl-install/interactive/newt.pm,
+ perl-install/interactive/stdio.pm,
+ perl-install/modules/parameters.pm, perl-install/network/adsl.pm,
+ perl-install/network/ethernet.pm, perl-install/network/ipsec.pm,
+ perl-install/network/isdn.pm, perl-install/network/modem.pm,
+ perl-install/network/netconnect.pm,
+ perl-install/network/network.pm, perl-install/network/smb.pm,
+ perl-install/network/test.pm, perl-install/network/tools.pm,
+ perl-install/partition_table/gpt.pm,
+ perl-install/partition_table/mac.pm,
+ perl-install/partition_table/raw.pm,
+ perl-install/printer/data.pm, perl-install/printer/main.pm,
+ perl-install/printer/printerdrake.pm,
+ perl-install/resize_fat/boot_sector.pm,
+ perl-install/resize_fat/fat.pm, perl-install/resize_fat/main.pm,
+ perl-install/share/advertising/05.pl,
+ perl-install/share/advertising/12.pl,
+ 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/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/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/bootloader-config,
+ perl-install/standalone/drakTermServ,
+ perl-install/standalone/drakautoinst,
+ perl-install/standalone/drakbackup,
+ perl-install/standalone/drakboot,
+ perl-install/standalone/drakconnect,
+ perl-install/standalone/drakfont, perl-install/standalone/drakgw,
+ perl-install/standalone/drakperm,
+ perl-install/standalone/drakroam,
+ perl-install/standalone/drakupdate_fstab,
+ perl-install/standalone/drakvpn,
+ perl-install/standalone/fileshareset,
+ perl-install/standalone/logdrake,
+ perl-install/standalone/net_applet,
+ perl-install/standalone/service_harddrake,
+ perl-install/standalone/service_harddrake.sh,
+ perl-install/unused/dns.pm: better english (writing style rather
+ than spoken one)
+
+2004-12-13 16:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps.pm,
+ harddrake/autoconf.pm, standalone/service_harddrake: -
+ rename/move install_any::write_pcmcia() as
+ harddrake::autoconf::pcmcia() so that it became availlable for
+ standalone tools
+
+ - reuse it in harddrake service in order to configure PCMCIA
+ cards
+
+2004-12-13 16:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (pcmcia_controller_probe) reuse
+ pcmcia_controller_probe(), thus fixing installer not handling
+ anymore PCMCIA controllers managed by driver other than
+ yenta_socket...
+
+ this is still not enough for stage1 though (since
+ mdk-stage1/pcmcia_/probe.c::pcmcia_probe() isn't aware of all
+ PCMCIA host controller drivers that're known to list_modules.pm)
+
+2004-12-13 16:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: detect_devices.pm, harddrake/data.pm:
+ (pcmcia_controller_probe) move some harddrake code there
+
+2004-12-13 10:57 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/list: Add new packdrake module
+
+2004-12-12 21:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: ignore packdrake for now
+
+2004-12-12 20:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_gtk.pm, share/list.i386: keyboard_drv.o is
+ needed by Xorg, and driver must "keyboard", not "Keyboard"
+
+2004-12-10 22:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ja.po: update (Yukiko Bando)
+
+2004-12-10 17:50 Pixel <pixel at mandriva.com>
+
+ * Makefile, perl-install/Makefile: move drakx VERSION file in
+ install/stage2 (used by bugzilla)
+
+2004-12-09 17:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: commit warly's fix in HEAD
+
+2004-12-09 17:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: commit warly's fix in 10.1 branch
+
+2004-12-08 11:44 Warly <warly at mandriva.com>
+
+ * perl-install/install_steps.pm: fix the updatemodules mode for
+ installation
+
+2004-12-07 17:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/: detect_devices.pm, install_steps_interactive.pm:
+ look for yenta_socket in pci_probe too
+
+2004-12-07 17:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/: detect_devices.pm, install_steps_interactive.pm:
+ look for yenta_socket in pci_probe too (nb: ldetect pci_probe has
+ a special rule for it, not simply pcitable)
+
+2004-12-07 15:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: xcdroast only if X is chosen
+ (bugzilla #12594)
+
+2004-12-06 12:10 Warly <warly at mandriva.com>
+
+ * perl-install/share/: rpmsrate.corpo-desktop,
+ rpmsrate.corpo-server: Added mdkonline, slmodem and ipw2?00
+
+2004-12-05 20:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, fs/format.pm: don't allow
+ partition types we don't know how to format in {partitions} for
+ auto_installs (eg of bad type: ntfs)
+
+2004-12-05 19:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: typo fixes (#12580)
+
+2004-12-05 17:44 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2004-12-04 14:55 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: Update
+
+2004-12-04 12:02 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/pcmcia_/merge_from_pcitable: simplify
+
+2004-12-03 16:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add multimedia/dvb class
+
+2004-12-03 12:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: disable kmod, otherwise we get a
+ different behaviour in kernel vs kernel-BOOT
+
+2004-12-03 12:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/commands: during install, commands should
+ $::isInstall set (otherwise poor modprobe becomes a fork bomb)
+
+2004-12-03 12:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: more debug log
+
+2004-12-03 12:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: use the cute "perldoc -l" instead of perl
+ -V:vendorlib which doesn't work when the module hasn't been
+ rebuilt
+
+2004-12-03 11:55 Pixel <pixel at mandriva.com>
+
+ * tools/Makefile: use perldoc -l instead of perl -M + %INC
+
+2004-12-03 11:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/unused/: migrate-ugtk2-to-mygtk2.el,
+ migrate-ugtk2-to-mygtk2.pl: be more automatic and less .emacs
+ dependent
+
+2004-12-03 07:52 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: af.po, am.po, ar.po, az.po, be.po, bg.po,
+ bn.po, br.po, ca.po, cs.po, cy.po, el.po, eo.po, gl.po, he.po,
+ hr.po, id.po, is.po, ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po,
+ mn.po, ms.po, mt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po,
+ sr@Latn.po, tl.po, tr.po, vi.po, zh_TW.po: rescued some strings
+
+2004-12-02 22:34 Pixel <pixel at mandriva.com>
+
+ * rescue/make_rescue_img: fix typo and perl_checker compliance
+
+2004-12-02 22:20 Pixel <pixel at mandriva.com>
+
+ * kernel/modules.pl: no need to put tokenring modules in
+ modules_only_for_all_img since they are now in their own category
+ which is not used for stage1
+
+2004-12-02 22:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: use migrate-ugtk2-to-mygtk2.pl (and i
+ verified the diff)
+
+2004-12-02 22:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/: mygtk2.pm, unused/migrate-ugtk2-to-mygtk2.pl:
+ replace "policy => [ horizpolicy, vertpolicy ]" with "h_policy =>
+ ..., v_policy => ..." (both defaulting to "automatic")
+
+2004-12-02 21:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/unused/: migrate-ugtk2-to-mygtk2.el,
+ migrate-ugtk2-to-mygtk2.pl: dirty script easing the switch from
+ ugtk2 to mygtk2 (beware!)
+
+2004-12-02 17:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: helping titi that didn't get
+ isLaptop() right in 3 commits ;p
+
+2004-12-02 17:33 Pixel <pixel at mandriva.com>
+
+ * rescue/make_rescue_img: remove temporary directory
+
+2004-12-02 15:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: zd1201 is a wireless driver (not yet
+ included in our kernel)
+
+2004-12-02 15:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: lpfc is the successor of lpfcdd
+
+2004-12-02 14:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: - fix duplicated entries - group
+ tokenring drivers together (and add missing ones)
+
+2004-12-02 14:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: delkin_cb is a Cardbus IDE driver
+
+2004-12-02 13:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/: mygtk2.pm, ugtk2.pm: future is in mygtk2, ugtk2
+ must die (and it will die, but not that soon (to keep
+ compatibility))
+
+2004-12-02 12:55 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, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.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
+
+2004-12-02 10:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, authentication.pm: - any::enableShadow()
+ -> authentication::enable_shadow() - inline
+ authentication::crypt()
+
+2004-12-02 09:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, authentication.pm: move crypt() where it's
+ needed
+
+2004-12-02 08:49 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: any.pm, authentication.pm: Move crypt() in the
+ package it belongs to
+
+2004-12-01 15:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ja.po: typo fix
+
+2004-12-01 13:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: simplify: grep already done
+ complete_usb_storage_info()
+
+2004-12-01 11:35 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/ugtk2.pm: return value for gtkset_mousecursor
+
+2004-12-01 08:19 Warly <warly at mandriva.com>
+
+ * perl-install/share/compssUsers.desktop: remove game for corpo
+ desktop
+
+2004-12-01 08:18 Warly <warly at mandriva.com>
+
+ * perl-install/share/compssUsers.corpo-server: remove development
+ section in corpo server
+
+2004-12-01 08:17 Warly <warly at mandriva.com>
+
+ * perl-install/share/: compssUsers.suppl-desktop,
+ compssUsers.suppl-server: add compssUsers for supplementary CDs
+
+2004-12-01 08:15 Warly <warly at mandriva.com>
+
+ * perl-install/share/: rpmsrate.corpo-desktop,
+ rpmsrate.corpo-server: updated rpmsrate for corporate desktop and
+ server
+
+2004-12-01 08:14 Warly <warly at mandriva.com>
+
+ * perl-install/share/themes-corporate.rc: correct the theme color
+ for installation
+
+2004-12-01 08:12 Warly <warly at mandriva.com>
+
+ * perl-install/install_steps.pm: Add a SYSTEM to Corporate in
+ /etc/sysconfig/system for corporate
+
+2004-12-01 08:00 Warly <warly at mandriva.com>
+
+ * perl-install/install_messages.pm: The coporate errata is
+ corpo30errata.php3 and not 100errata.php3
+
+2004-12-01 07:56 Warly <warly at mandriva.com>
+
+ * perl-install/install_any.pm: use the compssUsers related to the
+ meta_class if it exists
+
+2004-12-01 07:35 Warly <warly at mandriva.com>
+
+ * rescue/tree/etc/issue: change Mandrake Linux 10.0 into
+ Mandrakelinux Corporate 3.0
+
+2004-12-01 07:32 Warly <warly at mandriva.com>
+
+ * perl-install/steps.pm: Do not activate the updates selection step
+ during installation
+
+2004-12-01 07:30 Warly <warly at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: update the group selection
+ layout to handle the supplementary CD
+
+2004-11-30 22:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/: finish-install: don't keep the banner
+ from drakconnect for all steps
+
+2004-11-30 22:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Makefile, Makefile.config, Makefile.drakxtools,
+ standalone/finish-install, standalone/finish-install.xsetup,
+ drakxtools.spec: add drakx-finish-install
+
+2004-11-30 22:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/run_program.pm: replace !isStandalone with isInstall
+
+2004-11-30 22:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakbackup: fix fatal perl_checker
+ warning
+
+2004-11-30 22:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakbackup: fix fatal perl_checker error
+
+2004-11-30 21:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/: finish-install: prog to launch after
+ install which configurate users, authentication, root password
+ and network
+
+2004-11-30 19:54 Frederic Lepied <flepied at mandriva.com>
+
+ * mdk-stage1/config-stage1.h: corporate
+
+2004-11-30 19:44 Frederic Lepied <flepied at mandriva.com>
+
+ * mdk-stage1/Makefile: corporate
+
+2004-11-30 16:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (dmidecode) explain why we return
+ a list and not directly an hash
+
+2004-11-30 16:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, authentication.pm, install_steps.pm,
+ install_steps_interactive.pm, network/network.pm,
+ standalone/adduserdrake, standalone/drakauth: backport HEAD
+ changes used by finish-install
+
+2004-11-30 16:28 Warly <warly at mandriva.com>
+
+ * rescue/tree/etc/issue: update version for rescue issue
+
+2004-11-30 16:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (floppies) do not try to load
+ floppy if there's no floppy drive (#8211)
+
+ a side effect is that now we'll still see the floppy drive even
+ if some buggy code triggered $@ earlier
+
+2004-11-30 16:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/: netconnect.pm:
+ network::netconnect::real_main() do not exit brutally on
+ wizcancel, handle it in network::netconnect::main()
+
+2004-11-30 15:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/: modules.pm: replace isStandalone with !isInstall
+ (for finish-install which is neither isInstall nor isStandalone)
+
+2004-11-30 15:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, install_steps.pm: create
+ any::set_root_passwd() and use it
+
+2004-11-30 14:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakauth: perl_checker fix
+
+2004-11-30 14:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakauth: shorter
+
+2004-11-30 14:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/: network/network.pm, standalone/drakauth: don't
+ pass the prefix/etc/sysconfig/network to
+ network::network::write_conf(), we always use the same file name
+
+2004-11-30 14:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakauth: $when_network_is_up is now
+ optional
+
+2004-11-30 14:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: make $when_network_is_up optional
+
+2004-11-30 13:27 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Warn when failing to mount the
+ supplementary CD-ROM
+
+2004-11-30 13:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: typo fix
+
+2004-11-30 12:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: lang.pm, share/rpmsrate: install scim-anthy as
+ well for japanese users
+
+2004-11-30 12:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_any.pm: (setDefaultPackages) perl_checker
+ cleanup
+
+2004-11-30 12:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: rollback previous bogus commit
+
+2004-11-30 12:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, authentication.pm, install_steps.pm,
+ install_steps_interactive.pm: - move some functions from any.pm
+ to authentication.pm - create
+ authentication::ask_root_password_and_authentication() out of
+ install_steps_interactive::setRootPassword()
+
+2004-11-30 11:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, install_steps.pm: create
+ any::set_root_passwd() and use it
+
+2004-11-30 11:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (isLaptop) fix it on non PPC
+ architectures
+
+2004-11-30 11:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: detect_devices::getModem() does
+ not take an argument anymore
+
+2004-11-30 11:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/localedrake: Yes/no is better than
+ Ok/cancel for logout question
+
+2004-11-30 11:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (dmidecode) add (explicit)
+ memoization
+
+2004-11-30 11:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, install_steps.pm, standalone/adduserdrake:
+ - rely on adduser(8) to set the users password instead of using
+ write_passwd_user() - use adduser(8) during install (we now use
+ the same code during and after install)
+
+2004-11-30 09:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: white space normalisation
+
+2004-11-29 20:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: minimal authentication get()
+ function
+
+2004-11-29 20:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: create %kind2pam_kind
+
+2004-11-29 20:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: rename allocUsers() to alloc_user_faces()
+ (better suited)
+
+2004-11-29 19:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: perl_checker compliance
+
+2004-11-29 18:53 Pixel <pixel at mandriva.com>
+
+ * make_boot_img, docs/README, mdk-stage1/disk.c, mdk-stage1/disk.h,
+ mdk-stage1/stage1.c, mdk-stage1/tools.c,
+ perl-install/bootloader.pm, perl-install/install2.pm,
+ perl-install/install_steps.pm, perl-install/install_steps_gtk.pm,
+ perl-install/install_steps_interactive.pm, rescue/.cvsignore,
+ rescue/Makefile, rescue/kernel_read_part.c, rescue/tree/etc/oem,
+ rescue/tree/etc/oem-all, rescue/tree/etc/rc.sysinit,
+ tools/oem-prepare: - drop oem & recovery code (which was broken)
+ - will be replaced with a root password + user accounts + network
+ configuration a la drakfirsttime
+
+2004-11-29 17:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ja.po: update (Yukiko Bando)
+
+2004-11-29 17:01 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install2.pm: A bit of grammar
+
+2004-11-29 16:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: ensure toshutils is present on media
+
+2004-11-29 15:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_any.pm: (setDefaultPackages) better support
+ for Toshiba laptops: preload toshiba driver and install toshutils
+ (inspirated from drivers/char/toshiba.c's audit)
+
+2004-11-29 15:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: add hint for translator
+
+2004-11-29 14:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: ensure ik8utils is present on media
+
+2004-11-29 14:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_any.pm: (setDefaultPackages) better support
+ for DELL laptops: preload i8k driver
+
+2004-11-29 14:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_any.pm: better support for DELL laptops
+ (inspirated from drivers/char/i8k.c's audit)
+
+2004-11-29 12:08 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm: module "floppy" is in
+ @modules_always_on_stage1 (modules.pl) but must also be listed in
+ modules.pl otherwise it is removed for non BOOT kernels
+
+2004-11-29 12:06 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: kernel BOOT 2.4 doesn't handle clp at the
+ moment
+
+2004-11-27 17:10 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-11-27 16:03 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: Don't load encoding.pm, it's
+ not provided in the stage 2 perl
+
+2004-11-26 20:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.5mdk
+
+2004-11-26 15:00 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Add some tool in DEVELOPMENT section
+
+2004-11-26 13:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/ethernet.pm: help perl_checker
+
+2004-11-26 13:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: simplify
+
+2004-11-26 13:38 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, pkgs.pm: We won't have files named
+ compssUsers.pl.<meta_class> since they're all merged now.
+
+2004-11-26 13:30 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, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.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
+
+2004-11-26 13:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/keyboarddrake: don't write X config when
+ there is none (otherwise we write a partial X config)
+
+2004-11-26 12:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: help perl another way that
+ perl_checker prefers
+
+2004-11-26 12:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/dos.pm: - geometry XXX/240/63 is
+ quite common, so add 240 to @valid_nb_heads - remove checking
+ that nb_heads is in @valid_nb_heads (this fixes yet another case
+ of the infamous "XP doesn't boot" occuring 10.1 CE, though it
+ should already be fixed via EDD)
+
+2004-11-26 12:17 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/harddrake2: fixed typo
+
+2004-11-26 11:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-11-25 22:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: simpler code
+
+2004-11-25 22:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/printerdrake: (About) let be more l10n
+ friendly regarding "translatability"
+
+2004-11-25 22:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/printerdrake: (About) let be more l10n
+ friendly regarding font's weight and size
+
+2004-11-25 17:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix spacing in 10.2-0.4mdk's
+ changelog
+
+2004-11-25 17:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.4mdk
+
+2004-11-25 16:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: (load_and_configure) fix setting scsi
+ and usb probell in live CD (thus fixing mousedrake --auto with
+ USB mice on live CD)
+
+2004-11-25 16:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules/any_conf.pm: ensure that explanations go
+ into /var/log/explanations is standalone mode
+ (log::explanations() just calls log::l() at install time)
+
+2004-11-25 16:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: do not probe memory chips at boot
+ time ...
+
+2004-11-25 16:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: do not die if sound
+ never was configured (aka on first boot on live CD)
+
+2004-11-25 14:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: remove /lib and /usr/lib with more verbose
+ code
+
+2004-11-25 14:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: fix previous commit
+
+2004-11-25 14:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: handle the lib64 case separately
+
+2004-11-25 14:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: create function libgl_config() and
+ have it after setting Driver to 'fglrx' so that libgl_config()
+ can behave based on {Driver} instead of {Driver2}
+
+2004-11-25 14:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: minimal perl_checker
+ compliance
+
+2004-11-25 14:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, diskdrake/interactive.pm: moving
+ partitions never really worked and is disabled since years
+
+2004-11-25 14:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: safer
+
+2004-11-25 13:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: use floppies_dev() instead of
+ floppies()
+
+2004-11-25 13:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/: diskdrake: use fs::get::device2part()
+
+2004-11-25 13:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: remove unused var
+
+2004-11-25 13:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/: devices.pm, fs.pm, install_any.pm, pkgs.pm: we
+ don't use /tmp for devices anymore (this comes from long ago when
+ redhat code was using a ro /dev and creating other devices in
+ /tmp)
+
+2004-11-25 13:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fs.pm, diskdrake/interactive.pm: - create
+ analyze_wild_device_name() out of subpart_from_wild_device_name()
+ - rename part2device() into part2wild_device_name(), change its
+ prototype and use analyze_wild_device_name() - new field
+ {faked_device} - for LABEL=..., {device} is not empty anymore and
+ {faked_device} is set, merge_fstabs() will take care of having
+ the real {device} and {faked_device} unset - for devfs_device,
+ {device} is set to the devfs device, merge_fstabs() will take
+ care of having the non devfs device in {device}
+
+2004-11-25 12:12 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Fix Totem installation when KDE and
+ GNOME are both installed.
+
+ Fix Quanta installation
+
+2004-11-25 11:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: more intelligent sort of fstab to handle
+ loopback files or bind directory (bug anthil #1198)
+
+2004-11-24 13:32 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-11-23 15:56 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: list Turkish language in both Asia and
+ Europe (for Istanbul)
+
+2004-11-23 15:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/: bootloader.pm: don't use typeOfMBR to check the
+ method on floppy which may not be inserted (part of bugzilla
+ #12213)
+
+2004-11-23 14:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/: raw.pm: detect on lilo on floppy
+ (bugzilla #12213)
+
+2004-11-23 13:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: fix {device_alias} containing /dev/xxx
+ instead of xxx. The bug was "none /mnt/cdrom supermount
+ dev=/dev//dev/cdrom,fs=iso9660..." (bugzilla #12224)
+
+2004-11-23 13:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update (kournikolas)
+
+2004-11-23 13:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: fix {device_alias} containing /dev/xxx
+ instead of xxx. The bug was "none /mnt/cdrom supermount
+ dev=/dev//dev/cdrom,fs=iso9660..." (bugzilla #12224)
+
+2004-11-23 13:31 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm: don't have perl warning
+
+2004-11-23 12:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-11-23 12:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ja.po: update (Yukiko Bando)
+
+2004-11-22 17:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: (real_main) in "ADSL
+ provider" step, plain reset the protocol on provider switch
+
+2004-11-22 15:15 Pixel <pixel at mandriva.com>
+
+ * Makefile, make_boot_img, docs/HACKING, kernel/.cvsignore,
+ kernel/Makefile, kernel/dependencies.pl, kernel/list_modules.pm,
+ kernel/modules.pl, kernel/update_kernel,
+ mdk-stage1/pci-resource/update-pci-ids.pl, perl-install/Makefile,
+ rescue/make_rescue_img: - no more kernel/all.modules, things are
+ in kernel/all.kernels - cleanup what we keep in
+ kernel/all.kernels: only vmlinuz, modules.dep, *.mar,
+ all_modules.tar, modules.cz - replace all_modules.list + modules
+ with all_modules.tar - kernel/all.modules/modules.cz-VERSION are
+ now in kernel/all.kernels/VERSION/modules.cz - allow having a
+ normal in isolinux, but don't use it for floppy images (for
+ this, add kernel/all.kernels/.main-BOOT) - add many modules
+ kernel/list_modules.pm in unused categories since we don't take
+ all modules from kernel, only those listed (needed to have a
+ not too big modules.cz for normal kernel) - complete rewrite of
+ update_kernel (now written in perl)
+
+2004-11-22 12:42 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: use cat_()
+
+2004-11-22 12:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: kill a stock icon
+
+2004-11-22 12:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-11-19 22:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add new sound drivers from kernel-tmb and
+ kernel-multimedia
+
+2004-11-19 22:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: (alsa2oss) add snd-azx
+
+2004-11-19 22:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add snd-azx
+
+2004-11-19 13:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: fix wrong package name
+
+2004-11-19 13:22 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm: - add helper functions: kernel_is_26(),
+ module_extension() - expand code
+
+2004-11-19 10:49 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: better comment
+
+2004-11-18 19:31 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: use 'fbdev' server on x86_64
+ too
+
+2004-11-18 16:36 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/advertising/: list-cpd, list-cps: update to
+ match warly's config files
+
+2004-11-18 15:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm: fix prototype
+
+2004-11-18 15:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/: common.pm, fs.pm, install2.pm, install_any.pm,
+ install_steps_interactive.pm, lang.pm, pkgs.pm, run_program.pm,
+ diskdrake/interactive.pm: since we don't use ramdisk but clp,
+ some code is dead (remove usingRamdisk(), check_prog(),
+ remove_unused()...)
+
+2004-11-18 14:36 Pixel <pixel at mandriva.com>
+
+ * Makefile: mdkinst.kernels is must be uploaded too
+
+2004-11-18 14:29 Pixel <pixel at mandriva.com>
+
+ * Makefile: not uploading stage2/live anymore :)
+
+2004-11-18 14:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, authentication.pm, bootloader.pm,
+ commands.pm, common.pm, crypto.pm, detect_devices.pm, devices.pm,
+ fs.pm, fsedit.pm, install_any.pm, install_gtk.pm,
+ install_interactive.pm, install_steps.pm, interactive.pm,
+ lang.pm, lvm.pm, modules.pm, mouse.pm, partition_table.pm,
+ raid.pm, services.pm, ugtk2.pm, wizards.pm, Xconfig/screen.pm,
+ diskdrake/resize_ntfs.pm, harddrake/data.pm, harddrake/sound.pm,
+ interactive/gtk.pm, interactive/newt.pm, interactive/stdio.pm,
+ network/adsl.pm, network/ethernet.pm, network/isdn.pm,
+ network/netconnect.pm, network/shorewall.pm: remove some unneeded
+ ";", add some for normalization (as told by perl_checker)
+
+2004-11-18 13:58 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm: put back module "53c7,8xx" which still
+ exist for 2.4
+
+2004-11-18 13:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps_auto_install.pm,
+ install_steps_interactive.pm, diskdrake/hd_gtk.pm,
+ diskdrake/interactive.pm, partition_table/gpt.pm,
+ partition_table/mac.pm, partition_table/raw.pm,
+ standalone/harddrake2: add some ";", remove some ";", as told by
+ perl_checker
+
+2004-11-17 19:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-34.8.100mdk
+
+2004-11-17 19:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: on 10.0, b44 failled on newer cards;
+ let's try bcm4400 too
+
+2004-11-17 18:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: fix indentation
+
+2004-11-17 17:52 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/crypto.pm: Integrate from trunk (mirror list update)
+
+2004-11-17 17:50 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/crypto.pm: Update inline mirror list again (the
+ previous one was broken)
+
+2004-11-17 16:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: bump requires on ldetect-lst b/c of
+ s/3c90x/3c59x/
+
+2004-11-17 13:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.3mdk
+
+2004-11-17 13:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fill in 10.2-0.2mdk's changelog
+
+2004-11-17 13:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: add new sound drivers from
+ kernel-tmb-2.6.7-2.tmb.6mdk
+
+2004-11-17 13:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add dyc_ar5 wireless driver from
+ kernel-tmb-2.6.7-2.tmb.6mdk
+
+2004-11-17 13:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-34.7.100mdk
+
+2004-11-17 13:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: backport from 10.1:
+ adapt to new nvidia driver location due to corporate now using
+ DKMS
+
+2004-11-17 11:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: really remove the VG from
+ internal list of {lvms}, not on a copy
+
+2004-11-17 10:59 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: crypto.pm, install_any.pm: Integrate fixes for
+ mini-ISOs from the trunk.
+
+2004-11-17 10:40 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/crypto.pm: Update the inline mirror list for mini
+ isos
+
+2004-11-17 09:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table.pm: also remove "require
+ partition_table::lvm_PV" comment for perl_checker
+
+2004-11-16 18:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: fix typo (thanks to bugzilla #12387)
+
+2004-11-16 17:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/empty.pm: empty partition table
+ means sectors #0 and #1 are zeroes, not simply sector #0 (this
+ gives a chance to raw_lvm_PV which has its magic on sector #1)
+
+2004-11-16 17:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, partition_table.pm,
+ partition_table/lvm_PV.pm: handle more nicely raw_lvm_PV (don't
+ simply ignore them)
+
+2004-11-16 17:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table.pm: don't die in will_tell_kernel()
+ when the device is weird, since it is normal when destroying a
+ raw_lvm_PV
+
+2004-11-16 17:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table.pm: enhance readability
+
+2004-11-16 16:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: harddrake/data.pm, standalone/service_harddrake:
+ on startup, redo ethX aliases
+
+2004-11-16 15:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: enhance analyse_kernel_name(), esp. to
+ handle i686-up-64GB
+
+2004-11-16 15:36 Pixel <pixel at mandriva.com>
+
+ * tools/Makefile: make_mdkinst_stage2 is no more, hail
+ mdkinst_stage2_tool
+
+2004-11-16 15:36 Pixel <pixel at mandriva.com>
+
+ * rescue/: list, list.i386, list.ia64, list.ppc, list.x86_64: move
+ libperl.so from list.ARCH back to list, using a wildcard
+
+2004-11-16 15:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/: detect_devices.pm, modules.pm: update ppc kernel
+ modules detection & loading
+
+2004-11-16 13:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: enable UseFBDev in X configs on
+ ppc, for rage128 and radeon
+
+2004-11-16 13:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: set raw_LINES on every fglrx
+ devices
+
+2004-11-16 13:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: drop broken code - setting VideoRam
+ for i810 - unsetting UseFBDev for r128 on ppc
+
+2004-11-16 12:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/raw.pm: fix yaboot detection
+
+2004-11-16 12:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: cleanup get_mac_generation()
+
+2004-11-16 12:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add ahci and sata_uli SATA drivers (from
+ latest libata as in 2.8.10-rc1-mm5)
+
+2004-11-16 12:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: "53c7,8xx" is an obvious typo. what's
+ more, 53c7xx is only a submodule for other drivers in
+ drivers/scsi/
+
+2004-11-16 12:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add it8212 raid driver
+
+2004-11-16 12:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: 3c90x is dead for years
+
+2004-11-16 12:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add efficeon-agp k7-agp and mch-agp AGP
+ drivers
+
+2004-11-16 12:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: buz and paep modules do not exist anymore
+
+2004-11-16 12:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: pcilynx is a IEEE-1394 controller driver
+ like ohci1394
+
+2004-11-16 12:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add bus/i2c (aka SMB Host controllers)
+
+2004-11-16 12:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: list ibm_emac and oaknet net drivers on
+ PPC
+
+2004-11-16 11:23 Pixel <pixel at mandriva.com>
+
+ * tools/: make_mdkinst_stage2, mdkinst_stage2_tool: major switch
+ from ramdisk to clp - make_mdkinst_stage2 is now
+ mdkinst_stage2_tool (we don't keep the live when building the
+ clp, mdkinst_stage2_tool is able to create the clp from the live,
+ or the live from the clp)
+
+2004-11-16 11:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/type.pm: for sunos: - "SunOS swap" and "Whole
+ disk" don't use ufs - drop isSunOS(): replace it with testing
+ {fs_type} eq 'ufs'
+
+2004-11-16 11:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/: partition_table.pm, diskdrake/hd_gtk.pm,
+ diskdrake/interactive.pm, fs/get.pm, fs/type.pm: create isEmpty()
+ and use it instead of simply testing {pt_type}, since {pt_type}
+ can be undef whereas {fs_type} is set
+
+2004-11-16 10:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: rename get_of_dev() -> dev2yaboot()
+
+2004-11-16 10:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, bootloader.pm: don't write boot OF in
+ /tmp/of_boot_dev, better use dev2yaboot() instead
+
+2004-11-16 10:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: - create yaboot2file() and use it -
+ update read_lilo() for yaboot - update write_yaboot() - remove
+ {useboot} - set {boot} to /dev/sda1 in suggest() instead of
+ handling it in write_yaboot()
+
+2004-11-16 10:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/type.pm: don't use pseudo fs_type "apple" for
+ Apple Bootstrap partitions, better only use {pt_type} for non
+ mountable partitions
+
+2004-11-16 10:28 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: disable kernel-BOOT 2.4 until it handles
+ clp (ie until it has gzloop)
+
+2004-11-16 10:27 Pixel <pixel at mandriva.com>
+
+ * Makefile, docs/README, kernel/list_modules.pm,
+ mdk-stage1/Makefile, mdk-stage1/cdrom.c,
+ mdk-stage1/config-stage1.h, mdk-stage1/directory.c,
+ mdk-stage1/disk.c, mdk-stage1/network.c, mdk-stage1/tools.c,
+ mdk-stage1/tools.h, perl-install/Makefile, rescue/.cvsignore,
+ rescue/Makefile, rescue/make_rescue_img: major switch from
+ ramdisk to clp - mdkinst_stage2.bz2 is now mdkinst.clp -
+ rescue_stage2.bz2 is now rescue.clp - make_mdkinst_stage2 is now
+ mdkinst_stage2_tool (we don't keep the live when building the
+ clp, mdkinst_stage2_tool is able to create the clp from the live,
+ or the live from the clp) - all stage1 images now need cryptoloop
+ & gzloop - the clp can be preloaded in memory or not (see
+ MEM_LIMIT_DRAKX_PRELOAD and MEM_LIMIT_RESCUE_PRELOAD) (for http
+ & ftp, it *must* be preloaded) - we don't uncompress the ramdisk
+ anymore since the decompression is done on the fly, this makes
+ the rescue boot much faster - function get_ramdisk_realname() is
+ replaced with macro CLP_FILE_REL
+
+2004-11-15 16:33 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/list: Adjust perl architecture, now that we
+ don't have threads anymore
+
+2004-11-15 16:18 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/drakxtools.spec: new release for new perl
+
+2004-11-15 12:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: - special bootstrap
+ partition warning for IBM mac_generation - no "OldWorld or
+ Unknown machine" for IBM mac_generation
+
+2004-11-14 16:16 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/lang.pm: switch to gbk in zh_CN
+
+2004-11-13 20:10 Pixel <pixel at mandriva.com>
+
+ * rescue/list: add partimage
+
+2004-11-12 19:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps.pm, install_steps_interactive.pm: no
+ "auto install floppy" on ppc
+
+2004-11-12 19:11 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/Makefile.common: cleanup
+
+2004-11-12 19:11 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/Makefile.common: simplify
+
+2004-11-12 19:10 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: Makefile, Makefile.common: build init using $(DIET)
+ just like stage2-* (needed for ppc, and nicer), unify
+ LDFLAGS_INIT and LDFLAGS_STAGE1
+
+2004-11-12 18:57 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: Makefile, Makefile.common: remove
+ GLIBC_LDFLAGS_STAGE1 and DIETLIBC_LDFLAGS_STAGE1 since they were
+ not used everywhere, and so it was not easy to understand
+
+2004-11-12 18:53 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: Makefile, Makefile.common: drop unused INIT_LIBC,
+ GLIBC_LIBC, DIETLIBC_LIBC (all 3 were empty at the moment)
+
+2004-11-12 18:50 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/Makefile: don't use minilibc.h on ppc
+
+2004-11-12 18:38 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/Makefile: simplify arch dependent config based on
+ dietlibc vs glibc. this patch may be wrong for ppc which now
+ used dietlibc but may prefer init-libc-headers.h over minilibc.h
+ (need testing)
+
+2004-11-12 18:30 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/Makefile: some defines are not arch dependent
+
+2004-11-12 18:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_gtk.pm, share/themes-galaxy.rc: the color
+ of the categories of steps is better in the theme (it was the
+ only part not defined in the theme but in the code)
+
+2004-11-12 18:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_gtk.pm: fix converting the background color
+
+2004-11-12 18:14 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: Remove the video=ofonly kernel argument for ppc
+ since it doesn't always work and is easier to add than to remove
+ on the bootloader prompt. (Christiaan Welvaart)
+
+2004-11-10 19:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: load yenta_socket and
+ the like for PCMCIA controllers
+
+2004-11-10 18:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: merge in lost changelog
+
+2004-11-10 18:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install drivers for ipw2xOO
+
+2004-11-10 17:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: sync relevant "hardware/driver
+ matching" bits from Head
+
+2004-11-10 16:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: drakauth: add SmartCard
+ authentication
+
+2004-11-10 16:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/: authentication.pm: - correctly restore
+ pam.d/system-auth when setting "local" authentication - no
+ use_first_pass on "auth sufficient pam_unix.so" line for
+ pam_castella
+
+2004-11-10 15:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-27.1.101mdk
+
+2004-11-10 15:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: logdrake: fix logdrake speed (should
+ have been commited long time ago)
+
+2004-11-10 15:03 Vincent Guardiola <vguardiola at mandriva.com>
+
+ * perl-install/authentication.pm: add pm_mkhomedir
+
+2004-11-10 15:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (mapIntfToDevice) backport 9box
+ detection fix: do not try to match usb devices since ldetect
+ doesn't return enough data
+
+2004-11-10 14:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-0.1mdk
+
+2004-11-10 14:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: sync ADSL ISPs DB with HEAD
+
+2004-11-10 14:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn_consts.pm: backport support for Philips
+ Semiconductors DSL card
+
+2004-11-10 14:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix 10.1-27mdk's changelog
+
+2004-11-10 14:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: merge 10.1-27mdk's changelog from
+ MDK10.1 branch
+
+2004-11-10 13:57 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: mk.po, pt.po: updated Macedonian file
+
+2004-11-10 12:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (isLaptop) fix it on non PPC
+ arches
+
+2004-11-09 21:09 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2004-11-09 17:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/theme-editor.pl: basic port from Gtk-1.2.x to
+ Gtk+-2.x
+
+2004-11-09 14:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: bump require on ldetect-lst b/c of
+ s/adiusbadsl/eagleusb/
+
+2004-11-09 14:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getSagem) do not probe for old
+ adiusbadsl driver (which is deprecated by eagle-usb for more than
+ one year)
+
+2004-11-09 13:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: update/add ADSL ISP entries
+ (Benoit Audouard)
+
+2004-11-09 13:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: reorder finnish entry
+
+2004-11-09 12:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: backport s/fctix/fcitx/ fix from HEAD
+
+2004-11-09 12:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: introduce
+ network::tools::get_interface_status
+
+2004-11-09 10:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/: card.pm: fix regexp given to
+ matching_driver (otherwise smartcard:xxx matches)
+
+2004-11-09 02:45 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/pkgs.pm: reverted pkgs, Sorry
+
+2004-11-09 02:42 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/: lang.pm, pkgs.pm: s/fctix/fcitx. Critical typo
+
+2004-11-08 17:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/: bootloader.pm, do_pkgs.pm, Xconfig/card.pm:
+ backport check_kernel_module_packages() from 10.1 to adapt to
+ dkms proprietary packages
+
+2004-11-08 17:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/: common.pm, install2.pm: cp_af() is missing in
+ perl-MDK-Common 1.1.11-2mdk
+
+2004-11-08 17:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not use slicing when
+ selecting single values
+
+2004-11-08 16:11 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: pt.po, tg.po: updated Tajik file
+
+2004-11-08 15:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/lvm.pm: call pvremove on every PVs when destroying a
+ VG (to clear the LVM2 magic) (bugzilla #11579)
+
+2004-11-07 21:30 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: More translated.
+
+2004-11-07 18:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/: authentication.pm: SmartCard authentication needs
+ pkg castella-pam
+
+2004-11-06 09:31 anoncvs
+
+ * Makefile.common: Initial revision
+
+2004-11-06 08:33 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2004-11-05 20:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: add "Smart Card" authentication
+ (using pam_castella) (as asked by flepied)
+
+2004-11-05 20:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: add "Smart Card" authentication
+ (using pam_castella) (as asked by flepied)
+
+2004-11-05 16:38 Pixel <pixel at mandriva.com>
+
+ * rescue/tree/etc/rc.sysinit: umount /stage1 when /etc/mtab exists
+ to remove a warning
+
+2004-11-05 16:24 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: we don't need "root=/dev/ram3" nor "rw" for rescue
+ since we now pivot_root
+
+2004-11-05 16:19 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/tools.c: we use pivot_root for rescue, so don't umount
+ STAGE2_LOCATION
+
+2004-11-05 16:18 Pixel <pixel at mandriva.com>
+
+ * rescue/tree/etc/rc.sysinit: free up stage1 memory
+
+2004-11-05 16:15 Pixel <pixel at mandriva.com>
+
+ * rescue/tree/etc/rc.sysinit: fix typo
+
+2004-11-05 16:10 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/tools.c: saving stage1 resolv.conf is done in
+ finish_preparing() with no special code needed for rescue (as was
+ done in save_stuff_for_rescue())
+
+2004-11-05 15:39 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/stage1.c, rescue/tree/etc/rc.sysinit,
+ rescue/tree/usr/share/symlinks: keep the tmpfs and rescue in
+ /tmp/stage2 (this allows to mount the rescue read-only)
+
+2004-11-05 14:59 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/network.c: use install/stage2/mdkinst.kernels to check
+ stage2 kernel version instead of
+ install/stage2/live/lib/modules.cz-xxx
+
+2004-11-05 14:53 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: config-stage1.h, directory.c, tools.c:
+ RAMDISK_LOCATION_REL is a better name than RAMDISK_LOCATION
+
+2004-11-05 14:47 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/directory.c: create choose_iso_in_directory() out of
+ try_with_directory()
+
+2004-11-05 14:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Makefile, share/list: do not gzip pm files anymore
+ (since we will soon use compressed loopback, this is not useful
+ anymore)
+
+2004-11-05 14:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: create install/stage2/mdkinst.kernels
+ which contains the list of kernels known by stage2. this
+ replaces looking at install/stage2/live/modules/modules.cz-xxx
+ (why? cuz install/stage2/live is going to be removed!)
+
+2004-11-05 14:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: simplify
+
+2004-11-05 14:19 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: we don't use all_modules.mar any more for all.rdz,
+ instead we simply copy modules from all_modules.list
+
+2004-11-05 14:17 Pixel <pixel at mandriva.com>
+
+ * kernel/: check_mar.pl, update_kernel: - create a .list instead of
+ a .mar for all.rdz - drop the check_mar which is checking much
+ anymore
+
+2004-11-05 14:13 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/Makefile: - no need to build stage1-cdrom nor
+ stage1-network for MOVE - for stage1-full, no special .c is
+ needed for MOVE
+
+2004-11-05 14:04 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/Makefile: cleanup (hoist MOVE_ADDSRC in STAGE1SRC)
+
+2004-11-05 13:59 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/Makefile: remove duplicates in STAGE1OBJS-FULL, this
+ removes make warnings
+
+2004-11-05 12:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: de.po, et.po: updated Estonian and German
+ files
+
+2004-11-05 12:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: hide ifcfg files for non-root
+ users if they contain a WEP key (#12177)
+
+2004-11-05 11:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: hide ifcfg files for non-root
+ users if they contain a WEP key (#12177)
+
+2004-11-05 10:42 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/pcmcia_/probe.c: merge from pcitable
+
+2004-11-04 19:02 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Create cfg dir if needed.
+ Use xorg.conf. Touch /etc/dhcpd.conf.etherboot.kernel if
+ missing. Ignore vmnet for broadcast address. Start reworking
+ PXE support.
+
+2004-11-04 18:53 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Create cfg dir if needed,
+ ignore vmnet for broadcast address. Use xorg.conf. Touch
+ dhcp.conf.etherboot.kernel.
+
+2004-11-04 16:12 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: config-stage1.h, stage1.c, tools.c, tools.h: -
+ create mount_clp_may_preload() out of handle_clp() - rename
+ handle_clp() to handle_move_clp() and simplify its use
+
+2004-11-04 15:02 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/config-stage1.h: add some comments
+
+2004-11-04 14:59 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/eu.po: updated Basque po file
+
+2004-11-04 14:59 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: config-stage1.h, stage1.c: IMAGE_LOCATION_REAL is
+ better named STAGE2_LOCATION in MOVE
+
+2004-11-04 14:56 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/config-stage1.h: - STAGE2_LOCATION is unused in MOVE -
+ IMAGE_LOCATION_REAL is unused in non MOVE
+
+2004-11-04 14:55 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/directory.c: LIVE_LOCATION_REL doesn't exist anymore
+ in MOVE
+
+2004-11-04 14:34 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: config-stage1.h, stage1.c: replace RAW_LOCATION_REL
+ with IMAGE_LOCATION_REL (the absolute symlink will now be
+ relative, but that's ok here)
+
+2004-11-04 14:20 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/tools.c: fix typo
+
+2004-11-04 14:19 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/tools.c: create save_fd() out of copy_file()
+
+2004-11-04 14:07 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: cdrom.c, directory.c: more comment
+
+2004-11-04 14:01 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: stage1.h, tools.c: MODE_RAMDISK is now unused
+
+2004-11-04 13:42 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/stage1.c: simplify since STAGE2_LOCATION is now valid
+ for live installs before pivot_root (due to previous stage1.c
+ commit)
+
+2004-11-04 13:40 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/stage1.c: STAGE2_LOCATION symlink is now relative
+ instead of absolute (relies on the fact that STAGE2_LOCATION and
+ IMAGE_LOCATION are both in /tmp in non MOVE)
+
+2004-11-04 13:37 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/config-stage1.h: new macro IMAGE_LOCATION_REL
+
+2004-11-04 13:32 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: config-stage1.h, stage1.c: rename
+ STAGE2_LOCATION_REL into STAGE2_LOCATION_ROOTED (since
+ STAGE2_LOCATION_REL is not relative, it's simply absolute when
+ chrooted)
+
+2004-11-04 13:17 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/stage1.c: create STAGE2_LOCATION symlink if it is not
+ a directory (well more precisely when it doesn't exist)
+
+2004-11-04 13:16 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: config-stage1.h, directory.c, modules.c, network.c,
+ stage1.c, tools.c: LIVE_LOCATION is better named
+ LIVE_LOCATION_REL without the leading "/"
+
+2004-11-04 13:10 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/modules.c: cleanup code using
+ kernel_module_extension()
+
+2004-11-04 13:08 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/directory.c: use image_has_stage2() (even if not
+ equivalent for rescue since we now check the stage2 stuff
+ instead, but it should do)
+
+2004-11-04 13:02 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: cdrom.c, tools.c, tools.h: test_that_cd() is now
+ image_has_stage2()
+
+2004-11-04 12:53 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: cdrom.c, directory.c, stage1.h, tools.c: drop
+ IS_SPECIAL_STAGE2 in favor of IS_RESCUE
+
+2004-11-04 12:40 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: network.c, url.c, url.h: create str_ftp_error()
+
+2004-11-02 22:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: perl_checker cleanups
+
+2004-11-02 20:46 rstandtke
+
+ * perl-install/share/po/de.po: some fixes
+
+2004-11-02 15:04 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/network.c: normalize code
+
+2004-11-02 15:00 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: config-stage1.h, network.c, tools.c: rename
+ MEM_LIMIT_RAMDISK into MEM_LIMIT_DRAKX
+
+2004-11-02 14:58 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/network.c: normalize code
+
+2004-11-02 14:46 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: disk.c, network.c: use IMAGE_LOCATION_DIR where it
+ should be
+
+2004-11-02 14:45 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: disk.c, disk.h, network.c, network.h, stage1.c,
+ tools.c, tools.h: compile less things when MANDRAKE_MOVE is
+ defined (needed so that future commits can restrict define's in
+ config-stage1.h)
+
+2004-11-02 14:14 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/directory.c: cleanup (remove warning when compiling
+ with MANDRAKE_MOVE defined)
+
+2004-11-02 12:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: harddrake/data.pm, standalone/harddrake2: display
+ more information
+
+2004-11-02 12:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (dmidecode) provide more fields
+
+2004-11-02 12:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (computer_info) simplify
+
+2004-11-02 12:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_steps.pm: (setupBootloaderBefore)
+ dmidecode() was renamed as computer_info()
+
+2004-11-02 12:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (dmidecode) handle multiple
+ devices with same name
+
+ (computer_info) split it out of dmidecode()
+
+2004-10-29 18:02 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Anthill #1134 - advise user
+ about anacron.
+
+2004-10-29 01:29 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: corrections of errors
+ gi/perl-install/share/po/da.po
+
+2004-10-28 14:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/isdn_consts.pm: support Philips
+ Semiconductors DSL card
+
+2004-10-28 13:29 Vincent Guardiola <vguardiola at mandriva.com>
+
+ * perl-install/authentication.pm: remove idmap from winbind AD
+ change description for Active directory
+
+2004-10-28 13:07 Vincent Guardiola <vguardiola at mandriva.com>
+
+ * perl-install/authentication.pm: Remove sasl entry Add check
+ button for tls
+
+2004-10-28 10:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: bump buildrequires on ldetect and
+ requires on ldetect-lst so that we've working support for freebox
+ with USB link
+
+2004-10-28 10:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-27mdk
+
+2004-10-28 10:31 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/pkgs.pm: IA-64 and X86-64 are full 64-bit arches
+ thus don't need kernel-enterprise
+
+2004-10-28 10:28 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/pkgs.pm: IA-64 and X86-64 are full 64-bit arches and
+ thus don't need kernel-enterprise
+
+2004-10-27 18:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: backport working drakups
+
+2004-10-27 18:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: detect_devices.pm: (getUPS) fix again MGE USB
+ UPSes
+
+2004-10-27 18:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getUPS) fix again MGE USB UPSes
+
+2004-10-27 18:20 Warly <warly at mandriva.com>
+
+ * perl-install/install_any.pm: add more log into find_root_part
+
+2004-10-27 16:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: warn about created
+ partition with a given mount point but not formatted
+
+2004-10-27 12:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/hd_gtk.pm: use ToggleButton instead of
+ Button so that selected partition is visually toggled
+
+2004-10-27 12:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (mapIntfToDevice) do not try to
+ match usb devices since ldetect doesn't return enough data (thus
+ fixing 9box string)
+
+2004-10-27 12:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/: raid.pm, diskdrake/interactive.pm: since we need
+ mdadm, ensure we have it (bugzilla #12146)
+
+2004-10-27 11:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, bootloader.pm: - handle setting memsize
+ mem= kernel parameter in a special function - rely on
+ pack_append() to remove dups (using $uniq_dict_appends) in
+ set_append_with_key() (drawback: it doesn't keep the order
+ anymore)
+
+2004-10-27 10:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, bootloader.pm, install_steps.pm: split
+ {get,set}_append() into {get,set}_append_with_key() and
+ {get,set}_append_simple()
+
+2004-10-27 10:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: many kernel parameters alike
+ "console=tty0 console=ttyS0,57600" can take different values, so
+ we now take the safe side and only remove dups for parameters we
+ know the last parameter is used (bugzilla #12055)
+
+2004-10-27 10:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: remove dead code
+
+2004-10-27 10:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: nicer
+
+2004-10-27 09:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: modifying $e->{append} is useless since we
+ override it with $append
+
+2004-10-26 17:39 Warly <warly at mandriva.com>
+
+ * perl-install/install_any.pm: include support of the oem
+ configuration file to display the correct product name
+
+2004-10-26 17:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/: bootloader.pm, install_steps.pm,
+ Xconfig/various.pm, standalone/bootloader-config,
+ standalone/drakboot: detectloader must handle specially
+ raid-extra-boot=mbr-only (bugzilla #12089)
+
+2004-10-26 17:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: do not try to run killall until it has
+ been installed
+
+2004-10-26 16:33 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/: bootloader.pm: run grub chrooted
+
+2004-10-26 16:29 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/fs/: type.pm: older partition types (ntfs) are also
+ available to x86_64
+
+2004-10-26 16:27 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/: list.x86_64: add 'synaptics' module so that
+ testing works
+
+2004-10-26 16:08 Vincent Guardiola <vguardiola at mandriva.com>
+
+ * perl-install/authentication.pm: Fix net join for winbind Changer
+ order dialog in AD
+
+2004-10-26 15:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/: run_program.pm: do not use die when forked, use
+ log::l + c::_exit instead
+
+2004-10-26 15:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/: raid.pm: newly created raids must have a fs_type
+ (this was dropped in rev 1.45, it was an error)
+
+2004-10-26 14:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: help perl_checker
+
+2004-10-26 12:29 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/eu.po: updated Basque file
+
+2004-10-26 11:20 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/crypto.pm: Remove spurious "my"
+
+2004-10-26 11:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps.pm,
+ install_steps_interactive.pm: in upgrade, when we need to migrate
+ device names, we must write the fstab
+
+2004-10-26 10:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps.pm,
+ install_steps_interactive.pm: in upgrade, when we need to migrate
+ device names, we must write the fstab
+
+2004-10-26 10:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: configure sshd to use PAM when
+ needed (sshd config file is modified, but i did not test more)
+
+2004-10-25 19:40 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Some fixed
+
+2004-10-25 18:12 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: Merge French translations from
+ cooker
+
+2004-10-25 14:40 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: eu.po, gl.po: updated Basque and Galician
+ files
+
+2004-10-21 12:51 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/printerdrake: - backport fixes to
+ MDK-10-update
+
+2004-10-21 12:36 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/harddrake2: - backport patches to
+ MDK-10-update branch for oem
+
+2004-10-21 09:16 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: remove trailing slashes
+
+2004-10-20 11:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/gl.po: updated Galician file
+
+2004-10-19 18:23 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Repair FTP supplementary media with
+ overriding of rpmsrate and compssUsers.pl
+
+2004-10-19 15:11 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/crypto.pm: There are mirrors in many new countries
+ now. (and sort the list)
+
+2004-10-19 14:41 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: This deserves an
+ explanation
+
+2004-10-19 14:39 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: crypto.pm, install_any.pm,
+ install_steps_interactive.pm, pkgs.pm: Installation with a ftp
+ supplementary media (for mini-isos) : inline the mirror list
+ (since fetching it causes weird network problems). Fix the
+ handling of relative urls in ftp media when fetching hdlists
+ file.
+
+2004-10-19 10:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/net_monitor: really fix typo (ie revert
+ gtknew() patch)
+
+2004-10-19 10:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: no need to set $::o->{locale} anymore (it
+ was introduced in 1.172, maybe for create_box_with_title(), but
+ doesn't seem useful anymore)
+
+2004-10-19 10:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/net_monitor: fix typo
+
+2004-10-19 10:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/net_monitor: simplify
+
+2004-10-19 09:57 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/printerdrake: - perl_checker fixes
+
+2004-10-19 09:26 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/printerdrake: - don't hardcore distroname
+ - don't trigger help system when mandrake-doc-common is not
+ installed - don't trigger bug report in oem mode
+
+2004-10-19 09:17 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/harddrake2: - don't trigger help system
+ when mandrake-doc-common is not installed - don't trigger bug
+ report in oem mode
+
+2004-10-19 09:11 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/harddrake2: - don't hardcode distro name
+ (usefull for oem to change the distro name at only one place)
+
+2004-10-18 18:38 Warly <warly at mandriva.com>
+
+ * perl-install/crypto.pm: update version checking code of crypto.pm
+
+2004-10-18 14:36 Antoine Ginies <aginies at mandriva.com>
+
+ * make_boot_img: remove build of ka.img (default build)
+
+2004-10-17 22:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-10-17 15:17 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates
+ gi/perl-install/share/po/da.po
+
+2004-10-16 19:40 rstandtke
+
+ * perl-install/share/po/de.po: added some translations
+
+2004-10-16 19:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: (update) do not re-select
+ the default interface every 5 seconds
+
+2004-10-15 17:45 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: am.po, es.po, eu.po, it.po: updated
+ Basque and Amharic files
+
+2004-10-15 15:37 Antoine Ginies <aginies at mandriva.com>
+
+ * make_boot_img: remove boot image (bmp)
+
+2004-10-15 14:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/adsl.pm: cleanup
+
+2004-10-15 14:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/netconnect.pm: make perl_checker happy
+
+2004-10-15 14:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/: tools.pm, netconnect.pm: cleanup thanks to
+ perl_checker
+
+2004-10-15 11:29 Antoine Ginies <aginies at mandriva.com>
+
+ * make_boot_img: add support for ka.img
+
+2004-10-14 17:58 Pixel <pixel at mandriva.com>
+
+ * rescue/list: add /sbin/lvm2 to the rescue
+
+2004-10-14 17:58 Pixel <pixel at mandriva.com>
+
+ * rescue/devices.pl: create /dev/md* devices in rescue
+
+2004-10-14 17:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/lvm.pm: no need to run vgscan and vgchange in
+ standalone (nb: /etc/lvmtab is no more used, so i also dropped
+ that check)
+
+2004-10-14 09:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/services.pm: simplify
+
+2004-10-14 09:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/services.pm: simplify
+
+2004-10-14 08:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/tools.pm: simplify
+
+2004-10-14 08:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/tools.pm: cleanup thanks to perl_checker
+
+2004-10-14 08:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakups: perl_checker compliance
+
+2004-10-14 08:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/fileshareset: cleanup
+
+2004-10-14 08:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/fileshareset: perl_checker compliance
+
+2004-10-14 08:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/: service_harddrake, harddrake2: cleanup
+ thanks to perl_checker
+
+2004-10-14 08:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/compssUsers.pl: remove unneeded parentheses
+
+2004-10-14 05:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: document UUID md field
+
+2004-10-14 05:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/raid.pm: put UUID instead of devices in mdadm.conf
+ to be more device naming independant (as requested by Luca Berra
+ on cooker)
+
+2004-10-14 05:52 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2004-10-14 05:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: even if bugzilla
+ #9755 says 24 bpp is not valid for vmware, Nora Etukudo says the
+ contrary on cooker. the limitation seems to be "The guest X
+ server must run at the same depth and bpp as the host" which is
+ hard to enforce in XFdrake
+
+2004-10-14 04:33 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: mkisofs "-P" option is now "-publisher"
+
+2004-10-13 08:43 Antoine Ginies <aginies at mandriva.com>
+
+ * mdk-stage1/stage1-data/stage1-with-ka.tar.bz2: add stage1 with
+ ka-tools
+
+2004-10-13 08:39 Antoine Ginies <aginies at mandriva.com>
+
+ * mdk-stage1/: network.c, network.h, stage1.c, stage1.h, tools.c,
+ tools.h, url.c, url.h: add new installation method (ka)
+
+2004-10-13 07:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: remove TODO entry regarding
+ configurnig programs that uses fontconfig
+
+2004-10-13 06:32 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2004-10-13 06:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: make perl_checker
+ happy
+
+2004-10-13 04:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps_interactive.pm: don't ask the
+ security level in firewire meta_class
+
+2004-10-13 04:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/fileshareset: "portmap status" prints
+ "portmap (pid XXXX) is running..." which bothers progs calling
+ fileshareset (eg: gnome)
+
+2004-10-13 03:25 Pixel <pixel at mandriva.com>
+
+ * help.msg.xml, make_boot_img: remove the "expert" entry
+
+2004-10-12 06:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-26mdk
+
+2004-10-12 06:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (get_eth_cards) workaround more
+ buggy drivers that returns a bogus driver name for the GDRVINFO
+ command of the ETHTOOL ioctl
+
+2004-10-12 05:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-10-12 04:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (del_intf) fix crash
+ introduced by trainee just before the release :-(
+
+2004-10-12 01:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: in grub menu.lst, keep previous
+ "serial ..." and "terminal ..." lines (bugzilla #12054)
+
+2004-10-11 10:04 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: Updated Dutch (nl) translation by
+ Reinout van Schouwen <reinout@cs.vu.nl> * DrakX
+
+2004-10-11 09:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-25mdk
+
+2004-10-11 09:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (get_eth_cards) fix another
+ lying module
+
+2004-10-11 07:39 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: use k3b-dvd by default
+
+2004-10-11 04:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-24mdk
+
+2004-10-10 13:26 vljubovic
+
+ * perl-install/share/po/bs.po: Fixing Bosnian translation
+
+2004-10-10 08:54 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po:
+ updates gi/perl-install/share/po/da.po
+
+2004-10-10 07:48 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: es.po, nb.po: updated Spanish and Bokmål
+ files
+
+2004-10-10 07:12 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/fa.po: updated Persian file
+
+2004-10-10 07:08 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ja.po: updated Japanese file
+
+2004-10-10 06:42 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/uk.po: updated Ukrainian file
+
+2004-10-10 06:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/it.po: updated Italian file
+
+2004-10-10 06:29 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fr.po, hu.po, pl.po, pt.po, uz.po,
+ uz@Latn.po, zh_TW.po: updated Uzbek files; checked various po
+ files against latest *.pot
+
+2004-10-09 17:55 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated
+
+2004-10-09 11:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: remove
+ /etc/sysconfig/network-scripts/ethX files
+
+2004-10-09 11:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (configureNetwork2) remove
+ /etc/sysconfig/network-scripts/ethX files that may have been
+ created by sagem scripts
+
+2004-10-09 11:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_conf_backend) don't write
+ ifcfg-ppp0 for static/dhcp connections
+
+2004-10-09 02:51 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2004-10-08 17:05 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: jorge
+
+2004-10-08 13:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/.perl_checker: perl_checker cannot currently parse
+ the "encoding" and the "utf8" modules
+
+2004-10-08 12:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: one more change for 10.1-23mdk
+
+2004-10-08 12:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: try /dev/ttyS14 too for
+ serial modems (ie internal PCI modems that don't need any driver
+ but export a serial port instead)
+
+2004-10-08 12:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-23mdk
+
+2004-10-08 12:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: start slmodemd when
+ installing it (thus preventing the average user to have to
+ restart his machine in order to get a working connection)
+
+2004-10-08 11:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix H[CS]F modems
+ configuration (kernel packages were renamed)
+
+2004-10-08 11:12 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: Simplify complicated Flags for ppp
+ and kdenetwork-ppp
+
+2004-10-08 11:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: fix encapsulation for
+ chinese ISPs (Funda Wang, #10965)
+
+2004-10-08 10:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: - install ppp for RTC modems -
+ install kppp too if KDE is selected - install drivers for HSF and
+ HCF modems
+
+2004-10-08 10:22 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: add shareutils installed by default
+ in SYSTEM
+
+2004-10-08 08:41 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: 1660:Welcome to the Printer Setup
+ Wizard
+
+2004-10-08 06:53 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: Missing French translations
+
+2004-10-08 06:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-22mdk
+
+2004-10-08 06:27 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: et.po, fr.po: updated Estonian po file
+
+2004-10-08 05:05 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: Fixes
+
+2004-10-08 03:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: on a recent kernel, we remove any
+ existing devfs= kernel option to enable udev
+
+2004-10-07 18:16 Thomas Backlund <tmb at mandrake.org>
+
+ * perl-install/share/po/sv.po: Updated translations, 100%
+ translated, was 193 fuzzy, 138 untranslated.
+ Whopee.... Swedish translations are now also at 100% ....
+
+2004-10-07 15:40 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/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,
+ pl.po, pt.po, pt_BR.po, ro.po, ru.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
+
+2004-10-07 15:03 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: updated
+ pot file
+
+2004-10-07 14:39 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: corrected "Morocco" name;
+ converted to UTF-8
+
+2004-10-07 14:01 Thomas Backlund <tmb at mandrake.org>
+
+ * perl-install/share/po/fi.po: update translations, 100%
+ translated, was 22 fuzzy, 2 untranslated.
+
+2004-10-07 11:18 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, 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, pl.po, pt.po, pt_BR.po, ro.po, ru.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
+
+2004-10-07 10:40 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-10-07 10:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: add chinese ISPs
+ (fundawang@yeah.net, #10965)
+
+2004-10-07 09:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: explain
+
+2004-10-07 07:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/modem.pm: (first_modem) fix crash at install
+ time
+
+2004-10-07 03:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/parse.pm: fix parsing fully commented
+ Section. eg:
+
+ #Section "Extensions" # Option "Composite" "Enable" #
+ Option "RENDER" "Enable" #Endsection
+
+2004-10-07 02:44 Pixel <pixel at mandriva.com>
+
+ * globetrotter/move.pm, move/move.pm,
+ perl-install/install_steps.pm, perl-install/Xconfig/default.pm,
+ perl-install/Xconfig/main.pm, perl-install/Xconfig/various.pm,
+ perl-install/harddrake/autoconf.pm: - XFdrake can detect a
+ auxmouse which was not detected by mousedrake so we need to call
+ various_xfree_conf() - this implies adding parameter $do_pkgs to
+ a few functions
+
+2004-10-06 15:53 Thomas Backlund <tmb at mandrake.org>
+
+ * perl-install/share/po/sv.po: updated translations, was 269
+ fuzzy, 193 untranslated,
+ is now 171 fuzzy, 136 untranslated, the rest will be done by
+ tomorrow (today?)
+
+2004-10-06 11:22 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: jorge
+
+2004-10-06 10:45 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/am.po: updated Amharic file
+
+2004-10-06 09:42 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nb.po: updated Bokmål file
+
+2004-10-06 08:44 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nb.po: updated Bokmål file
+
+2004-10-06 04:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: log one more change in 10.1-21mdk
+
+2004-10-06 04:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-21mdk
+
+2004-10-06 04:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getUPS) fix detecting UPS
+ devices
+
+2004-10-06 03:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix regexp decompose_vmlinuz_name
+ (broke with kernel vmlinuz-2.6.8.1-12.1mdk)
+
+2004-10-06 02:58 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_steps_auto_install.pm: Unneccessary in
+ cooker
+
+2004-10-05 18:19 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2004-10-05 13:22 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/crypto.pm: Further normalization of updates
+ directories.
+
+2004-10-05 13:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: (font_choice) remove debug
+ message
+
+2004-10-05 12:58 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_steps_auto_install.pm: Add a dummy
+ ask_yesorno for autoinstalls
+
+2004-10-05 12:57 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/crypto.pm: New mirror structure for official updates
+
+2004-10-05 11:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-20mdk
+
+2004-10-05 10:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getUPS) add proper support for
+ "American Power Conversion|Back-UPS"
+
+2004-10-05 10:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: in manual adding: - let's have
+ unique UPS names in the list - fix reading driver from the list
+
+2004-10-05 10:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: write config in pure wizard mode
+
+2004-10-05 09:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: (writeconf) restart upsd daemon
+
+2004-10-05 09:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/pkgs.pm: (supplCDMountPoint) perl_checker cleanup
+
+2004-10-05 09:23 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: fix madwifi_kernel in madwifi-kernel
+
+2004-10-05 09:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile.config: add TMPDIR
+
+2004-10-05 09:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: use TMPDIR
+
+2004-10-05 08:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getUPS) fix port for MGE's USB
+ UPSes
+
+2004-10-05 08:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm: don't install updates when meta_class
+ is firewall
+
+2004-10-05 08:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getUPS) fix drivers
+
+2004-10-05 08:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps_interactive.pm: for meta_class
+ firewall, call the general netconnect function
+
+2004-10-05 08:42 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/services.pm: fixed encoding problem with the output
+ of start/stop init scripts (the output must be forced to utf-8 in
+ order to have it displayed in gtk2)
+
+2004-10-05 08:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getUPS) typo fix
+
+2004-10-05 08:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: install nut earlier
+
+2004-10-05 08:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: fix installing nut
+
+2004-10-05 08:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps_interactive.pm: don't
+ warnAboutNaughtyServers if meta_class is firewall
+
+2004-10-05 08:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_gtk.pm: no special theme for meta_class
+ firewall
+
+2004-10-05 08:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/netconnect.pm: don't configure firewall
+ after configuring network during install (in summary you can
+ configure firewall directly)
+
+2004-10-05 08:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_gtk.pm: no special theme for meta_class
+ firewall
+
+2004-10-05 08:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getUPS) detect "American Power
+ Conversion" UPS too
+
+2004-10-05 07:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: fix closing import dialog
+ (#11052)
+
+2004-10-05 07:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (save) applying changes can
+ be quite time expensive, especially with ppp and wifi connections
+ thus let's show the same "wait" dialog like in the old interface
+
+2004-10-05 04:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: remove bad uniq now unneeded
+
+2004-10-05 04:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table.pm: don't use
+ devices::part_number(), otherwise it fails with c0d0p* devices
+
+2004-10-05 04:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::ComboBox->set_text) do not die in
+ official release
+
+2004-10-05 04:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-19mdk
+
+2004-10-05 03:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: add a few new ADSL ISP :
+ Argentina (Speedy), Austria (AON), Morrocco (Maroc Telecom) and
+ Thailand (Asianet) (baud)
+
+2004-10-05 03:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: fix wrong VCI which wasn't
+ in hexa for brazililan Velox/Telemar ISP (baud)
+
+2004-10-05 02:29 Pixel <pixel at mandriva.com>
+
+ * tools/specific_arch: specific_arch will now return only the
+ specific arch file, not the main one (which is what we want for
+ perl-install/share/symlinks, perl-install/share/list and
+ rescue/list)
+
+2004-10-05 02:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: remove unused specific_arch
+
+2004-10-05 02:26 Pixel <pixel at mandriva.com>
+
+ * kernel/Makefile: no need for using specific_arch, it's much nicer
+ done with if's in update_kernel
+
+2004-10-04 16:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (apply) recompute NETWORK
+ and BROADCAST fiels in manage interface
+
+2004-10-04 13:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (manage) use both type and
+ device name in non-ethernet interfaces list
+
+2004-10-04 13:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (build_notebook) do not
+ crash if BOOTPROTO is empty, use 'none' by default (#11899)
+
+2004-10-04 11:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-18mdk
+
+2004-10-04 11:34 rcasha
+
+ * perl-install/share/po/mt.po: var
+
+2004-10-04 11:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not lose GATEWAYDEV if it
+ is a non wireless one and a static wireless card is configured
+ (and vice versa)
+
+2004-10-04 10:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: remove what should had
+ never been commited
+
+2004-10-04 10:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: typo fix in 10.1-17mdk's changelog
+
+2004-10-04 09:39 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/po/fr.po: Fix "Corporate Desktop" advertisment
+
+2004-10-04 09:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-17mdk
+
+2004-10-04 09:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: do not disable glx
+ when switching from nvidia driver to nv (indirect support,
+ #11285)
+
+2004-10-04 09:20 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: 1645: NOTE: Depending on the
+ printer model and the printing system up to %d MB of additional
+ software will be installed.
+
+2004-10-04 09:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: do not failled when hw
+ db is corrupted
+
+2004-10-04 08:25 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: make perl_checker happy
+
+2004-10-04 07:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: write wlan-ng config files
+ for prism2 drivers
+
+2004-10-04 07:50 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: mdkkdm is now the default again
+
+2004-10-04 07:31 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/c/smp.c: 64-bit fixes for x86_64
+
+2004-10-04 07:30 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/fs/type.pm: re-enable xfs on x86_64, for testing
+
+2004-10-04 07:26 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * rescue/list.x86_64: add grub files
+
+2004-10-04 07:25 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/list: lib64 fixes, add im-cedilla
+
+2004-10-04 07:25 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/list.x86_64: updates for xorg
+
+2004-10-04 07:25 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: x86_64 is a lib64 platform, so
+ handle nvidia glx here too (and ati in the future)
+
+2004-10-04 07:24 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/Makefile: handle lib64 dirs, build pcmcia stuff on
+ x86_64 too, handle arch-specific symlinks additions.
+
+2004-10-04 07:16 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/symlinks.x86_64: extra links on x86_64
+
+2004-10-04 07:14 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/rescue-gui.c: allow recovery of MS bootloader on x86
+ too
+
+2004-10-04 07:13 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * make_boot_img: full acpi support on x86_64, generate the same
+ images as on x86
+
+2004-10-04 05:41 rstandtke
+
+ * perl-install/share/po/de.po: some additions
+
+2004-10-04 05:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-16mdk
+
+2004-10-04 04:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: fix inverted translation for
+ autologin
+
+2004-10-04 02:20 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/it.po: updated Italian file
+
+2004-10-03 23:46 rcasha
+
+ * perl-install/share/po/mt.po: var
+
+2004-10-03 19:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: remove TYPE field in ifcfg
+ files if connection type isn't ADSL
+
+2004-10-03 19:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: perl_checker fix
+
+2004-10-03 18:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not lose ONBOOT setting
+ for manual/dhcp dsl connections
+
+2004-10-03 18:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: misc sagem fixes: - allow to
+ write static ip in eagle-usb.conf (write this file later) - load
+ sagem specific modules/programs before config is written - do not
+ reset IP address each time it is configured - automatically guess
+ gateway for static connections
+
+2004-10-03 18:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: fix typo
+
+2004-10-03 18:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: (sagem_set_parameters,
+ adsl_conf_backend): write static ip in eagle-usb.conf if needed
+ for sagem modems, else erase it
+
+2004-10-03 16:09 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: Small updates for ca
+
+2004-10-03 16:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not break the "IP %s
+ address is usually reserved" warning
+
+2004-10-03 12:49 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fa.po, pt.po: updated Persian file; put
+ back current version of Portuguese file
+
+2004-10-03 10:45 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2004-10-03 09:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: (configureNetwork)
+ load only ethernet modules before easy_dhcp (this will load
+ firewire modules after other ethernet modules, so firewire
+ interfaces won't always take the name eth0)
+
+2004-10-03 05:49 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates soft/menu-messages/da.po
+ soft/mdkonline/po/da.po soft/mountloop/po/da.po
+ gi/perl-install/share/po/da.po
+
+2004-10-02 12:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: fix keyboard names
+
+2004-10-02 06:13 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cs.po: updated Czech file
+
+2004-10-01 15:27 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/uk.po: updated Ukrainian file
+
+2004-10-01 14:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: create $intf->{sagem} when
+ needed before checking it exists ... (make sagem usable again
+ with dhcp/static connections)
+
+2004-10-01 11:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-15mdk
+
+2004-10-01 11:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: perl_checker cleanup
+
+2004-10-01 11:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-14mdk
+
+2004-10-01 11:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake.sh: run harddrake
+ service on stop
+
+2004-10-01 11:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: on stop blacklist
+ snd-usb-audio
+
+2004-10-01 09:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/mouse.pm: (detect) fix synaptics auto-detection
+
+2004-10-01 07:05 Daouda Lo <daouda at mandriva.com>
+
+ * tools/cvslog2changelog.pl: - added Romain
+
+2004-10-01 06:46 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2004-10-01 06:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/man/C/man8/drakconnect.8: typo fixes
+
+2004-10-01 06:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-13mdk
+
+2004-10-01 06:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: try harder to include IMs on CDs
+
+2004-10-01 06:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: add --wizard option in order to
+ directly run the wizard
+
+2004-10-01 06:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: do not show banner when embedded
+
+2004-10-01 04:21 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/network/network.pm: call the scripts in
+ /etc/sysconfig/network-scripts/hostname.d like the network
+ scripts are doing when changing the hostname.
+
+2004-10-01 04:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/: compssUsers-discovery.pl,
+ compssUsers-powerpack.pl, compssUsers-powerpackplus.pl,
+ compssUsers.pl: dynamically choose the compssUsers based on
+ meta_class, so now we have only one compssUsers.pl
+
+2004-10-01 04:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: - prosuite is now named powerpackplus -
+ simplify the code searching for the meta_class
+
+2004-10-01 03:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, pkgs.pm: fix logging
+ rpmsrate_flags_chosen
+
+2004-10-01 03:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: revert part of the commit that was
+ not done on purpose (nb: don't modify rpmsrate *after* running
+ clean-rpmsrate)
+
+2004-09-30 22:40 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: 1612: Edit selected server
+
+2004-09-30 18:21 Marco De Vitis <mdv at spin.it>
+
+ * perl-install/share/po/it.po: fix
+
+2004-09-30 16:39 Thomas Backlund <tmb at mandrake.org>
+
+ * perl-install/share/po/fi.po: Updated translations, 100%
+ translated, was 17 fuzzy, 78 untranslated.
+
+2004-09-30 12:39 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ja.po: updated po file
+
+2004-09-30 11:12 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/: compssUsers-discovery.pl,
+ compssUsers-powerpack.pl, compssUsers-powerpackplus.pl,
+ compssUsers.desktop, compssUsers.pl, compssUsers.powerpack,
+ compssUsers.server, rpmsrate: Update
+
+2004-09-30 10:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: typo fix
+
+2004-09-30 10:12 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/net_applet: - Numeric comparisons
+
+2004-09-30 10:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (configure_kdeglobals) set KDE in m17n
+ emvironment if needed
+
+2004-09-30 09:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: kinds() must return all kinds
+
+2004-09-30 09:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/: authentication.pm, install_steps_interactive.pm,
+ standalone/drakauth: only allow Active Directory for the
+ corporate product
+
+2004-09-30 09:15 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-09-30 09:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/lvm.pm: don't die when device-mapper is missing
+ (occurs on 2.4 kernel) (bugzilla #11834)
+
+2004-09-30 08:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getUPS) provide more data on UPS
+ (arnaud quette)
+
+2004-09-30 08:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: list tablets too with mice
+
+2004-09-30 08:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: harddrake/data.pm,
+ standalone/icons/harddrake2/ups.png: use a distinct icon for UPS
+ devices in harddrake GUI
+
+2004-09-30 07:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: split localedrake menu entry in two
+ ones: - one for user config - one for system (embedded in mcc)
+
+2004-09-30 07:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: fix UPS devices listed in both
+ "UPS" and "unknown" classes
+
+2004-09-30 07:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: add one missing log in 10.1-12mdk
+
+2004-09-30 07:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-12mdk
+
+2004-09-30 06:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: list all mice and keyboards (thus
+ lowering unknown hardware in hwdb-clients)
+
+2004-09-30 06:32 Vincent Guardiola <vguardiola at mandriva.com>
+
+ * perl-install/authentication.pm: Remove ssl config in ldap Add
+ pam_mkhomedir for ldap
+
+2004-09-30 06:31 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: 1425:WARNING: this device
+
+2004-09-30 06:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: translate reverted messages so that
+ they got smoothly uncommented once drakauth changes are merged
+ back after mdk10.1 release
+
+2004-09-30 06:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-09-30 06:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getInputDevices) introduce it in
+ order to list input devices
+
+2004-09-30 05:13 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, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.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
+
+2004-09-30 03:31 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, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.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
+
+2004-09-30 03:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: revert enhancement commit since
+ we are in deep freeze
+
+2004-09-30 02:47 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: hr.po, sv.po: updated Croatian and
+ Swedish files
+
+2004-09-30 02:36 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/authentication.pm: removed "\t" and "\n" out of
+ translatable strings to avoid useless duplication; fixed English
+ typographic errors (don't put spaces before colons!).
+
+2004-09-29 23:37 rcasha
+
+ * perl-install/share/po/mt.po: var
+
+2004-09-29 20:46 Vincent Guardiola <vguardiola at mandriva.com>
+
+ * perl-install/authentication.pm: Add more new entry for LDAP
+
+2004-09-29 17:50 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2004-09-29 17:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: check every 5 seconds
+ (instead of 20) for new or disconnected interfaces (#11780)
+
+2004-09-29 09:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: - disable the new gtk smart
+ search which display an entry box - fix return value of
+ key_press_event for some cases (otherwise arrow keys do not
+ work)
+
+2004-09-29 08:24 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/es.po: corrected typo
+
+2004-09-29 07:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: ensure gdk loaders, gtk immodules
+ and pango modules lists are correct
+
+2004-09-29 07:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone.pm: (version) print translated usage
+ message (#5657)
+
+2004-09-29 06:15 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: install_urpmi now writes a names
+ file for each media
+
+2004-09-29 06:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: fix titi sux
+
+2004-09-29 05:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (write) fix setting fonts at install time
+
+2004-09-29 05:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, partition_table/raw.pm: don't die when
+ failing to open a device (to get its geometry), skip it instead
+ (as used to be done before partition_table::raw::get_geometries()
+ was introduced)
+
+2004-09-29 05:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: (write_preload_conf) simplify
+
+2004-09-29 04:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: (write_preload_conf) preload nvram on
+ laptops
+
+2004-09-29 04:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: add raid-extra-boot=mbr when installing on
+ mdX (bugzilla #11699)
+
+2004-09-29 04:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-09-28 19:14 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2004-09-28 15:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: test if IP address is already
+ used for static interfaces (do not test for sagem DSL devices
+ since it may use many ifcfg files)
+
+2004-09-28 11:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: sort wireless entries
+
+2004-09-28 09:32 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: More logs on install_urpmi
+
+2004-09-28 08:24 Pixel <pixel at mandriva.com>
+
+ * rescue/install_bootloader: handle /etc/mandrakelinux-release
+
+2004-09-28 07:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: use Driver "keyboard" instead of
+ "Keyboard" (for Xorg 6.8)
+
+2004-09-28 07:03 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: madwifi_pci => ath_pci
+
+2004-09-28 06:55 Frederic Lepied <flepied at mandriva.com>
+
+ * kernel/list_modules.pm: added ath_pci wireless driver
+
+2004-09-28 04:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps.pm, install_steps_interactive.pm,
+ printer/main.pm, printer/printerdrake.pm,
+ standalone/printerdrake: - make
+ printer::printerdrake::install_spooler() work with an optional
+ $in - many functions now take $security (which used to be taken
+ from $in during install) - fix some functions with empty
+ prototype but still using a parameter - remove some unused
+ variable - rename some $_foo vars to $foo since those vars are
+ used - add some undef to some function calls to be minimally
+ perl_checker compliant - perl_checker compliant optional
+ parameters in start_spooler_on_boot(), install_spooler()
+
+2004-09-27 17:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: I sux, fix priority
+
+2004-09-27 16:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/mouse.pm: use input/mice instead of psaux for
+ synaptics touchpads (#11771) (input/mice won't work with 2.4
+ kernels, but it doesn't matter since the config file is rewritten
+ at boot on major kernel change, and synaptics devices are not
+ configured for 2.4 kernels)
+
+2004-09-27 15:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: (bg_command_as_root) use kdesu in
+ kde
+
+2004-09-27 15:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: (get_default_gateway_interface)
+ try to detect default connection in this order : adsl > isdn >
+ modem > ethernet
+
+2004-09-27 15:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: ask to connect for
+ isdn_external too
+
+2004-09-27 14:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: don't scramble
+ $netcnx->{type}
+
+2004-09-27 14:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: ask to connect for modem/isdn
+ connections too (crappy fix, this needs to be redesigned once
+ 10.1 is out)
+
+2004-09-27 12:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/lvm_PV.pm: fix typos
+
+2004-09-27 12:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/lvm_PV.pm: simplify and handle LVM2,
+ *but* since creating a LVM2 PV on a non partitioned drive doesn't
+ modify the MBR, it won't help if the MBR is empty or a valid dos
+ partition table, since those are checked first... but i won't
+ change this so late in the release cycle
+
+2004-09-27 12:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: fix last commit
+
+2004-09-27 12:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: we really support all
+ linmodems (including Hsf and Hcf ones) with 2.6 kernels
+
+2004-09-27 11:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: (get_user_or_group) list users
+ rather than groups when requested for (anthill #1161)
+
+2004-09-27 10:45 Warly <warly at mandriva.com>
+
+ * perl-install/share/: rpmsrate.corpo-desktop,
+ rpmsrate.corpo-server: add ximian connector with evolution and
+ change mdkonline to mdkonline-backend
+
+2004-09-27 10:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/dos.pm: fail if
+ legacy_sectors_per_track or legacy_max_head doesn't exist instead
+ of returning garbage (bugzilla #11738)
+
+2004-09-27 10:01 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cs.po: updated Czech file
+
+2004-09-27 09:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/uk.po: updated Ukrainian file
+
+2004-09-27 08:07 Pixel <pixel at mandriva.com>
+
+ * isolinux-graphic.bmp: 10.1 final image
+
+2004-09-27 08:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/: pkgs.pm, install2.pm: better logging
+
+2004-09-27 06:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/dos.pm: perl_checker compliance
+
+2004-09-27 06:35 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: bn.po, uk.po: updated Bengali and
+ Ukrainian files
+
+2004-09-27 06:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: remove from perl-Gtk2 directories from
+ /tmp/list to have less warnings
+
+2004-09-27 06:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: fix typo
+
+2004-09-27 05:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/dos.pm: don't call
+ compute_nb_cylinders() before checking {sectors} and {heads} are
+ valid
+
+2004-09-27 05:27 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/rpmsrate.corpo-server: mandrakegalaxy
+
+2004-09-27 05:20 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/rpmsrate.corpo-desktop: clean-ups (factor out)
+ + fixes for lib64 packages
+
+2004-09-27 04:37 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: fixed KDE font names to match currently
+ shiped Xfs font names
+
+2004-09-26 15:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: I am stupid, start when
+ asked to start, stop when asked to stop
+
+2004-09-26 14:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: fix again running processes
+ detection
+
+2004-09-26 14:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: (ConnectNow) specify device to
+ iwconfig when applying settings (partial fix for #11279)
+
+2004-09-26 10:47 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: perl-install:1310 Manual
+ choice
+
+2004-09-26 10:10 rcasha
+
+ * perl-install/share/po/mt.po: var
+
+2004-09-26 08:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: (go2state) do not
+ destroy/re-create menu if state hasn't changed, or else the menu
+ may disappear without any reason
+
+2004-09-25 12:20 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: DrakX-zh_TW: 1283 The most
+ common
+
+2004-09-24 17:20 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: Small catalan updates
+
+2004-09-24 11:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix 10.1-11mdk's changelog
+
+2004-09-24 11:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: (add_device_wizard) refix list
+ refreshing on UPS adding
+
+2004-09-24 11:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: increase the max size of the swap
+
+2004-09-24 11:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-11mdk
+
+2004-09-24 10:39 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Fix field name
+
+2004-09-24 10:21 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Remove unused code
+
+2004-09-24 09:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: oops, i missed a
+ ->cleanupPrinter here. inline it here too
+
+2004-09-24 08:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps.pm, install_steps_interactive.pm:
+ install_steps must not call a method only defined in
+ install_steps_interactive, inline it
+
+2004-09-24 08:30 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Remove dead code
+
+2004-09-24 08:01 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: slmodem-kernel and bluez-utils
+
+2004-09-24 07:33 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/install_steps.pm: Mandrakelinux
+
+2004-09-24 07:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/bootloader-config: fix typos in usage
+
+2004-09-24 07:12 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Better handling of relative paths
+
+2004-09-24 07:09 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: Updated Dutch (nl) translation by
+ Reinout van Schouwen <reinout@cs.vu.nl> * DrakX
+
+2004-09-24 07:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not disable ifplugd
+ support for wireless cards
+
+2004-09-24 06:42 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Ask only once for a supplementary CD
+
+2004-09-24 04:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: don't ask when $in is not
+ set in security_check()
+
+2004-09-24 03:59 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Fix 10.0-style paths
+
+2004-09-24 03:37 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Save hdlists and synthesis as user root
+
+2004-09-23 23:29 rcasha
+
+ * perl-install/share/po/mt.po: var
+
+2004-09-23 15:40 rstandtke
+
+ * perl-install/share/po/de.po: some additions and fixes
+
+2004-09-23 12:59 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Missing bit from the trunk
+
+2004-09-23 11:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: add support for SKIM IM
+
+2004-09-23 11:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: do not install scim for hindic
+ (native keyboards're availlable)
+
+2004-09-23 11:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_interactive.pm: call fsedit::auto_allocate()
+ with $o->{partitions} so be able to fix a partitioning scheme in
+ a defcfg
+
+2004-09-23 08:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: install x-unikey for vietnamese (aka sync
+ with share/rpmsrate)
+
+2004-09-23 08:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: gives a change to be on CDs to skim
+
+2004-09-23 06:24 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: Makefile, Makefile.config: Introducing TMPDIR
+
+2004-09-23 06:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: install kernel packages for
+ winmodems
+
+2004-09-23 06:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: allow SYNC=no option in
+ /etc/sysconfig/dynamic
+
+2004-09-23 05:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-09-23 05:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: use Sazanami Gothic for everything in
+ japanese (Yukiko Bando)
+
+2004-09-23 04:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/modem.pm: (ppp_configure) add a specific
+ udev script in addition to the udev rules file to create
+ /dev/modem (ttySL0 is a symlink, udev won't be called when it's
+ created)
+
+2004-09-23 04:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_probe_info) fix old typo, do
+ not reset vpi and vci if vpi is zero
+
+2004-09-22 23:46 rcasha
+
+ * perl-install/share/po/mt.po: var
+
+2004-09-22 14:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: rename "|Télé2 128k " as
+ "|Télé2" so that users don't choose a random provider with wrong
+ vci/vpi settings
+
+2004-09-22 11:28 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: A trimmed-down version of the
+ supplementary media handling routine of 10.1 community. It
+ handles only supplementary CDs.
+
+2004-09-22 11:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix badly phrased translation
+
+2004-09-22 11:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: br.po, fr.po: before exclamation marks,
+ ellipsises, question marks and colons: - replace spaces by non
+ breaking spaces where appropriate - add missing spaces
+
+2004-09-22 11:07 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Selection of supplementary media is
+ now a method.
+
+2004-09-22 10:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix a translation
+
+2004-09-22 10:12 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_steps.pm, install_steps_interactive.pm:
+ New method selectSupplMedia
+
+2004-09-22 10:07 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Don't read packages twice
+
+2004-09-22 09:48 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Fix variable name
+
+2004-09-22 09:38 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Handle reading multiple "hdlists" files
+ (for supplementary media)
+
+2004-09-22 08:01 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: More CD­rom mountpoint flexibility
+
+2004-09-22 07:47 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Backport utility functions from 10.1
+
+2004-09-22 07:06 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Better error reporting with rpm
+ installation failures
+
+2004-09-22 06:58 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Always return a hashref from
+ pkgs::packageMedium()
+
+2004-09-22 06:47 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Cope with different cd-rom
+ mountpoints
+
+2004-09-22 06:34 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2004-09-22 06:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: silently ignore encrypted filesystems with no
+ encrypt_key
+
+2004-09-22 06:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/devices.pm: module aes is now named aes-i586
+ (bugzilla #11588)
+
+2004-09-22 06:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/dos.pm: remove the backtrace
+
+2004-09-22 05:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/lvm.pm: call pvremove on every PVs when destroying a
+ VG (to clear the LVM2 magic) (bugzilla #11579)
+
+2004-09-22 05:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/dos.pm: more logging
+
+2004-09-22 05:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table.pm: better logging
+
+2004-09-22 05:25 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2004-09-22 04:28 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/Makefile: Separate mdkinst_stage2 step in makefile
+
+2004-09-22 04:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: simplify
+
+2004-09-22 04:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: use ttySL0 for slmodem, so
+ that a symlink to /dev/modem is done (#8947 again)
+
+2004-09-22 04:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: don't set {meta_class} from file
+ VERSION when it is already given on cmdline
+
+2004-09-22 04:21 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ja.po: updated Japanese file
+
+2004-09-22 04:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: fix an old ugly typo
+
+2004-09-22 02:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: don't add /dev/pts line in fstab anymore
+ (it's done in initrd and udev)
+
+2004-09-21 21:29 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Arabic translation
+
+2004-09-21 19:40 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2004-09-21 12:04 Warly <warly at mandriva.com>
+
+ * perl-install/Makefile: revert wrongly uploaded Makefile
+
+2004-09-21 11:35 Warly <warly at mandriva.com>
+
+ * perl-install/: Makefile, share/compssUsers.corpo-server,
+ share/list, share/rpmsrate, share/rpmsrate.corpo-desktop,
+ share/rpmsrate.corpo-server, share/themes-corporate.rc,
+ share/advertising/dwd-01.pl, share/po/DrakX.pot, share/po/fr.po:
+ Added some corporate specific changes
+
+2004-09-21 11:31 Warly <warly at mandriva.com>
+
+ * perl-install/pkgs.pm: temporary workarround to fix extra CD
+
+2004-09-21 11:25 Warly <warly at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: Display group
+ selection in corporate
+
+2004-09-21 11:23 Warly <warly at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: do not display workstation
+ entries in corporate server
+
+2004-09-21 11:21 Warly <warly at mandriva.com>
+
+ * perl-install/install_gtk.pm: use corporate gtk theme in corporate
+
+2004-09-21 11:20 Warly <warly at mandriva.com>
+
+ * perl-install/any.pm: do not use default autologin in corporate
+
+2004-09-21 08:29 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-09-21 08:13 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/: list-dis, list-dwd, list-ppp,
+ list-pwp, lpi.pl, lpi.png: Add LPI advertisement
+
+2004-09-21 07:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-09-21 07:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/eu.po: updated Basque file
+
+2004-09-21 07:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: typo fix
+
+2004-09-21 06:43 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/rpmsrate: rebreakify, tv likes it
+
+2004-09-21 06:37 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/bootloader.pm: run grub installation program in
+ chroot so that to avoid weird pbs at times
+
+2004-09-21 06:36 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/list: add missing gtk module (im-cedilla),
+ arrangements for new pango
+
+2004-09-21 06:35 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * isolinux-graphic.amd64.bmp: add amd64 boot logo used in 10.0
+
+2004-09-21 06:31 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * make_boot_img: always enable ACPI on x86_64, add "noacpi" entry
+ in that case, add more boot images on x86_64 too, handle special
+ "cdcom" images, specialise boot logo for amd64.
+
+2004-09-21 06:28 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/modules.pl: pcmcia modules work on x86_64 too, add more
+ modules now that they can be stripped, add "iteraid" to
+ hardware_raid list(?)
+
+2004-09-21 06:16 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/check_mar.pl: tlan is not available on x86_64
+
+2004-09-21 06:15 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/list_modules.pm: - remove big "tcic", "i82365", "i82082"
+ on x86_64 (docs say "older laptops") - add 3w-9xxx support driver
+
+2004-09-21 06:08 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/rpmsrate: - use correct name for
+ mandrakegalaxy - install cxoffice if available - move rp-pppoe to
+ appropriate location
+
+2004-09-21 06:07 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * rescue/list.x86_64: add grub stuff to rescue
+
+2004-09-21 06:04 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/update_kernel: strip modules for 2.6 kernels too
+
+2004-09-21 04:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/main.pm: allow ignoring X config file when
+ it contains errors
+
+2004-09-21 04:32 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * Makefile: nuke extra images dedicated to host cdcom drivers (e.g.
+ "nvidia")
+
+2004-09-21 04:31 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/stage1.c: same dirtly little hack (a cleanup actually)
+
+2004-09-21 04:30 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/init.c: dirty little hack from pixel/gc to let mdk
+ stage1 work with newer kernels ("testing" variable is supposedly
+ obsolete btw)
+
+2004-09-21 04:29 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/rescue-gui.c: make it possible to restore windows boot
+ loader on x86_64 too
+
+2004-09-21 04:28 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/Makefile: pcmcia works on x86_64 too, update stage1
+ build for 10.0
+
+2004-09-21 04:27 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/pcmcia_/: cardmgr.c, cirrus.h, cs.h, cs_types.h,
+ driver_ops.h, ds.h, i82365.h, vg468.h, yacc_config.c,
+ yacc_config.h: clean-up, merge, fix pcmcia subsystem to make it
+ work on x86_64
+
+2004-09-21 04:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: don't allow a broken X configuration to
+ break mouse configuration
+
+2004-09-21 03:58 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Arabic translation
+
+2004-09-20 12:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_conf_backend) do not let
+ speedtouch-start launch connection
+
+2004-09-20 12:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/help.pm: add translator hints; real fix
+ will be in mdk10.2: s!N("(.*?) \"(ALL)\" (.*?)"!N("\1 %s \3",
+ N("\2"))! and the like
+
+2004-09-20 12:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: perl_checker compliance
+
+2004-09-20 12:02 Pixel <pixel at mandriva.com>
+
+ * isolinux-graphic.bmp.parameters: saving the right file :-(
+
+2004-09-20 12:01 Pixel <pixel at mandriva.com>
+
+ * isolinux-graphic.bmp, isolinux-graphic.bmp.parameters: cleaner
+ image using: - colors aligned modulo 4 - background quantize to
+ 128 colors using ImageMagick and treedepth=6 - final bmp
+ constructed with the background above and saved in 128 colors
+ with photoshop (!)
+
+2004-09-20 11:49 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Fix supplementary CDs with any kind of
+ media
+
+2004-09-20 11:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/: devices.pm, fs.pm, install_any.pm,
+ install_steps.pm, install_steps_interactive.pm,
+ partition_table.pm, diskdrake/interactive.pm,
+ fs/mount_options.pm, fs/type.pm, standalone/drakupdate_fstab: -
+ add field {part_number} for partitions (handle it in
+ subpart_from_wild_device_name(), partition_table::read()) -
+ create migrate_device_names() to handle the change of device
+ names when changing kernel&modules (eg: hde->hda or hda->sda) -
+ change prototype of install_any::use_root_part() (prefix is
+ dropped, optional $in is added) - create
+ fs::type::can_be_this_fs_type() and use it - create
+ devices::part_number() and devices::part_prefix() and use them
+
+2004-09-20 10:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not write config two times
+ for lan connections
+
+2004-09-20 10:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: more zeroconf fixes (zcip isn't
+ a service, stop tmdns service if zeroconf is disabled, check
+ tmdns init file in prefix/etc)
+
+2004-09-20 09:24 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Remove no longer necessary hack.
+
+2004-09-20 09:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: move "Start at boot" step for
+ lan-like adsl/cable connections
+
+2004-09-20 09:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: (add_device_wizard) default to
+ automatic detection
+
+2004-09-20 07:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: remove connection time timer
+ if connection fails (fix #11590)
+
+2004-09-20 07:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_conf_backend) use avmadsl
+ option for capi cards to use settings generated by drdsl
+
+2004-09-20 07:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-09-20 04:12 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/da.po: merged with current pot file
+
+2004-09-20 03:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fs.pm, install_any.pm, network/tools.pm,
+ standalone/bootloader-config, standalone/diskdrake,
+ standalone/drakboot: - don't use fs::get_info_from_fstab() in
+ install_any::use_root_part() to be able to handle renamed
+ devices - fs::get_info_from_fstab() doesn't take a prefix anymore
+ - small perl_checker fix in install_any.pm
+
+2004-09-20 02:14 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: Fix typo
+
+2004-09-19 20:41 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: DrakX-zh_TW: 1210 Circular
+ mounts
+
+2004-09-19 08:07 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates (ugh!)
+ gi/perl-install/share/po/da.po
+
+2004-09-19 05:29 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: Updates
+ gi/perl-install/share/po/da.po
+
+2004-09-19 04:21 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-09-19 03:37 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates
+ gi/perl-install/share/po/da.po
+
+2004-09-18 09:59 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates
+ gi/perl-install/share/po/da.po
+
+2004-09-18 05:31 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates
+ gi/perl-install/share/po/da.po
+
+2004-09-18 04:02 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates
+ gi/perl-install/share/po/da.po
+
+2004-09-17 19:16 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates
+ gi/perl-install/share/po/da.po
+
+2004-09-17 18:49 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: Updates soft/drakbt/po/da.po
+ soft/drakpxelinux/po/da.po gi/perl-install/share/po/da.po
+
+2004-09-17 12:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, partition_table/dos.pm,
+ partition_table/raw.pm: try to get geometry from EDD
+
+2004-09-17 10:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: perl_checker cleanup
+
+2004-09-17 09:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (configureNetwork2) really
+ enable zeroconf if zeroconf is requested
+
+2004-09-17 09:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (configureNetwork2) write blank
+ zeroconf hostname if zeroconf is disabled, else drakconnect will
+ assume it is enabled
+
+2004-09-17 09:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (configureNetwork2) use services
+ do disable zeroconf, do not disable if it doesn't exist (to avoid
+ warnings in console)
+
+2004-09-17 09:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: remove debug message :-)
+
+2004-09-17 09:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: refresh UPS list when adding a
+ new UPS though the add wizard
+
+2004-09-17 08:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: (add_device_wizard) fix
+ automatically detect/add an UPS
+
+2004-09-17 07:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install NUT for "American Power
+ Conversion|Back-UPS Pro 500" too
+
+2004-09-17 07:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-10mdk
+
+2004-09-17 07:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: update iftab when new
+ ethernet devices are detected
+
+2004-09-17 07:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: probe firewire and
+ pcmcia network devices too
+
+2004-09-17 05:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (configure_eth_aliases) don't
+ write aliases for pcmcia cards but remove them, or else the
+ pcmcia service won't be started correctly (the ethernet module
+ being loaded, pcmcia_core would be loaded too, and the pcmcia
+ service would think it is already started ...)
+
+2004-09-17 05:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (configure_eth_aliases) kill
+ code that can't do anything good (remove_alias isn't intended to
+ be used with the module name)
+
+2004-09-17 05:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_conf_backend) make sure the
+ speedtch kernel module won't be hidden
+
+2004-09-16 23:52 rcasha
+
+ * perl-install/share/po/mt.po: var
+
+2004-09-16 16:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-09-16 15:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-09-16 15:27 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: jorge
+
+2004-09-16 12:25 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/es.po: fixed typo
+
+2004-09-16 10:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: don't support all slmodem
+ cards, our agreement forbid it :-/
+
+2004-09-16 10:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/draksplash2: add as a comment the
+ "convert" command
+
+2004-09-16 09:56 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps_gtk.pm: Kludgy fix
+ for bug 11558 : sometimes when restarting the installer at the
+ step where partitions are read, it'll be needed to reaload the
+ rpmsrate and compssUsers.pl to avoid a crash a bit later.
+
+2004-09-16 09:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: (add_device_wizard) fix device
+ list in wizard
+
+2004-09-16 09:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: perl_checker cleanups
+
+2004-09-16 09:10 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, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.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
+
+2004-09-16 09:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: C3 has "cpu family" == 6, so now
+ also checking that cmov flag is available to say we have a i686
+
+2004-09-16 08:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/rpmsrate: do not install isdn-light, it's
+ unused, unsupported, and breaks isdn4net
+
+2004-09-16 08:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (read_all_conf) use
+ network::tools to probe connection type
+
+2004-09-16 08:38 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fixed typo (no spaces before
+ question marks in English)
+
+2004-09-16 07:12 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Better retry on error handling for
+ supplementary media
+
+2004-09-16 06:49 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/list: Include locale.pm in the install, since
+ ugtk2 now uses it.
+
+2004-09-16 06:42 Pixel <pixel at mandriva.com>
+
+ * isolinux-graphic.bmp: image generated using
+ draksplash2+ImageMagick with treedepth=6
+
+2004-09-16 06:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/draksplash2: imagemagick can do what gimp
+ can't: reduce the number of colors while using a fixed treedepth
+ different than 24bpp (we want 6*3 = 18bpp)
+
+2004-09-16 06:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: adsl.pm, isdn.pm: stop capi service before
+ new config is written so that capiinit can unload the old driver
+
+2004-09-16 06:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not ask "capidrv or
+ capidrv ?" ...
+
+2004-09-16 06:07 Warly <warly at mandriva.com>
+
+ * isolinux-graphic.bmp, isolinux-graphic.bmp.parameters: reindexed
+ isolinux-graphic.bmp and update parameters
+
+2004-09-16 05:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/draksplash2: display the stepping effect
+
+2004-09-16 05:18 Pixel <pixel at mandriva.com>
+
+ * isolinux-graphic-simple.bmp.parameters: update (it only sorts
+ entries, will help future diff)
+
+2004-09-16 04:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: isdn.pm, netconnect.pm: make isdn over
+ capi work again
+
+2004-09-16 03:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: on a test here, a "Server
+ died" occured whereas the server is running. i think it can
+ occur if the server is in fact not even started. Trying to handle
+ this case
+
+2004-09-16 00:37 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Arabic translation
+
+2004-09-15 13:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getBewan) use more permissive
+ regexp for PCI modem, description in pcitable may change
+
+2004-09-15 12:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: install unicorn-kernel
+ package if available
+
+2004-09-15 12:10 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: add dkms-minimal in INSTALL
+
+2004-09-15 12:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (get_text_coord) fix wrapping for CJ when
+ mixed with english strings (eg: cuted "Mandrakesoft" word)
+
+2004-09-15 11:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup: (interactive_mode_box) better
+ make parameter optionnal
+
+2004-09-15 11:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/cy.po: update (note that my welsh needs to
+ be reviewed as well as my 2004/08/13 update)
+
+2004-09-15 11:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add "Unlisted - edit
+ manually" entry in modem provider list (fix #11549)
+
+2004-09-15 11:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: adsl.pm, isdn.pm, netconnect.pm: do not
+ add prefix in path given to ensure_is_installed ! (i.e. replace
+ untested code with untested code), fix #11547 and more
+
+2004-09-15 11:34 vljubovic
+
+ * perl-install/share/po/bs.po: A small fix
+
+2004-09-15 11:31 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Use radio buttons in media
+ selection (wildman). perl_checker compliance.
+
+2004-09-15 10:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (get_text_coord) kill unused character
+
+2004-09-15 08:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules/interactive.pm: (load_category__prompt) fix
+ spacing in module list
+
+2004-09-15 08:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: add comment
+
+2004-09-15 08:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: explicit scalar false value (otherwise it
+ gives () in list context)
+
+2004-09-15 07:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: last minute changes in 10.1-9mdk
+
+2004-09-15 07:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-09-15 07:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_conf_backend) don't create
+ empty pppoe.conf if the package isn't installed
+
+2004-09-15 07:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: load modules and run start programs
+ in standalone too, so that it will work even if the packages have
+ just been installed
+
+2004-09-15 07:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-09-15 07:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-9mdk
+
+2004-09-15 07:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: no need to require pkgs (and it makes
+ bootloader-config some break when removing entries)
+
+2004-09-15 07:17 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: removed "caps:shift" it never fully
+ solved the problem of turkish keyboards anyway; and a much better
+ solution is done on newer keyboard maps in xorg package.
+
+2004-09-15 06:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: af.po, az.po, bg.po, da.po, el.po, fa.po,
+ id.po, is.po, ja.po, ky.po, mk.po, pt_BR.po, sk.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, tl.po, tr.po: unfuzzy a few sagem strings
+
+2004-09-15 06:10 Warly <warly at mandriva.com>
+
+ * isolinux-graphic.bmp.parameters: progress bar was too long
+
+2004-09-15 05:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: (installPackages) kill unused
+ variable
+
+2004-09-15 05:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-09-15 05:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: network/adsl.pm, network/netconnect.pm,
+ 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/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/pl.po, share/po/pt.po, share/po/pt_BR.po,
+ share/po/ro.po, share/po/ru.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: fix PPPoA case
+
+2004-09-15 04:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-09-15 04:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix typo in 10.1-6mdk's and
+ 10.1-7mdk's changelog
+
+2004-09-15 02:11 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/it.po: updated Italian file
+
+2004-09-15 02:05 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: uz.po, uz@Latn.po: updated Uzbek files
+
+2004-09-14 17:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_steps.pm: (configureNetwork) commit
+ forgotten patch (I sux)
+
+2004-09-14 14:11 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cs.po: updated Czech file
+
+2004-09-14 14:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: (configureNetwork)
+ load all network modules before network auto-configuration, so
+ that all interfaces will be available and written in iftab
+
+2004-09-14 14:01 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ar.po, bn.po: corrected "<control>X"
+ strings
+
+2004-09-14 12:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix typo in 10.1-7mdk's changelog
+
+2004-09-14 12:49 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: am.po, bn.po, es.po, fi.po, fur.po,
+ it.po, ms.po, pt.po: corrected default:LTR entries
+
+2004-09-14 12:45 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: comment for default:LTR
+
+2004-09-14 12:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-8mdk
+
+2004-09-14 12:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: adapt to new nvidia
+ driver location
+
+2004-09-14 12:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (selectCountry) offer to select IM if
+ language has one preselected (else option is only availlable in
+ advanced mode)
+
+2004-09-14 12:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: comment on default:LTR
+
+2004-09-14 12:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/man/C/man8/drakconnect.8: remove
+ reference to ipchains
+
+2004-09-14 11:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-7mdk
+
+2004-09-14 11:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: Makefile, Makefile.drakxtools, drakxtools.spec:
+ package man pages
+
+2004-09-14 11:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/isdn.pm: adapt to kernel packages naming
+
+2004-09-14 11:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/man/C/man8/drakconnect.8: add drakconnect
+ man page
+
+2004-09-14 11:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: allow to configure slmodem
+
+2004-09-14 11:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getModem) use network/slmodem
+ category
+
+2004-09-14 11:16 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm: add network/slmodem category
+
+2004-09-14 10:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, partition_table.pm,
+ diskdrake/interactive.pm, fs/mount_options.pm: - ensure
+ {is_removable} field is there for created partitions, not only
+ existing partitions - it breaks Create(), fixing
+
+2004-09-14 10:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (get_eth_cards) document it
+ somewhat
+
+2004-09-14 10:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (get_eth_cards_names) let
+ detect_devices->firewire_probe() set the device description
+
+2004-09-14 10:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (get_eth_cards) workaround
+ buggy eth1394 that returs a bogus driver name for the GDRVINFO
+ command of the ETHTOOL ioctl returns
+
+2004-09-14 10:06 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/authentication.pm: Fix net join syntax for winbind
+ setup.
+
+2004-09-14 10:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (get_eth_cards_names) set a
+ sensible name for firewire network adapters in order to make
+ GUIes look more user friendly
+
+2004-09-14 09:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: network/ethernet.pm, network/netconnect.pm,
+ network/shorewall.pm, standalone/drakconnect, standalone/drakgw:
+ (get_eth_cards_names) remove unused parameter
+
+2004-09-14 09:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: network/ethernet.pm, network/netconnect.pm,
+ network/network.pm, standalone/drakconnect: (configureNetwork2)
+ configure eth aliases, needs modules_conf
+
+2004-09-14 09:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (configure_eth_aliases) errm,
+ use modules_conf
+
+2004-09-14 09:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: do not configure eth aliases in
+ various places, move aliases configuration code from
+ get_eth_cards_names to configure_eth_aliases
+
+2004-09-14 09:28 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/network/smb.pm: syntax changes in winbind smb.conf
+ (errors in /var/log/messages)
+
+2004-09-14 09:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: get the scsi driver name in field
+ {driver}
+
+2004-09-14 09:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: remove unused parameter
+
+2004-09-14 09:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: cleanup, remove unused
+ parameters and comments
+
+2004-09-14 09:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/isdn.pm: (write_config) remove unused
+ parameter
+
+2004-09-14 09:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/do_pkgs.pm: (check_kernel_module_packages) make ext
+ package optionnal
+
+2004-09-14 08:59 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: eo.po, es.po, fr.po, fur.po, gl.po,
+ pt.po, pt_BR.po, ro.po, wa.po: MandrakeSoft -> Mandrakesoft;
+ Mandrake -> Mandrakelinux
+
+2004-09-14 08:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: space cleanup
+
+2004-09-14 08:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/isdn.pm: (setup_capi_conf) use capi4linux
+ file to detect isdn4k-utils package
+
+2004-09-14 08:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_conf_backend) move
+ isdn4k-utils installation here
+
+2004-09-14 08:42 Warly <warly at mandriva.com>
+
+ * perl-install/share/logo-mandrake.png: Community 10.1 logo
+
+2004-09-14 08:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_conf_backend) remove
+ ifcfg-sagem
+
+2004-09-14 08:06 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ca.po: MandrakeSoft -> Mandrakesoft;
+ Mandrake -> Mandrakelinux
+
+2004-09-14 07:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/pt.po: fixed typo
+
+2004-09-14 07:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-6mdk
+
+2004-09-14 07:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/isdn.pm: (setup_capi_conf) install firmware
+ if needed
+
+2004-09-14 07:16 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Apparently perl_checker doesn't like
+ my perfectly sensible perl syntax.
+
+2004-09-14 07:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/scanner.pm: (detect) blacklist usb devices that have
+ a driver and that are wrongly detected by sane-find-scanner
+ (scanners are managed by scanner.o module in 2.4.x and through
+ libusb on 2.6.x)
+
+2004-09-14 07:11 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cs.po: updated Czech po file
+
+2004-09-14 06:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: detect scanners later so that we
+ filter out bogus usb devices detected by sane_find_scanner
+
+2004-09-14 06:40 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ar.po: updated po file
+
+2004-09-14 06:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: detect not yet supported
+ ethernnet cards too
+
+2004-09-14 06:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: (unknown) blacklist more bridges
+ (though f() should already take care of that)
+
+2004-09-14 06:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: detect more bridges and the like
+
+2004-09-14 06:00 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Arabic translation
+
+2004-09-14 05:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-5mdk
+
+2004-09-14 05:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: drakTermServ, drakbackup, drakfont:
+ sanitize capitale usage on buttons
+
+2004-09-14 05:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: - fix label of entry in help
+
+ - move help from tooltips into separate page (#9894)
+
+ rationale:
+
+ - there's already a "help" button that do the same thing as mcc
+ one
+
+ - Gtk+ only support tooltips on widgets that have their own X
+ window (which new GtkComboBox widget has not)
+
+ - tooltips are usefull on first run but then are just annoying
+
+2004-09-14 05:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: upcase acronyms
+
+2004-09-14 04:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: support dsl over capi
+
+2004-09-14 04:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_conf_backend) support dsl
+ over capi
+
+2004-09-14 04:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/isdn.pm: (setup_capi_conf) do not do
+ dsl-specific stuff here
+
+2004-09-14 02:43 Pixel <pixel at mandriva.com>
+
+ * move/data/always.list: adding ISO8859-2.so (needed for cs at
+ least)
+
+2004-09-13 22:35 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: DrakX-zh_TW: 711 Please
+ insert the
+
+2004-09-13 22:10 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: locally modified
+
+2004-09-13 17:38 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm: add isdn capi drivers
+
+2004-09-13 17:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/isdn_consts.pm: fix typo
+
+2004-09-13 16:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/isdn.pm: (setup_capi_conf) install
+ isdn4k-utils
+
+2004-09-13 15:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: (get_default_ippp_interface) use
+ interfaces with true DIAL_ON_IFUP
+
+2004-09-13 15:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not auto-select
+ static/dhcp if the provider uses pppoe
+
+2004-09-13 15:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: only write ifcfg-sagem when
+ needed
+
+2004-09-13 15:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add isdn_driver step to be
+ able to choose between hisax and capi drivers
+
+2004-09-13 15:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/isdn.pm: handle capi drivers
+
+2004-09-13 15:02 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2004-09-13 13:21 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: The "choose an update
+ mirror" screen was launched without notice when a supplementary
+ ftp media was selected.
+
+2004-09-13 13:01 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Fix crashes in CD/Tape setup.
+ Fix UI behavior in wizard. (Nicolas Adenis-Lamarre)
+
+2004-09-13 12:58 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: redundant code
+
+2004-09-13 10:56 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: deselection of found media: don't
+ display twice media from the same installation CD
+
+2004-09-13 10:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add missing modules. sync sort and
+ spacing with HEAD in order to easily see differences.
+
+2004-09-13 09:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: fix regexpes
+
+2004-09-13 08:45 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: http supplementary media were borked
+
+2004-09-13 08:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: another typo fix
+
+2004-09-13 08:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: typo fix
+
+2004-09-13 08:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix 10.1-3mdk's changelog
+
+2004-09-13 08:18 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/Makefile.config: Reverted accidentally uploaded
+ file.
+
+2004-09-13 08:15 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: Makefile.config, standalone/scannerdrake: Fixed
+ "dynamic()" in scannerdrake to do not contain anything
+ interactive.
+
+2004-09-13 07:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-4mdk
+
+2004-09-13 07:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: fix rpmsrate
+
+2004-09-13 07:39 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps.pm,
+ install_steps_interactive.pm: Ability to choose from the mirror
+ list when assing an ftp supplementary media. Fix download of
+ hdlists file for ftp supplementary media.
+
+2004-09-13 07:27 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-09-13 07:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: adapt to new proprietary package
+ naming
+
+2004-09-13 07:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/do_pkgs.pm: - simplify
+ ->check_kernel_module_packages, same for install and standalone -
+ create ->are_available used by ->check_kernel_module_packages
+
+2004-09-13 07:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: simplify
+
+2004-09-13 07:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/cy.po: fix draksec entries in welsh
+
+2004-09-13 06:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: ltmodem needs ltmodem package
+
+2004-09-13 05:54 Pablo Saratxaga <pablo at mandriva.com>
+
+ * 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, pl.po, pt.po, pt_BR.po, ro.po, ru.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
+
+2004-09-13 05:46 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/DrakX.pot: updated pot file
+
+2004-09-13 04:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: security/help.pm, 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/br.po, share/po/ca.po, share/po/cy.po, share/po/de.po,
+ share/po/eo.po, share/po/et.po, share/po/fa.po, share/po/fr.po,
+ share/po/ga.po, share/po/he.po, share/po/hr.po, share/po/id.po,
+ share/po/it.po, share/po/ko.po, share/po/ltg.po, share/po/lv.po,
+ share/po/mn.po, share/po/mt.po, share/po/nl.po, share/po/pl.po,
+ share/po/pt.po, share/po/ru.po, share/po/sl.po,
+ share/po/sr@Latn.po, share/po/sv.po, share/po/tg.po,
+ share/po/tl.po, share/po/uk.po, share/po/uz.po, share/po/wa.po,
+ share/po/zh_TW.po: - fix label of entry in help
+
+ - move help from tooltips into separate page (#9894)
+
+ rationale:
+
+ - there's already a "help" button that do the same thing as mcc
+ one
+
+ - Gtk+ only support tooltips on widgets that have their own X
+ window (which new GkComboBox widget has not)
+
+ - tooltips are usefull on first run but then are just annoying
+
+2004-09-13 04:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: explain why some hw classes are
+ not probed on bootstrapping
+
+2004-09-13 04:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: cdc-acm driver handle ISDN modems (we
+ just as to setup minicom with /dev/ttyACM to manage that one)
+
+2004-09-13 04:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm, perl-install/harddrake/data.pm: move
+ comment where appropriate
+
+2004-09-13 04:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: (set_help_tip) only use on
+ tooltip group
+
+2004-09-13 04:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbug_report: fix crash
+
+2004-09-13 04:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install Device-mapper ATARAID tool
+ for software raid (aka bios driven ones)
+
+ the odds're high we should do this too for sata_promise, sata_sx4
+ and sx8 SATA drivers.
+
+2004-09-13 04:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: both diskdrake and initscripts now
+ prefer mdadm over raidtools
+
+2004-09-13 04:25 vljubovic
+
+ * perl-install/share/po/bs.po: Fixing
+
+2004-09-13 03:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian po file
+
+2004-09-13 02:13 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ar.po: updated Arabic file
+
+2004-09-13 01:57 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Arab ic translation
+
+2004-09-13 01:42 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: az.po, nl.po, zh_TW.po: updated Azeri
+ file
+
+2004-09-13 01:20 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: DrakX-zh_TW: 711 No floppy
+ drive
+
+2004-09-12 19:20 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: Updated Dutch (nl) translation by
+ Reinout van Schouwen <reinout@cs.vu.nl> * DrakX
+
+2004-09-12 10:03 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/it.po: updated Italian file
+
+2004-09-12 08:04 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, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.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
+
+2004-09-12 07:39 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: disambiguation of keyboard names, so
+ they can be translated differently from language names
+
+2004-09-12 04:43 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: Fixed a few fuzzy strings.
+
+2004-09-11 23:51 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: DrakX-zh_TW: 662 You have
+ selected
+
+2004-09-11 09:20 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/bn.po: updated Bengali file
+
+2004-09-11 08:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ar.po, br.po, et.po, fa.po, he.po, hi.po,
+ ms.po, pt.po, sv.po, tr.po, zh_TW.po: updated Estonian file;
+ fixed error syntax in Hebrew file; removed non-ascii version of
+ the bootloader message
+
+2004-09-11 00:26 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: DrakX-zh_TW: 650 You must
+ also
+
+2004-09-10 16:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: one more change in 10.1-3mdk for
+ lord blino
+
+2004-09-10 16:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: lower refresh timeout to 5
+ seconds
+
+2004-09-10 16:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-3mdk
+
+2004-09-10 15:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: typo fix in 10.1-0.19mdk's
+ changelog
+
+2004-09-10 15:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix 10.1-0.25mdk's changelog
+
+2004-09-10 15:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: make connect/disconnect
+ buttons useful
+
+2004-09-10 14:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update (how did the drakvpn got
+ fuzzy whereas this tool was left untouched for monthes???)
+
+2004-09-10 14:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-2mdk
+
+2004-09-10 14:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: - move tools description in proper
+ packages (aka make -newt description somewhat usefull) -
+ describe missing tools - sanitize tool names
+
+2004-09-10 14:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not ask if network should
+ be started on boot if it has already been asked during pseudo-lan
+ configuration
+
+2004-09-10 13:08 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Arabic translation from Arabeyes
+
+2004-09-10 12:10 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: some more XKB keyboard names fixed to
+ match xorg versions
+
+2004-09-10 11:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: fix choosing bestKernelPackage
+
+2004-09-10 11:11 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: fixed compose:rwin (it must be enabled
+ if the key isn't used, and not when the key is already used); and
+ a new keyboard toggle
+
+2004-09-10 11:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: remove debug code
+
+2004-09-10 10:22 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: fixed Russian phonetic keyboard layout
+ on xorg
+
+2004-09-10 09:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: typo fix in 10.1-1mdk's changelog
+
+2004-09-10 09:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-1mdk
+
+2004-09-10 09:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: (enable_framebuffer) do not
+ kill the whole wizard when embedded
+
+2004-09-10 09:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: harddrake/autoconf.pm,
+ standalone/service_harddrake: cleanups
+
+2004-09-10 09:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Newt/Newt.xs, c/stuff.xs.pl,
+ resize_fat/c_rewritten.xs, xf86misc/main.xs: prototypes are
+ dangerous
+
+2004-09-10 08:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-09-10 08:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: perl_checker cleanups
+
+2004-09-10 08:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: harddrake/autoconf.pm, harddrake/data.pm,
+ standalone/service_harddrake: autoconfigure mice on bootstrapping
+
+2004-09-10 08:56 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Remove (temporarily, do we hope) the
+ code that re-reads all hdlists when the user has added
+ supplementary media. It doesn't work for now, when the main media
+ is networked and the supplementary media a superset of the main
+ media.
+
+2004-09-10 08:10 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/it.po: updated Italian file
+
+2004-09-10 06:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: add button "Release
+ Notes" in the acceptLicense dialog box
+
+2004-09-10 06:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: for ask_warn with big text,
+ create a bigger window
+
+2004-09-10 06:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: introduce {more_buttons} to
+ allow the "Release Notes" button. ugly, but it works :-(
+
+2004-09-10 06:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/test.pm: fix stupid things
+
+2004-09-10 06:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: create_box_with_title(): - introduce the
+ ugly $o->{box_allow_grow} - cleanup the usage
+
+2004-09-10 06:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (configure_net) use
+ network::test to test internet connection
+
+2004-09-10 06:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/test.pm: fix indentation and CVS Id
+
+2004-09-10 06:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/test.pm: (update_status) handle decimal ping
+ time with comma instead of dot
+
+2004-09-10 06:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: log the {meta_class}
+
+2004-09-10 05:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: do not display release notes
+ anymore (since it hides advertising...)
+
+2004-09-10 04:09 Pixel <pixel at mandriva.com>
+
+ * rescue/list: /bin/loadkeys is no more
+
+2004-09-09 14:28 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/compssUsers.pl: Fix typo in section title
+
+2004-09-09 14:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (write) fix ENC setting too (like thai IM,
+ it got broken when analyse_locale_name and the like were added it
+ seems)
+
+2004-09-09 13:48 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Syn with Arabeyes CVS before a
+ translation that should hopefully happen soon...
+
+2004-09-09 12:16 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: minor fix in last
+ patch
+
+2004-09-09 11:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: - choose the good kernel for the box - add
+ recognition of i586-up-1GB
+
+2004-09-09 11:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.27mdk
+
+2004-09-09 11:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: BIGMEM now means >4GB
+
+2004-09-09 11:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: add is_i586() based on "cpu
+ family", hopefully it works for detecting K6 and C3
+
+2004-09-09 11:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/c/smp-dmi.c: max() is not defined, inline it
+
+2004-09-09 11:52 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps_interactive.pm,
+ pkgs.pm: Re-read all hdlists in reverse order when there are
+ supplementary media. Don't unselect every single media when
+ doing an installation from iso images.
+
+2004-09-09 11:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: fix thai IM that was broken for ages (but
+ it was disabled in 10.0 anyway so ...)
+
+2004-09-09 11:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: fix ENC and locale specific stuff even when
+ IM is disabled (because of thai)
+
+2004-09-09 11:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/localedrake: really reset IM on language
+ switch
+
+2004-09-09 11:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: simplify ENC setting
+
+2004-09-09 11:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: - sanitize some variable names - add/update
+ comments
+
+2004-09-09 11:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/localedrake: remove debug message
+
+2004-09-09 10:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/localedrake: only default to per locale
+ default IM when switching between locales
+
+2004-09-09 10:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (write) make it a little more readable
+
+2004-09-09 10:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (write) kill unused variable
+
+2004-09-09 10:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.26mdk
+
+2004-09-09 10:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: add a comment about font settings for
+ installer
+
+2004-09-09 10:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: Singapore is en_SG not zh_SG !!!
+
+2004-09-09 10:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (selectCountry) do not default to per locale
+ default IM. IM was either setup by drakx or by localedrake. If
+ the field does not exists, this means the user *decided* to not
+ have an IM.
+
+2004-09-09 10:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (read) fix chinput identification
+
+2004-09-09 10:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: fix XIM_MODIFIER field for xcin and chinput
+ IM
+
+2004-09-09 10:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (selectCountry) do not overwrite current IM
+ (why does this only failed with miniChinput???)
+
+2004-09-09 10:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (write) set proper XIM_PROGRAM depending on
+ both encoding and locale (fix chinput configuration that was
+ broken for ages)
+
+2004-09-09 09:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (set_default_im) really just set default IM
+ and nothing more
+
+ (write) fix XIM_PROGRAM setting
+
+2004-09-09 09:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (set_default_im) simplify
+
+2004-09-09 09:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: handle raid-extra-boot (bugzilla
+ #11350)
+
+2004-09-09 09:39 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, 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, pl.po, pt.po, pt_BR.po, ro.po, ru.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_TW.po: Updated
+ POT file
+
+2004-09-09 09:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: even "lilo -u" can prompt about the "Volume
+ ID" fixing process
+
+2004-09-09 09:21 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: DrakX.pot, zh_CN.po: Updated POT file
+
+2004-09-09 09:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (IM packages list) when configuring
+ chinput, we need miniChinput (a evolution of chinput that
+ replaced it)
+
+2004-09-09 09:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/isdn_consts.pm: add @isdn_capi array of
+ cards than can use capi drivers
+
+2004-09-09 09:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: remove unused variable
+
+2004-09-09 08:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/lang.pm: reduce font size in japanese install
+
+2004-09-09 08:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: cleanup
+
+2004-09-09 08:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: remove tabulation
+
+2004-09-09 07:30 Warly <warly at mandriva.com>
+
+ * perl-install/share/compssUsers.pl: Display Development group in
+ the same way as other groups.
+
+2004-09-09 06:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: Newt/Newt.xs, resize_fat/c_rewritten.xs,
+ xf86misc/main.xs: kill warnings
+
+2004-09-09 06:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install slmodem for ltmodem, slamr,
+ slusb windmodem drivers too
+
+2004-09-09 06:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.25mdk
+
+2004-09-09 05:52 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: af.po, am.po, ar.po, az.po, bg.po, bs.po:
+ some Mandrake -> Mandrakelinux and MandrakeSoft -> Mandrakesoft
+ fixes
+
+2004-09-09 05:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: (read_all_conf) remove spurous
+ character from regexp
+
+2004-09-09 05:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: handles the lilo case where it wants to
+ assign a new Volume ID: prompt the user, then - if it doesn't
+ want to modify the Volume ID, use static-bios-codes to be able to
+ install lilo - otherwise call lilo with answer "n" to the
+ question "Is the above disk an NT boot disk?" so that it
+ assigns a new Volume ID
+
+2004-09-09 05:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: - handle lilo "static-bios-codes"
+ option - call lilo with a forced stdin (so that it doesn't read
+ from tty) - enable calling lilo with a special stdin value
+
+2004-09-09 05:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: (read_all_conf) ignore rpm's
+ backups (#10816)
+
+2004-09-09 04:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/run_program.pm: don't check_prog when the prog is a
+ complex command (containing a pipe)
+
+2004-09-09 04:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/run_program.pm: simplify
+
+2004-09-09 04:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/run_program.pm: rename $str into $real_name
+
+2004-09-09 04:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/run_program.pm: remove redundant code
+
+2004-09-09 04:42 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: be.po, uk.po: cyrillic fixes
+
+2004-09-09 04:41 Nicolas Planel <nplanel at mandriva.com>
+
+ * perl-install/c/smp-dmi.c: add dmi type 6 in detection memory size
+
+2004-09-09 04:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: help emacs mode
+
+2004-09-09 04:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix regexp to work with
+ "linux-2.6.8.1-10mdk"
+
+2004-09-09 04:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: instead of expanding symlinks in any
+ case, only do it when renaming "linux" into the kernel version
+ based label (eg: "2681-10")
+
+ that way "linux" like entries won't be modified, the way the
+ "linux" is already handled
+
+2004-09-09 04:12 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: bg.po, ca.po, cy.po, da.po, de.po, el.po,
+ it.po, ltg.po, lv.po, mt.po, ro.po, ru.po, sr.po, sr@Latn.po,
+ tg.po, tl.po, uk.po: fixed media paths
+
+2004-09-09 03:46 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: Grammar fixes
+
+2004-09-09 03:40 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Up kpilot
+
+2004-09-09 02:21 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: Fix regexp
+
+2004-09-09 02:13 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/: compssUsers.pl, rpmsrate: compssUsers.pl and
+ rpmsrate for 10.1 Community
+
+2004-09-08 18:07 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/it.po: updated Italian file
+
+2004-09-08 16:55 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: Updated Dutch (nl) translation by
+ Reinout van Schouwen <reinout@cs.vu.nl>
+
+2004-09-08 13:13 Thomas Backlund <tmb at mandrake.org>
+
+ * perl-install/share/po/fi.po: updated translations...
+
+2004-09-08 12:17 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: Don't suggest
+ lost+found as a user name (bug #11298)
+
+2004-09-08 11:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (set_window_manager) ensure ~/.dmrc is owned
+ by user else GDM complains about (spoted by frederic crozat)
+
+2004-09-08 11:28 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/detect_devices.pm: added slamr, slusb and ltmodem
+ modules for getModem
+
+2004-09-08 11:06 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: added (commented) new keyboard for
+ tibetan script, so I remember it later
+
+2004-09-08 10:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/get.pm: fix comment
+
+2004-09-08 10:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: log which tools are
+ runned
+
+2004-09-08 10:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: fix log message when
+ we cannot run a configurator
+
+2004-09-08 10:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: handle options in any
+ order
+
+2004-09-08 09:41 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Add a count of skipped packages after
+ having read an hdlist
+
+2004-09-08 09:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (configureNetwork2) update iftab
+ when config is written
+
+2004-09-08 09:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: remove update_eth_card_iftab(),
+ add update_iftab()
+
+2004-09-08 09:08 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_steps.pm: Don't require installation of
+ foomatic-db-engine when installing from the mini CD (bug #11292)
+
+2004-09-08 08:24 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Always return a hashref from
+ pkgs::packageMedium()
+
+2004-09-08 08:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install slmodem for winmodem managed
+ by ALSA (there're more out not managed by ALSA that need to be
+ added here)
+
+2004-09-08 06:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.24mdk
+
+2004-09-08 06:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: update splash when removed too,
+ use Mandrakelinux theme by default, don't give theme name to
+ remove-theme
+
+2004-09-08 06:02 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2004-09-08 05:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: replace "Cancel" with "Close" when prompting
+ to launch userdrake (as suggested by Fabian Mandelbaum)
+
+2004-09-08 05:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix #11287
+
+2004-09-08 05:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/autoconf.pm: (xconf) fix X11
+ autoconfiguration
+
+2004-09-08 05:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: (get_user_or_group) fix freeze
+ (#11274)
+
+2004-09-08 04:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/de.po: (tm) -> ™
+
+2004-09-08 04:37 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/de.po: updated po file
+
+2004-09-08 04:16 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Slow mdkkdm, up kdm, add
+ accessibility softwares
+
+2004-09-08 03:54 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Remove debug logs
+
+2004-09-08 03:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: disable "Ok" when neither NFS nor SMB is
+ selected (as suggested by Fabian Mandelbaum)
+
+2004-09-08 03:21 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: http.pm, install_any.pm: Better version of the
+ reload-IO::Socket patch
+
+2004-09-07 14:55 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: http.pm, install_any.pm: Install from a CD with a
+ networked HTTP media : force reloading of IO::Socket::INET after
+ having brought up the network interface. It won't work otherwise
+ (for mysterious reasons.)
+
+2004-09-07 12:36 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/adsl.c: (perform_adsl) ppp module doesn't exist, don't
+ try to load it
+
+2004-09-07 12:30 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Add kphone
+
+2004-09-07 11:45 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Down kdm
+
+2004-09-07 11:01 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, pkgs.pm: install_urpmi() wasn't
+ writing proper urls when having read an hdlists file for a
+ networked supplementary media
+
+2004-09-07 10:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_steps.pm: (selectLanguage) set default IM
+ (else IM was only set if one click on "Country / Region" in
+ summary)
+
+2004-09-07 10:17 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Allow supplementary media for
+ upgrades
+
+2004-09-07 09:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: one more change for 10.1-0.23mdk
+
+2004-09-07 09:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/fs/mount_options.pm: (set_default) use "users"
+ options for removable devices (so that users can unmount them if
+ the devices were mounted by root)
+
+2004-09-07 09:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: last minute change for 10.1-0.23mdk
+
+2004-09-07 09:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/mouse.pm: more synaptics fixes
+
+2004-09-07 09:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.23mdk
+
+2004-09-07 09:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/bootloader-config: take care of symlink
+ based bootloader entries
+
+2004-09-07 09:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules/: modprobe_conf.pm, modules_conf.pm: when
+ installing on kernel 2.4, do generate a valid modprobe.conf
+ anyway
+
+2004-09-07 09:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: create
+ get_kernels_and_labels_before_kernel_remove() used by
+ bootloader-config
+
+2004-09-07 08:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: typo fix
+
+2004-09-07 08:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix unclosed tag
+
+2004-09-07 08:45 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakbug: - shift twice to get the correct
+ function name
+
+2004-09-07 08:27 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nb.po: updated Bokmål po file
+
+2004-09-07 08:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: load modules for pppoe connections
+ during install (partial fix for #11189)
+
+2004-09-07 07:58 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Down zapping rank
+
+2004-09-07 07:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: I sux
+
+2004-09-07 07:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (del_intf) use more
+ detailled device names on Fabrice Facorat suggestion
+
+2004-09-07 07:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: s/kind/name/
+
+2004-09-07 07:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (manage) clean interface
+ kind assignment
+
+2004-09-07 07:19 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: Iran != Irak
+
+2004-09-07 07:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: (get_interface_type) ethernet
+ devices can be used as adsl devices
+
+2004-09-07 07:11 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Remove unused variable
+
+2004-09-07 07:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-09-07 07:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: pppoa shouldn't be selected
+ by default for ethernet devices, fallback on pppoe
+
+2004-09-07 05:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: - ignore first line of /proc/swaps -
+ partially handle /udev/xxx device names in fstab - ignore rootfs
+ "device" - don't warn for loopback files
+
+2004-09-07 05:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: add/update a few
+ comments
+
+2004-09-07 05:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: explicitely do not try
+ to run configurator for AGP, ATA_STORAGE, SATA_STORAGE,
+ SCSI_CONTROLLER and TV classes (some of them [eg: TV] do have a
+ configurator for harddrake GUI and thus are not skiped by -x
+ test)
+
+2004-09-07 04:44 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Code factorization
+
+2004-09-07 04:37 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Skip packages that are found on a
+ supplementary media but that are already provided by the main
+ media.
+
+2004-09-07 04:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: use fctStartAdsl for
+ eagle-usb in dhcp/static modes
+
+2004-09-07 03:57 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: Typo fix
+
+2004-09-06 20:25 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-09-06 18:36 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: Updated Dutch (nl) translation by
+ Reinout van Schouwen <reinout@cs.vu.nl>
+
+2004-09-06 17:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: perl_checker fixes
+
+2004-09-06 16:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix stupid error
+
+2004-09-06 16:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (del_intf) update for
+ adsl/modem/isdn connections
+
+2004-09-06 16:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: adjust tests, dhcp/static
+ adsl connections can now use non-ethernet devices
+
+2004-09-06 15:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: write sagem specific stuff
+ for dhcp/static connections
+
+2004-09-06 15:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_conf_backend) explode sagem
+ specific stuff to sagem_set_parameters()
+
+2004-09-06 15:38 vljubovic
+
+ * perl-install/share/po/bs.po: Small fixes
+
+2004-09-06 15:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: always ask adsl provider
+
+2004-09-06 15:27 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fr.po, wa.po: Mandrake --> Mandrakelinux
+
+2004-09-06 15:21 Frederic Lepied <flepied at mandriva.com>
+
+ * kernel/list_modules.pm: added rt2500 and usbvision
+
+2004-09-06 15:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-09-06 15:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.22mdk
+
+2004-09-06 14:46 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: some more languages not supported on
+ console
+
+2004-09-06 14:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fa.po, fi.po, fr.po, fur.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, pl.po, pt.po, pt_BR.po, ro.po, ru.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_TW.po: updated pot
+ file
+
+2004-09-06 14:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/po/fr.po: translate Zeroconf message
+
+2004-09-06 13:51 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, ga.po, gl.po: updated
+ pot file
+
+2004-09-06 13:46 Thomas Backlund <tmb at mandrake.org>
+
+ * perl-install/share/po/fi.po: Merge translations by Taisto
+ Kuikka.
+ Update translations, not yet fully translated...
+
+2004-09-06 13:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/modem.pm: (ppp_read_conf) override
+ Authentication if it does not contain a digit character, the
+ empty string exists ...
+
+2004-09-06 13:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/modem.pm: (ppp_read_conf) try to read kppp
+ config from user dir
+
+2004-09-06 13:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (write) fix log message when installing IM
+ packages
+
+2004-09-06 13:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: install_steps.pm, install_steps_interactive.pm,
+ lang.pm, standalone/localedrake: drop lang::write()'s prefix
+ parameter in favor of $::prefix (which was already partially
+ done)
+
+2004-09-06 13:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (build_tree) avoid code
+ duplication, use network::modem::ppp_read_conf
+
+2004-09-06 13:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/modem.pm: (ppp_read_conf) return modem
+ configuration
+
+2004-09-06 13:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/modem.pm: (ppp_read_conf) use /dev/modem if
+ no modem was detected (do not crash when we edit a connection
+ whose modem is unplugged)
+
+2004-09-06 13:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (write, configure_kdeglobals) log quite
+ more explanations
+
+2004-09-06 13:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (write) really do nothing when no IM is set
+ (harmfull but saner)
+
+2004-09-06 13:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/log.pm: (explanations) redirect log where
+ appropriate at install time
+
+2004-09-06 12:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (write) package list was already computed
+
+2004-09-06 12:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/raid.pm: safer
+
+2004-09-06 12:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: do not install uim-applet for
+ japanese since SCIM already provides its own applet
+
+2004-09-06 12:35 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/list: consolechars has moved
+
+2004-09-06 12:33 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: DrakX.pot, zh_CN.po: Updated Simplified
+ Chinese translation
+
+2004-09-06 12:10 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Supplementary media: don't forget to
+ check for a new rpmsrate too
+
+2004-09-06 11:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: fix english name for breton
+
+2004-09-06 11:38 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, pkgs.pm: Make the network
+ supplementary media probe able to find an hdlists file
+
+2004-09-06 11:38 Warly <warly at mandriva.com>
+
+ * isolinux-graphic.bmp: New Community 10.1 logo
+
+2004-09-06 11:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: always set QT_IM_MODULE when setting
+ GTK_IM_MODULE
+
+2004-09-06 11:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/raid.pm: fix typo
+
+2004-09-06 11:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: remove uneeded quotes
+
+2004-09-06 11:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: - install scim-m17n as well for generic
+ SCIM configuration (more input methods) - split am entry from
+ generic one since we've choosen to use scim-tables for am on
+ 2004-09-01
+
+2004-09-06 11:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: add specific packages to install for
+ japanese when using SCIM
+
+2004-09-06 10:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: ensure we do not enable
+ autologin w/o any user
+
+2004-09-06 10:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/raid.pm: handle pt_type, not only fs_type
+
+2004-09-06 10:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: some more logging
+
+2004-09-06 10:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/type.pm: - detect LVM2 - don't even check_md
+ magic when we don't have the size of the device
+
+2004-09-06 10:04 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Override rpmsrate and compssUsers.pl
+ by the ones found on a supplementary CD
+
+2004-09-06 09:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: BIOS release date can have date
+ DD/MM/YY (or maybe it is MM/DD/YY), only YYYY was handled
+
+2004-09-06 09:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: set QT_IM_MODULE too (UTUMI Hirosi)
+
+ we should probably set it for all IM that use gtk+ API since
+ their API is almost identical.
+
+2004-09-06 09:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: fix typo
+
+2004-09-06 09:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/any.pm: Changed "User name" to "Login name" (less
+ ambiguous)
+
+2004-09-06 09:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: - do not run drakconnect for
+ ethernet & ADSL - do not run diskdrake for hd
+
+2004-09-06 08:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: fix displaying "mdmd0"
+ instead of "md0"
+
+2004-09-06 08:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, fs/type.pm: detect linux software raid
+ magic
+
+2004-09-06 08:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: need latest perl-MDK-Common
+
+2004-09-06 08:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getNet) fix detection in 2.4
+ kernel for net devices with high traffic
+
+2004-09-06 07:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: keep linmodem message for Hcf
+ and Hsf
+
+2004-09-06 07:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: remove wrong message about
+ linmodems (#11224)
+
+2004-09-06 07:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (build_notebook)
+ Authentication is used for modems only (better fix for #11142)
+
+2004-09-06 07:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: install xorg-x11-server when
+ installing xorg-x11 (no need to do it based on the hardware
+ anymore (it used to be needed for XF3))
+
+2004-09-06 07:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: typo fix
+
+2004-09-06 06:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.21mdk
+
+2004-09-06 06:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/raid.pm: be more failsafe with half broken existing
+ raids
+
+2004-09-06 06:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install2.pm: always load mouse modules at beginning
+ of install (should fix X test not working with synaptics during
+ install)
+
+2004-09-06 05:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: - don't prompt package
+ groups selection when the available size is 200MB (instead of
+ 140MB) - when user unselect every groups (ie. the special minimal
+ install case), allow the available size to be lower than needed
+ size
+
+2004-09-06 04:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: modules.pm, harddrake/data.pm,
+ standalone/service_harddrake: add module for storage controllers
+ that are not compiled built-in in kernel
+
+2004-09-06 04:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: add a few comments
+
+2004-09-06 04:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: add module for AGP controller
+
+2004-09-06 04:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: run drakconnect when an ADSL
+ device is found (we should do so only when device is added, not
+ when removed)
+
+2004-09-06 04:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: add module for TV cards (trainee
+ sucks...)
+
+2004-09-06 04:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: better looking for
+ alternative drivers
+
+2004-09-06 04:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix crashes
+
+2004-09-06 04:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (_create_window) do not set border for
+ wizards
+
+2004-09-05 19:32 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: Updated Dutch (nl) translation by
+ Reinout van Schouwen <reinout@cs.vu.nl>
+
+2004-09-05 19:21 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: * enabled some more languages in the
+ selection list (Furlan, Frisian, Inuktitut, Greenlandic
+ (Kalaallisut), Khmer, Luxembourguish, Punjabi, Sardinian and
+ Uyghur). Those languages have either translations for
+ Mandrakelinux tools, or for KDE, or Gnome, or any combination
+ of the three; or there have been interest recently in starting
+ a translation for them. * updated list of available locales
+ (@locales)
+
+2004-09-05 18:46 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/pixmaps/langs/: lang-chr.png, lang-csb.png,
+ lang-fur.png, lang-fy.png, lang-ha.png, lang-ik.png, lang-kk.png,
+ lang-kl.png, lang-km.png, lang-ks.png, lang-ks@Arab.png,
+ lang-lb.png, lang-lg.png, lang-lo.png, lang-pa.png, lang-ps.png,
+ lang-sc.png, lang-so.png, lang-sw.png, lang-tt@Cyrl.png,
+ lang-ug.png, lang-ur.png: new lang images
+
+2004-09-05 14:47 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: Replace a XFree86 by X11 in the
+ French messages
+
+2004-09-05 11:14 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2004-09-05 10:50 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, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.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
+
+2004-09-05 09:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/drakbackup: fixed typo
+
+2004-09-05 04:01 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: DrakX.pot, zh_CN.po: Updated Simplified
+ Chinese translation
+
+2004-09-04 15:26 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ja.po: updated Japanese file
+
+2004-09-04 10:08 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/pt.po: fixed typo
+
+2004-09-03 14:10 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: more
+
+2004-09-03 12:31 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated
+
+2004-09-03 10:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/mouse.pm: perl_checker fix
+
+2004-09-03 10:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: (set_synaptics) remove spurious
+ space
+
+2004-09-03 10:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/mouse.pm: (set_xfree_conf) synaptics fixes
+
+2004-09-03 09:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ja.po: update (Yukiko Bando
+ <ybando@k6.dion.ne.jp>)
+
+2004-09-03 09:29 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Umount supplementary CD immediately
+ after having read informations on it.
+
+2004-09-03 08:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getModem) handle new winmodem
+ low level driver for VIA in ALSA
+
+2004-09-03 08:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: make dont_run_directly_stage2 keep
+ runinstall2 as a symlink (since mdkstage1 check it is a symlink)
+
+2004-09-03 08:27 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Make local copies of rpmsrate and
+ compssUsers.pl from supplementary CD
+
+2004-09-03 08:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Makefile, Newt/Newt.xs, interactive/newt.pm,
+ share/list: - we need unicode_start, which need kbd_mode and a
+ real "echo" command - initialize newt (and so slang) with a fake
+ en_US.UTF-8 locale during install (and it works better when
+ slang does its setlocale, i don't know why)
+
+2004-09-03 08:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: always use utf8 strings during install
+ since our locale is always utf8
+
+2004-09-03 08:07 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, pkgs.pm: Better handling of
+ mounting/umounting supplementary CDs
+
+2004-09-03 08:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: log a few more commits from blino
+ for 10.1-0.20mdk
+
+2004-09-03 08:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (findIntf, read_all_conf) use
+ default DEVICE field only at last ressort, keep weird DEVICE
+ fiels (i.e for sagem)
+
+2004-09-03 07:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (write_interface_conf) remove
+ quotes if DEVICE is the result of a command
+
+2004-09-03 07:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: support DHCP and manual for
+ sagem devices
+
+2004-09-03 07:32 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Add a system error when no CD reader
+ is found for a supplementary CD
+
+2004-09-03 07:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/Newt/Newt.xs: don't let slang call setlocale(), we
+ do it ourselves
+
+2004-09-03 07:24 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Remove support for looking directly
+ for a hdlist1s.cz file on supplementary CDs.
+
+2004-09-03 07:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: remove horrible and unneeded
+ workaround
+
+2004-09-03 07:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (configureNetwork2) use key from
+ $intf hash to determine ifcfg filename (to allow to use weird
+ DEVICE fields, like DEVICE=`/usr/sbin/eaglectrl -i`)
+
+2004-09-03 07:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.20mdk
+
+2004-09-03 07:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: shut up perl_checker!
+
+2004-09-03 07:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: remove test_internet_connection(),
+ use network::test instead
+
+2004-09-03 07:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: (get_interface_type) enhance
+ detection for adsl devices
+
+2004-09-03 06:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (write_interface_conf) allow
+ TYPE field, will be used to recognize ADSL interfaces
+
+2004-09-03 06:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/cvslog2changelog.pl: add one more translator
+
+2004-09-03 06:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: install_steps.pm, install_steps_interactive.pm:
+ (setupSCSI) load modularized PATA drivers too
+
+2004-09-03 06:19 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: bs.po, et.po, fr.po, pl.po, pt.po:
+ updated Estonian file
+
+2004-09-03 06:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add disk/ide category since some ATA
+ drivers are currently compiled as modules
+
+2004-09-03 06:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: - sort some categories - add missing
+ drivers: o raid: ipr qla2322 qla6312 qla6322 o ethernet:
+ amd8111e typhoon o gigabit: ixgb s2io via-velocity o sata:
+ sx8 o scsi: dc395x o wireless: atmel_pci hostap_pci
+ hostap_plx prism2_pci
+
+2004-09-03 06:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: adapt to new fctStartAdsl
+
+2004-09-03 05:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add two missing SATA modules
+
+2004-09-03 05:46 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ja.po: small fix in Japanese po files
+
+2004-09-03 05:46 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-09-03 05:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, share/list: stage1 terminfo is not
+ available anymore, use our own terminfo
+
+2004-09-03 05:19 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Don't bypass errorOpeningFile,
+ because it won't ask for further CDs anymore... (/me sux)
+
+2004-09-03 05:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-09-03 04:59 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: now kernel-i686-up-4GB and
+ kernel-p3-smp-64GB are deprecated
+
+2004-09-03 04:57 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: Fix grammar.
+
+2004-09-03 04:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_hbox) do not set extra border
+ since we've a generic fix in _create_window
+
+2004-09-03 04:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (_create_window) prevent inner widgets to
+ stick the window
+
+2004-09-03 03:46 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: don't exclude Gtk2::Entry
+ filling
+
+2004-09-03 03:07 vljubovic
+
+ * perl-install/share/po/bs.po: Improving Bosnian translation
+
+2004-09-03 02:29 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2004-09-02 22:03 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated zh_CN translation
+
+2004-09-02 18:27 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/it.po: updated po file
+
+2004-09-02 17:29 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated partially
+
+2004-09-02 16:30 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, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.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
+
+2004-09-02 15:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/drakhelp: Mandrake -> Mandrakelinux
+
+2004-09-02 11:51 Sharuzzaman Ahmat Raslan <sharuzzaman at myrealbox.com>
+
+ * perl-install/share/po/ms.po: Updated Malay translation
+
+2004-09-02 11:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/main.pm: (write_client_conf) fix drakxtools
+ build
+
+2004-09-02 11:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.19mdk
+
+2004-09-02 10:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: diskdrake, drakclock, drakedm,
+ drakfirewall, drakfloppy, drakperm, drakproxy, draksec,
+ drakxservices, drakxtv, keyboarddrake, logdrake, mousedrake,
+ net_monitor: reuse mcc icons (if availlable) for windows
+
+2004-09-02 10:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: drakhelp, printerdrake, scannerdrake:
+ reuse icon for windows
+
+2004-09-02 09:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakhelp: fix untraslated title
+
+2004-09-02 09:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: do not use supermount
+ by default for removable devices
+
+2004-09-02 09:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/fs/mount_options.pm: set_default: use sync for
+ removable devices
+
+2004-09-02 09:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/localedrake: use proper window & banner
+ icon
+
+2004-09-02 09:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (new) fallback on window'icon for wizards
+
+2004-09-02 09:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (selectLanguage) tag title as translatable
+
+2004-09-02 09:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/localedrake: set banner title...
+
+2004-09-02 09:10 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: DrakX-zh_TW: 626 DrakX will
+ first
+
+2004-09-02 08:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: - add bt878, de2104x, qla2100, sata_sx4 -
+ 3c559 is dead - hw_random replaced amd7xx_tco, amd768_rng and
+ i810_rng - sort sata driver - tmspci replaced sktr long time ago
+
+2004-09-02 08:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/test.pm: initial import of connection test
+ package
+
+2004-09-02 08:24 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, pkgs.pm: If a supplementary media
+ is incorrect, continue asking
+
+2004-09-02 08:21 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm: add 3w-9xxx
+
+2004-09-02 07:48 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Don't log too much
+
+2004-09-02 07:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/rpmsrate: add synaptics in INSTALL section
+
+2004-09-02 07:41 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_steps.pm: Don't unselect all media in
+ autoinstalls.
+
+2004-09-02 07:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: replace /etc/udev/conf.d/xxx.conf shell
+ scripts with /etc/udev/rules.d/xxx.conf conf file
+
+2004-09-02 05:17 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/disk.c: fix cancel in disk install
+
+2004-09-02 04:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: crypto.pm, install_any.pm: adapt to new mirror
+ structure
+
+2004-09-02 03:56 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Allow to deselect media only if the hdlists
+ file contains a line "askmedia"
+
+2004-09-02 03:30 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Don't start network for
+ supplementary media if it is cdrom or disk
+
+2004-09-01 18:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: es.po, fr.po, nb.po, wa.po: updated
+ Norwegian file; small fixes on Spanish, French and Walloon files
+
+2004-09-01 14:47 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Do not check for presence
+ of "scanner-gui" during install.
+
+2004-09-01 14:36 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/services.pm: - Lete the function
+ "start_not_running_service()" really start the specified service
+ if it is not running instead of being a copy of the function
+ "is_service_running()".
+
+2004-09-01 14:30 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/services.pm: - Restored wrong upload.
+
+2004-09-01 14:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: comply with the rpmsrate parser
+
+2004-09-01 14:12 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo melo
+
+2004-09-01 14:08 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: last rush
+
+2004-09-01 13:13 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - If cupsd.conf is read but does
+ not exist, use default settings for all settings which are
+ required. This prevents from writing a corrupt cupsd.conf - Write
+ cupsd.conf only if it exists already (cups package installed). -
+ Create /etc/cups directory if it does not exist when client.conf
+ is written - Return something reasonable if client.conf is tried
+ to be read but does not exist. - Write mime.convs only if it
+ exists already (cups package installed).
+
+2004-09-01 13:02 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/services.pm: - Lete the function
+ "start_not_running_service()" really start the specified service
+ if it is not running instead of being a copy of the function
+ "is_service_running()".
+
+2004-09-01 12:19 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/fonts.tar.bz2: fixed fonts.cache-1 file so
+ that the tamil font no longer claims it support western
+ languages.
+
+2004-09-01 12:19 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, 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, pl.po, pt.po, pt_BR.po, ro.po, ru.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
+
+2004-09-01 11:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/rpmsrate: add xawtv in TV section, install
+ ati.2 for ATI cards only
+
+2004-09-01 10:50 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: perl_checker cleanup
+
+2004-09-01 10:40 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Fixed bug of printerdrake
+ trying to install the virtual package "scanner-gui" during
+ installation (when a multi-function device from HP is present).
+
+2004-09-01 10:36 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: fixed/added some laptop entries
+
+2004-09-01 10:04 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: ensure install_interactive is loaded
+
+2004-09-01 09:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: lang.pm, share/rpmsrate: enable SCIM for Amharic
+ language
+
+2004-09-01 09:34 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: When adding a networked
+ supplementary media, configure the network if needed. Install
+ basesystem for this purpose.
+
+2004-09-01 09:32 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/any.pm: Fix generation of urpmi.cfg when doing a
+ disk install from a live tree
+
+2004-09-01 09:32 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/init.c: drop non-standard tld (localdomain)
+
+2004-09-01 09:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: do not crash if default
+ autologin or default desktop doesn't exist
+
+2004-09-01 08:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: write modules conf
+ files if a tv card is detected
+
+2004-09-01 08:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getBewan) reuse
+ ematching_desc__regexp()
+
+2004-09-01 08:19 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/fonts.tar.bz2: modified the fonts.conf file so
+ that a subset of the "sans" alias list is copied into the "serif"
+ and "monospace" aliases list, before the listing of problematic
+ fonts, hoping it will solve bug #10937 (apparently the problem is
+ that input fields want a monospace font, there is no latin
+ monospace font, and a rando font is used, the tamil one having
+ wrong glyphs at some latin1 positions)
+
+2004-09-01 07:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: fix stupid error
+
+2004-09-01 07:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: revert titi fix, do not return
+ random interface if internet connection is not configured
+
+2004-09-01 07:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: add notconfigured state
+
+2004-09-01 06:45 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2004-09-01 06:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: symlink resolv.conf in install
+ root, so that it works for dhcp too
+
+2004-09-01 06:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: typo fix
+
+2004-09-01 06:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakclock: unbreak drakclock
+
+2004-09-01 06:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.18mdk
+
+2004-09-01 06:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: simplify
+
+2004-09-01 06:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: write /etc/resolv.conf in
+ install root
+
+2004-09-01 06:27 Warly <warly at mandriva.com>
+
+ * perl-install/standalone/drakclock: initialize and so that
+ motion_event correctly handle the mouse moves
+
+2004-09-01 06:04 Warly <warly at mandriva.com>
+
+ * perl-install/standalone/drakclock: Repaint the calendar
+ (especially when the day changed) Make the hour tick shorter
+ Check if the ntpdate command succeed or not, do not quit if it
+ fails Only apply the date command again if ntp mode is not
+ selected
+
+2004-09-01 05:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: do not use find over grep, just
+ find
+
+2004-09-01 05:35 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/Makefile: Split into a new target mdkinst_stage2
+
+2004-09-01 05:23 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/rpmsrate: remove duplicated entry for
+ nut-server
+
+2004-09-01 05:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: enable harddrake2 to properly
+ adapt to theme changes and the like
+
+2004-09-01 05:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: ugtk2.pm, standalone/drakautoinst:
+ (create_notebook) follow the same parameter order as
+ gtkappend_page() use and as C/Gtk+ does
+
+2004-09-01 05:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_notebook) give meaningfull name to
+ variables
+
+2004-09-01 05:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_applet: perl_checker cleanups
+
+2004-09-01 05:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/tools.pm: (get_internet_connection) if no
+ default route exits, take first route in order to not have
+ strange messages in net_appletb
+
+2004-09-01 04:25 Warly <warly at mandriva.com>
+
+ * perl-install/standalone/drakclock: Do not perform a date command
+ when ntpdate has just been called
+
+2004-09-01 04:07 Olivier Blin <oblin at mandriva.com>
+
+ * make_boot_img: set default timeout to 10 seconds in hd_grub to
+ allow editing (#11133)
+
+2004-09-01 04:05 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/lang.pm: Fix syntax error
+
+2004-08-31 14:47 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: dia zero
+
+2004-08-31 13:57 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/detect_devices.pm: please perl_checker
+
+2004-08-31 13:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: (is_running) enhance regexp,
+ use any
+
+2004-08-31 13:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_applet: (is_running) make it work
+
+2004-08-31 13:17 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, 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, pl.po, pt.po, pt_BR.po, ro.po, ru.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
+
+2004-08-31 13:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_applet: (is_running) try harder
+
+2004-08-31 13:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_applet: (is_running) ignore our own
+ process ... (brown paper bag bug)
+
+2004-08-31 11:41 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/harddrake/data.pm: added initial support for UPS
+
+2004-08-31 11:41 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/detect_devices.pm: simplify UPS detection and report
+ the needed info for harddrake
+
+2004-08-31 10:42 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: French grammar fix
+
+2004-08-31 10:35 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Remove dead code
+
+2004-08-31 10:03 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/advertising/: README, corpo-desk-01.pl,
+ corpo-desk-01.png, corpo-desk-02.pl, corpo-desk-02.png,
+ corpo-desk-03.pl, corpo-desk-03.png, corpo-desk-04.pl,
+ corpo-desk-04.png, corpo-desk-05-a.pl, corpo-desk-05-a.png,
+ corpo-desk-05-b.pl, corpo-desk-05-b.png, corpo-desk-05.pl,
+ corpo-desk-05.png, corpo-desk-06-a.pl, corpo-desk-06-a.png,
+ corpo-desk-06-b.pl, corpo-desk-06-b.png, corpo-desk-06.pl,
+ corpo-desk-06.png, corpo-desk-07.pl, corpo-desk-07.png,
+ corpo-desk-08.pl, corpo-desk-08.png, corpo-desk-09.pl,
+ corpo-desk-09.png, corpo-desk-10.pl, corpo-desk-10.png,
+ corpo-server-01.pl, corpo-server-01.png, corpo-server-02.pl,
+ corpo-server-02.png, corpo-server-03.pl, corpo-server-03.png,
+ corpo-server-04.pl, corpo-server-04.png, corpo-server-05.pl,
+ corpo-server-05.png, corpo-server-06.pl, corpo-server-06.png,
+ corpo-server-07.pl, corpo-server-07.png, corpo-server-08.pl,
+ corpo-server-08.png, corpo-server-09.pl, corpo-server-09.png,
+ corpo-server-10.pl, corpo-server-10.png, list-cpd, list-cps:
+ Corporate material
+
+2004-08-31 09:57 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cy.po, da.po, et.po, id.po, lt.po, mt.po,
+ nl.po, uz@Latn.po: updated Welsh and Estonian files; fixed some
+ errors due to automatic replacements.
+
+2004-08-31 09:57 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps.pm,
+ install_steps_interactive.pm, pkgs.pm: Support for unselecting
+ some media before the install (begin.)
+
+2004-08-31 09:47 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: make CONSOLE_NOT_LOCALIZED written to i18n
+ file
+
+2004-08-31 08:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install nut-server for MGE's UPS
+
+2004-08-31 08:12 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/po/fr.po: ads #25: use translation from
+ Marketing and not one which come from nowhere
+
+2004-08-31 07:46 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/po/fr.po: Close <b> in ads #28
+
+2004-08-31 07:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (build_notebook) fix crashes
+ (#11100)
+
+2004-08-31 07:30 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/data.pm: - Let xpp also be installed when in
+ daemon-less CUPS client mode.
+
+2004-08-31 07:28 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/rpmsrate: Remove duplicate entries in rpmsrate
+
+2004-08-31 07:12 Florin Grad <florin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: use the loc zone in policy
+ only if the loc interface exists
+
+2004-08-31 06:54 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: added kuickshow and supertux
+
+2004-08-31 06:39 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: updated a part of
+
+2004-08-31 06:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: handle pd6729 PCMCIA controller (and sort
+ pcmcia controller drivers btw)
+
+2004-08-31 05:58 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm: tulip_old isn't in kernel anymore
+
+2004-08-31 04:43 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2004-08-30 16:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: write ifcfg files for NET_DEVICE if
+ it's ethernet (pptp, pppoe)
+
+2004-08-30 16:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: adsl_conf_backend needs $intf
+ now
+
+2004-08-30 15:39 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, pkgs.pm: Fix support for suppl.
+ CDs with hdlists file
+
+2004-08-30 15:26 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: added smartmontools
+
+2004-08-30 15:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: NET_DEVICE is the ethernet
+ interface for pptp too
+
+2004-08-30 13:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: network/tools.pm, standalone/net_applet,
+ standalone/net_monitor: move start_interface and stop_interface
+ from net_monitor to network::tools, use it in net_monitor and
+ net_applet
+
+2004-08-30 13:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.17mdk
+
+2004-08-30 12:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: allow to connect/disconnect
+ from net_applet
+
+2004-08-30 12:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-08-30 12:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: minor update
+
+2004-08-30 12:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: is_running returns a boolean
+ which would never be > 1
+
+2004-08-30 11:33 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/net_applet: - no need to run net-monitor
+ with '--testing'
+
+2004-08-30 11:22 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/net_applet: - launch net_monitor in
+ background
+
+2004-08-30 11:06 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-08-30 11:04 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/net_applet: - typo
+
+2004-08-30 10:59 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/net_applet: - avoid duplication
+
+2004-08-30 10:36 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/it.po: updated Italian file
+
+2004-08-30 10:28 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/net_applet: - s/and/or/ (oblin)
+
+2004-08-30 10:26 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/net_applet: - launch net_monitor once
+ (test if there's a running net_monitor before)
+
+2004-08-30 10:25 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, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.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
+
+2004-08-30 09:58 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: part updated
+
+2004-08-30 09:31 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Fixed duplicate
+ translatable strings.
+
+2004-08-30 09:20 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/printerdrake: fixed use of N()
+
+2004-08-30 09:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-08-30 09:04 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, standalone/drakconnect, standalone/drakvpn,
+ 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/pl.po,
+ share/po/pt.po, share/po/pt_BR.po, share/po/ro.po,
+ share/po/ru.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 fixes (Arpad Biro
+ <biro_arpad@yahoo.com>)
+
+2004-08-30 08:48 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/25.png: New image
+
+2004-08-30 08:34 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, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.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
+
+2004-08-30 08:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakclock: fix layout so that NTP frame
+ is not badly cut on small resolution (#10971)
+
+2004-08-30 07:56 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: printer/cups.pm, printer/main.pm,
+ printer/printerdrake.pm, standalone/printerdrake: - Added column
+ to show whether the printers are enabled or disables to the list
+ of available print queues in the main window. - Added command to
+ the edit-printer window to enable and disable print queues. -
+ Fixed bug of "--expert" command line option of printerdrake not
+ working.
+
+2004-08-30 05:05 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm: sort network/main
+
+2004-08-30 04:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-08-30 04:56 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm: add tulip_old in network/main
+
+2004-08-30 04:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.16mdk
+
+2004-08-30 04:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: do not restrict "many
+ partitions" test to SCSI devices
+
+2004-08-30 04:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/mouse.pm: really make synaptics works at install
+ (don't crash graphical install)
+
+2004-08-30 04:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: (choose_gtk) fix
+ crash
+
+2004-08-30 04:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::ComboBox::set_text) explain which
+ caller failled
+
+2004-08-30 03:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: do not mount and
+ add/delete in fstab when many partitions (#11005)
+
+2004-08-29 22:40 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: printer/main.pm, printer/printerdrake.pm,
+ standalone/printerdrake: - Inform the user on first-time setup,
+ both during or after installation, that he can set up a
+ daemon-less CUPS client. - Warn the user when printerdrake is
+ set to daemon-less CUPS client but no server is specified. -
+ Fixed bug of local queues not being recognized when the spooler
+ daemon is not running during printerdrake startup. - Do not try
+ to copy print queues when switchung from daemon-less CUPS to
+ normal CUPS. - Remove the client.conf when switching from
+ daemon-less CUPS to normal CUPS.
+
+2004-08-29 21:16 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: DrakX-zh_TW: 618
+ authentication
+
+2004-08-29 12:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: move DHCP column to left for
+ better sizing (Austin <aacton@yorku.ca>)
+
+2004-08-29 12:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: (UpdateAvailable) print ESSID
+ too (Austin <aacton@yorku.ca>)
+
+2004-08-29 12:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: fix Add button behavior (Austin
+ <aacton@yorku.ca>)
+
+2004-08-29 11:34 vljubovic
+
+ * perl-install/share/po/bs.po: Improving Bosnian translation
+
+2004-08-29 08:24 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: DrakX-zh_TW: 612 Espanol
+
+2004-08-29 05:12 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-08-29 04:42 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, 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, pl.po, pt.po, pt_BR.po, ro.po, ru.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
+
+2004-08-29 04:24 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/DrakX.pot: Updated POT file
+
+2004-08-28 00:12 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: DrakX-zh_TW: 604 done
+
+2004-08-27 20:19 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: printer/cups.pm, printer/data.pm,
+ printer/default.pm, printer/main.pm, printer/printerdrake.pm,
+ standalone/printerdrake: - Made support for daemon-less CUPS
+ client working. - Fixed graying out of buttons/menu entries in
+ the main window.
+
+2004-08-27 14:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/modem.pm: use same keys than manage
+ interface for metrics
+
+2004-08-27 14:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (manage) read settings from
+ correct interface for non ethernet interfaces
+
+2004-08-27 14:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (manage) add metric text
+ entry for all connections
+
+2004-08-27 14:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/modem.pm: (ppp_read_conf) read metric if set
+
+2004-08-27 13:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: adsl.pm, modem.pm, netconnect.pm,
+ network.pm, tools.pm: write metric in ifcfg files according to
+ connection type
+
+2004-08-27 10:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: sort a few entries
+
+2004-08-27 10:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: (insert_text_n_scroll) fix
+ displaying only last parsed file
+
+2004-08-27 10:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.15mdk
+
+2004-08-27 10:15 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/rpmsrate: Remove duplicated entries with
+ complex flags from the rpmsrate
+
+2004-08-27 10:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (matching_driver) introduce it in
+ order to factorize some tests
+
+2004-08-27 10:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: bootloader.pm, common.pm, detect_devices.pm,
+ install_any.pm, install_steps.pm, pkgs.pm, Xconfig/card.pm: add
+ __regexp suffix to matching_desc() and matching_driver()
+
+2004-08-27 09:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getModem) report modems
+ supported by ALSA too
+
+2004-08-27 09:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: space cleanup for lord perl_checker
+
+2004-08-27 09:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (IM2packages) - alter prototype: directly
+ take a locale hash - get lang from locale hash - use it to
+ install needed packages depending on locale (instead of only
+ generic ones depending on IM)
+
+2004-08-27 09:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/localedrake: do not complain on wizcancel
+
+2004-08-27 08:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/localedrake: no need to check first step
+ return value since we're covered by both Wizard_no_previous and
+ die('wizcancel')
+
+2004-08-27 08:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/localedrake: remove useless label
+ "the_end"
+
+2004-08-27 08:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/localedrake: inline select_language()
+
+2004-08-27 08:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install2.pm: read modules configuration file from
+ stage1 as modules_conf file, but get an object of the proper type
+ by using modules::any_conf::vnew
+
+2004-08-27 08:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/localedrake: make it looks and behave
+ like a wizard for GUI sanity (previously cancel on second step
+ resulted in step backward rather than exit...)
+
+2004-08-27 08:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/ChangeLog: initial commit
+
+2004-08-27 08:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/Makefile: add changelog target
+
+2004-08-27 05:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cs.po, nb.po: updated Czech and Bokmål
+ po files
+
+2004-08-27 05:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: (lilo_choice) fix canceling
+ first step
+
+2004-08-27 03:47 Olivier Thauvin <thauvin at aerov.jussieu.fr>
+
+ * perl-install/Xconfig/xfree.pm: - add dell D800 specific modeline
+ and resolution
+
+2004-08-27 03:42 Laurent Montel <lmontel at mandriva.com>
+
+ * perl-install/share/rpmsrate: Don't install kdeutils-klaptop all
+ the time just when we detect a laptop
+
+2004-08-27 02:53 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Support for multiple supplementary
+ media
+
+2004-08-27 02:08 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2004-08-26 16:20 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated 95%
+
+2004-08-26 16:12 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated partially
+
+2004-08-26 15:08 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: josé melo
+
+2004-08-26 14:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: complete 10.1-0.14mdk's changelog
+
+2004-08-26 14:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: add bug reference in 10.1-0.11mdk's
+ changelog
+
+2004-08-26 14:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.9mdk
+
+2004-08-26 14:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/mouse.pm: i sux
+
+2004-08-26 13:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: install_steps_gtk.pm, mouse.pm: define and use
+ $o->{mouse}{alternate_install} if detected mouse can't be used
+ during install
+
+2004-08-26 13:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/mouse.pm: (set_xfree_conf) don't create crappy
+ auxmouse if there is none
+
+2004-08-26 13:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: (set_synaptics) quote decimal
+ values so that write_XF86Config doesn't write commas instead of
+ dots
+
+2004-08-26 12:07 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: af.po, ar.po, bn.po, ca.po, cy.po, da.po,
+ de.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, hi.po, it.po,
+ nb.po, nl.po, pl.po, pt.po, pt_BR.po, ru.po, sl.po, tg.po, tl.po,
+ uk.po, uz.po, uz@Latn.po, vi.po, wa.po: updated Estonian and
+ Spanish files; retrieved some more old strings
+
+2004-08-26 11:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: adsl devices need network
+ restart if they're *not* in the adsl devices list
+
+2004-08-26 07:31 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/po/fr.po: Finish to add french translation
+ from Marketing team (DrakX ads)
+
+2004-08-26 07:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_steps.pm: (doPartitionDisksBefore) umount
+ /sys and /proc/bus/usb in chroot
+
+2004-08-26 05:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: minor update
+
+2004-08-26 05:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/: advertising/18.pl, po/DrakX.pot, po/af.po,
+ po/am.po, po/ar.po, po/az.po, po/be.po, po/bg.po, po/bn.po,
+ po/br.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po,
+ po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po,
+ po/fa.po, po/fi.po, po/fr.po, po/fur.po, po/ga.po, po/gl.po,
+ po/he.po, po/hi.po, po/hr.po, po/hu.po, po/id.po, po/is.po,
+ po/it.po, po/ja.po, po/ko.po, po/ky.po, po/lt.po, po/ltg.po,
+ po/lv.po, po/mk.po, po/mn.po, po/ms.po, po/mt.po, po/nb.po,
+ po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po,
+ po/ru.po, po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/sr@Latn.po,
+ po/sv.po, po/ta.po, po/tg.po, po/th.po, po/tl.po, po/tr.po,
+ po/uk.po, po/uz.po, po/uz@Latn.po, po/vi.po, po/wa.po,
+ po/zh_CN.po, po/zh_TW.po: typo fix
+
+2004-08-26 04:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/mouse.pm: (detect) do not return unusable synaptics
+ driver at beginning of install
+
+2004-08-26 04:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-08-25 17:40 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: data.pm, printerdrake.pm: - Moved initial
+ package installation by printerdrake into "install_spooler()"
+ function, so all package installation done by printerdrake
+ (except printer/queue-type-specific, as HPOJ) is done in one
+ step. - First changes for daemonless CUPS client support.
+
+2004-08-25 16:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: avoid grep to grep itself,
+ use perl
+
+2004-08-25 14:19 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/standalone/drakedm: Mandrake -> Mandrakelinux. Mark
+ DM entries as translatable.
+
+2004-08-25 13:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: killer feature:
+ restore bootsplash mode
+
+2004-08-25 12:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: don't abort miserably
+ if configurator is code
+
+2004-08-25 12:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: fix typo
+
+2004-08-25 12:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_any.pm: set TV flag when a TV card is
+ detected to install appropriate packages
+
+2004-08-25 12:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: rename loop variable
+ in order to prevent trainee to be confused
+
+2004-08-25 12:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: support inline
+ configuators
+
+2004-08-25 12:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: run proper program :-)
+
+2004-08-25 12:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: just go on if --force
+ is passed
+
+2004-08-25 11:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_packtable) fix cuted ads at
+ install time
+
+2004-08-25 10:39 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/po/fr.po: DrakX ads: begin to add french
+ translations from Marketing team
+
+2004-08-25 09:31 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/: 02.png, 03.png, 04.png, 05.png,
+ 06.png, 07.png, 08.png, 09.png, 10.png, 11.png, 12.png, 13-a.png,
+ 13-b.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, 27.png, 28.png,
+ 29.png, 30.png: Images for 10.1
+
+2004-08-25 08:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.13mdk
+
+2004-08-25 08:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile.config: add listsupportedprinters
+
+2004-08-25 08:50 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/drakxtools.spec: update changelog dates to please
+ rpm + add some highlights to please titi
+
+2004-08-25 08:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: merge in lost 10-34.3.100mdk's
+ changelog
+
+2004-08-25 08:33 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/drakxtools.spec: enough amd64 changes merged
+
+2004-08-25 08:06 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/strip_modules: Make it possible to strip 2.6 kernel
+ modules (at least those from 2.6.3)
+
+2004-08-25 08:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: fix siol's vci (hexa
+ formated)
+
+2004-08-25 07:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: fix Titi sux hard (add
+ missing comma and spaces, remove spurious nameserver word)
+
+2004-08-25 07:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: use exists
+
+2004-08-25 07:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: add missing spaces
+
+2004-08-25 07:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (manage) use
+ network::tools::get_interface_type instead of
+ /etc/sysconfig/drakconnect in order to avoid to recognize ppp0 as
+ both modem and adsl (bug 10772)
+
+2004-08-25 07:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: add get_interface_type to guess
+ interface type
+
+2004-08-25 07:32 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/crypto.pm: Always prefer 64-bit packages for updates
+ on biarch platforms.
+
+2004-08-25 07:31 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: Parse XFree86.log in last resort
+ in case we have not got any valuable information at this stage
+ from ddcxinfos.
+
+2004-08-25 07:30 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: default to 75dpi in order to
+ get anti-aliased fonts
+
+2004-08-25 07:27 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/Makefile: Handle PCMCIA on x86-64 too. Fix libs glob
+ for live tree. Don't ship with "cdcom" modules archives in
+ netinstallable trees.
+
+2004-08-25 07:25 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/list.x86_64: i18n stuff at install time,
+ probably make it common with /LIB/
+
+2004-08-25 07:24 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/c/smp.c: fix smp detection on x86_64
+
+2004-08-25 07:23 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: handle lib64 drivers on x86-64
+
+2004-08-25 07:22 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/partition_table.pm: add XFS to x86_64 known FS
+
+2004-08-25 07:21 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/install_steps.pm: handle nolapic, idle=poll,
+ ide=nodma boot options
+
+2004-08-25 07:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/any.pm: (selectCountry) fix Pixel broke country
+ selection (bug 10938)
+
+2004-08-25 03:54 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: DrakX-zh_TW: 604 (not
+ finished)
+
+2004-08-24 16:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (add2hosts) use difference2
+
+2004-08-24 16:06 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Special treatments for
+ print queues with the "lbp660" and "ml85p" drivers. Here the
+ driver communicates directly with the printer instead of sending
+ the output to a CUPS backend. - Make sure that queues which have
+ special treatment, as for example the ones using "lbp660" and
+ "ml85p", do not try to open message indows when the print queues
+ are auto-generated by dynamic/hotplug. - If the user gets an
+ error/warning message during setup of a queue with special
+ treatment, he is automatically put back to the previous step in
+ the add-printer wizard. - Let warning messages (funktion
+ "ask_warn()") never embed in the add-printer wizard, as they have
+ no "Previous" button in the wizard.
+
+2004-08-24 15:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (add2hosts) make it more
+ readable
+
+2004-08-24 15:50 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nb.po: updated Bokmål file
+
+2004-08-24 15:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (add2hosts) rework parsing
+
+2004-08-24 14:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: i sux
+
+2004-08-24 14:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_steps.pm: drop non-standard tld
+ (localdomain)
+
+2004-08-24 14:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (configureNetwork2) always add
+ an hostname alias and add it on the loopback device (bug 10345)
+
+2004-08-24 14:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (add2hosts) allow multiple
+ aliases per host
+
+2004-08-24 14:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (add2hosts) regexp fixes
+
+2004-08-24 12:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: mouse.pm, Xconfig/xfree.pm: synaptics touchpad
+ support
+
+2004-08-24 10:04 Pablo Saratxaga <pablo at mandriva.com>
+
+ * 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, pl.po, pt.po, pt_BR.po, ro.po, ru.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_TW.po:
+ updated Japanese file; retrieved some old translation strings
+
+2004-08-24 09:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (configure_net) do not ask
+ the user to do an inifinite looping in MCC ...
+
+2004-08-24 09:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: add Siol (the bigest ADSL
+ provider in Slovenia) in ADSL providers DB (Gregor Pirnaver
+ <gregor.pirnaver@mandrakeprinas.org>)
+
+2004-08-24 09:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (write) use newly introduced IM2packages()
+ in order to install proper packages depending on (locale, input
+ method) tuple
+
+2004-08-24 09:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (IM2packages) introduce it in order to know
+ which packages need to be installed for a (locale, input method)
+ tuple
+
+2004-08-24 08:54 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Fixed "ask_from_()" calls
+ in "config_cups()" (Thanks Olivier for breaking it in your
+ perl-checker clean-up in 1.119 --> 1.120).
+
+2004-08-24 08:48 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-08-24 08:42 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-08-24 08:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: fix crash when config directory
+ does not exist (#10935)
+
+2004-08-24 08:29 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/printerdrake: Version number.
+
+2004-08-24 08:09 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/listsupportedprinters: Added
+ "listsupportedprinters", a simple program which runs the printer
+ model list function of printerdrake to get a list of supported
+ printer models on STDOUT (Mainly for auto-generation of
+ Mandrakelinux hardware support database).
+
+2004-08-24 08:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: standalone/drakups, 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/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/pl.po, share/po/pt.po,
+ share/po/pt_BR.po, share/po/ro.po, share/po/ru.po,
+ share/po/sk.po, share/po/sl.po, share/po/sq.po,
+ share/po/sr@Latn.po, share/po/sr.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
+
+2004-08-24 07:12 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: mmodem
+
+2004-08-24 05:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/printer/detect.pm: (local_detect) fix modules conf
+ parsing
+
+2004-08-24 05:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: (usbMice, usbWacom) wacom devices
+ can have 'wacom' as driver
+
+2004-08-24 05:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/modules/: any_conf.pm, modprobe_conf.pm,
+ modules_conf.pm: really parse modules file according to its type
+ when reading it (always call $conf->read, split
+ modules::any_conf::read in modules::any_conf::read_handled)
+
+2004-08-23 20:57 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: DrakX-zh_TW: 598 If you
+ chose
+
+2004-08-23 14:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/crypto.pm: (getPackages) use new mirror structure
+ filepaths
+
+2004-08-23 11:48 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, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.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
+
+2004-08-23 10:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/commands.pm: (modprobe) use load_with_options
+ instead of load_raw to take care of module dependencies
+
+2004-08-23 10:14 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm: add sata_sil module
+
+2004-08-23 09:08 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: standalone/drakclock, standalone/drakvpn,
+ network/netconnect.pm: no space before question marks in English
+
+2004-08-23 08:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: install_steps_interactive.pm,
+ network/netconnect.pm: no space before a question mark in English
+
+2004-08-23 08:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile.config: add autosetupprintqueues
+
+2004-08-23 07:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.12mdk
+
+2004-08-23 06:35 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-08-23 05:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (add2hosts) make it work with
+ sub hostnames
+
+2004-08-23 05:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: (to_raw_X) do not set DRI mode
+ anymore; this is not needed anymore with PAM
+
+2004-08-23 05:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: printer/printerdrake.pm, 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/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/pl.po, share/po/pt.po, share/po/pt_BR.po,
+ share/po/ro.po, share/po/ru.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/DrakX.pot, share/po/zh_TW.po:
+ language names are upcase in english
+
+2004-08-23 05:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: network/adsl.pm, network/adsl_consts.pm,
+ network/netconnect.pm, 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/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/pl.po,
+ share/po/pt.po, share/po/pt_BR.po, share/po/ro.po,
+ share/po/ru.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/DrakX.pot,
+ 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/drakTermServ, standalone/drakbackup,
+ standalone/drakconnect, standalone/drakpxe, standalone/drakvpn:
+ protocol names, trademark and acronyms should be upcase
+
+2004-08-23 05:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: watch connection time, not
+ disconnection time :-)
+
+2004-08-23 05:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: harddrake/sound.pm, network/netconnect.pm,
+ printer/printerdrake.pm, 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/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/pl.po,
+ share/po/pt_BR.po, share/po/pt.po, share/po/ro.po,
+ share/po/ru.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/DrakX.pot, share/po/zh_CN.po, share/po/zh_TW.po,
+ standalone/drakTermServ, standalone/drakbackup,
+ standalone/drakconnect, standalone/drakfont, standalone/draksec,
+ standalone/draksound, standalone/drakvpn, standalone/drakxtv,
+ standalone/harddrake2, standalone/logdrake: aspell's typo fixes
+
+2004-08-23 04:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: any.pm, install_any.pm, install_interactive.pm,
+ install_messages.pm, services.pm, standalone.pm: aspell's typo
+ fixes
+
+2004-08-22 18:26 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: Updated Dutch (nl) translation by
+ Reinout van Schouwen <reinout@cs.vu.nl>
+
+2004-08-22 08:14 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-08-22 07:40 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/Makefile: adjust Makefile to fit doc module
+ zh_cn
+
+2004-08-21 20:49 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-08-21 19:03 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: printer/main.pm, printer/printerdrake.pm,
+ standalone/autosetupprintqueues: - Added fully automatic,
+ non-interactive, X-less print queue set up by the
+ "autosetupprintqueues" command, preferrably to be started by
+ hotplug. - Typo correction. - Correction of file check for
+ package installation.
+
+2004-08-20 17:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: rollback (a string was
+ removed so translators still have to investigate anyway...)
+
+2004-08-20 17:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: rollback 'n split in order to
+ reduce pressure on translators
+
+2004-08-20 17:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: (network_on_boot step) do not
+ create ifcfg-ippp0 quite randomly
+
+2004-08-20 16:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_steps.pm: (configureNetwork) net_cnx_*
+ scripts are dead
+
+2004-08-20 16:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: ($after_start_on_boot_step)
+ remove obsolete call to write_cnx_script
+
+2004-08-20 16:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix nonsense in reconfigure
+ message (#10827)
+
+2004-08-20 16:39 Olivier Blin <oblin at mandriva.com>
+
+ * make_boot_img: apply ppc patch from Christiaan Welvaart
+
+2004-08-20 13:07 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: uk.po, uz.po, uz@Latn.po, vi.po, wa.po,
+ zh_CN.po, zh_TW.po: updated pot file
+
+2004-08-20 12:56 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: sk.po, sl.po, sq.po, sr.po, sr@Latn.po,
+ sv.po, ta.po, tg.po, th.po, tl.po, tr.po: updated pot file
+
+2004-08-20 12:31 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: nb.po, nl.po, nn.po, pl.po, pt.po,
+ pt_BR.po, ro.po, ru.po: updated pot file
+
+2004-08-20 12:13 Pablo Saratxaga <pablo at mandriva.com>
+
+ * 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: updated pot file
+
+2004-08-20 11:52 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: updated pot file
+
+2004-08-20 10:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/rpmsrate: install kdeutils-klaptop on laptops
+
+2004-08-20 10:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/pkgs.pm: (read_rpmsrate) support the TYPE keyword,
+ using detect_devices::matching_type()
+
+2004-08-20 10:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: add matching_type() to introduce
+ the TYPE keyword in rpmsrate (supports only laptop type for now)
+
+2004-08-20 10:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/Makefile: fix drakxtools build
+
+2004-08-20 10:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: add BuildRequires: rpm-devel b/c of
+ c/stuff.xs (Christiaan Welvaart)
+
+2004-08-20 09:54 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Fixed problem of Brother
+ laser printer on parallel port not showing its name in
+ auto-detection result.
+
+2004-08-20 09:05 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/advertising/05.pl: standardized on using the
+ asterisk as bullet list for all advertisings
+
+2004-08-20 09:01 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/drakvpn: Fixed English typos
+
+2004-08-20 08:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/drakups: fixed English typo
+
+2004-08-20 08:57 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/drakvpn: fixed English typos (no space
+ before colon)
+
+2004-08-20 08:31 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Use standard mouse
+ wait/normal. Make $cmd_line a global. perl_checker fixes.
+
+2004-08-20 08:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: add a fixme comment
+
+2004-08-20 08:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: do not assume internet isn't
+ configured if connect scripts do not exist (they're obsolete),
+ fix connect button sensitivity
+
+2004-08-20 06:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: ethernet.pm, network.pm: update mac
+ address in network::ethernet::get_eth_cards to be sure iftab is
+ always up-to-date
+
+2004-08-20 04:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/po/fr.po: update adsl message (partial fix of
+ bug 5778)
+
+2004-08-20 04:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: (firewire_probe) use sysfs to
+ detect firewire devices (eth1394 should be detected now)
+
+2004-08-20 04:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: fix nasty typo
+
+2004-08-19 22:15 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/am.po: updated Amharic file
+
+2004-08-19 20:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: bg.po, mk.po, ru.po, tg.po, uk.po, uz.po:
+ fixed wrong cyrillic encoding chars
+
+2004-08-19 20:15 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Let printer name,
+ description, location be entered after determining the model in
+ the add printer wizard - Let default print queue name be derived
+ from the model instead of being "Printer", "Printer1", ... -
+ Simplified print queue name generation in non-interactive printer
+ setup - Fixed "Previous" button in the test page step of the add
+ printer wizard.
+
+2004-08-19 19:09 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sr.po: fixed cyrillic encoding mess with
+ Serbian translations
+
+2004-08-19 17:05 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/eu.po: updated Basque file
+
+2004-08-19 14:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.11mdk
+
+2004-08-19 13:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: always close the
+ wizard_window, die when an exception has been raised
+
+2004-08-19 13:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: perl_checker fixes
+
+2004-08-19 13:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/printerdrake: perl_checker fixes
+
+2004-08-19 13:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: perl_checker fixes
+
+2004-08-19 12:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: workaround not to call
+ c::upgrade_utf8 on read-only variables
+
+2004-08-19 12:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/printer/main.pm: workaround not to call
+ c::upgrade_utf8 on read-only variables
+
+2004-08-19 12:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/printer/main.pm: perl_checker fixes
+
+2004-08-19 11:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: network/adsl.pm, network/netconnect.pm,
+ printer/printerdrake.pm, security/help.pm, 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/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/pl.po, share/po/pt_BR.po, share/po/pt.po,
+ share/po/ro.po, share/po/ru.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/DrakX.pot,
+ share/po/wa.po, share/po/zh_CN.po, share/po/zh_TW.po,
+ standalone/drakboot, standalone/drakbug, standalone/drakedm,
+ standalone/drakperm, standalone/draksplash, standalone/drakvpn,
+ standalone/drakxtv, standalone/scannerdrake,
+ standalone/service_harddrake_confirm: typo fixes
+
+2004-08-19 11:32 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: gimp.pm, main.pm, office.pm,
+ printerdrake.pm: - Removed installation of "gimpprint" package,
+ it is part of GIMP 2.0.x now. - Removed configuration of
+ applications, GIMP and OpenOffice.org are patched now so that
+ they do not need configuration of print queues any more. - Text
+ fix for scanners in HP's multi-function devices.
+
+2004-08-19 11:01 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Move code in another function
+
+2004-08-19 10:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/main.pm: (connectionstr) workaround perl bug
+
+2004-08-19 09:30 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm: Fix problem of the "usblp" kernel
+ module not loaded before local printer auto-detection.
+
+2004-08-19 07:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: reduce non default (aka old default
+ ones) IM priority
+
+2004-08-19 05:52 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Sync with Arabeyes CVS
+
+2004-08-19 04:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: fix keyboarddrake not modifying
+ xkb
+
+2004-08-19 03:58 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install2: Wrong comment
+
+2004-08-19 03:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile.drakxtools: fix drakxtools build (do not
+ include ../Makefile.config)
+
+2004-08-19 03:10 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/share/rpmsrate: removing OpenIPMI as default
+
+2004-08-18 16:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (write_interface_conf) use
+ mac_ieee1394 descriptor in iftab for firewire links
+
+2004-08-18 14:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: add bug reference
+
+2004-08-18 13:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: harddrake/data.pm, standalone/service_harddrake:
+ check usb controllers on boot
+
+2004-08-18 12:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.10mdk
+
+2004-08-18 12:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * 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, pl.po, pt.po, pt_BR.po, ro.po, ru.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 in s/%d/%s/ fix in net_applet's message
+
+2004-08-18 12:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: any.pm, lang.pm: fix default IM setting when
+ switching language
+
+2004-08-18 11:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: fix blino sucks
+
+2004-08-18 11:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: hide $release_notes_scroll by
+ default, it's visually cleaner
+
+2004-08-18 11:31 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/ugtk2.pm: Make the status field optional in
+ treeviews
+
+2004-08-18 11:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: restrict the wait message (so that it's dead
+ when an error message is displayed)
+
+2004-08-18 11:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: fix typo
+
+2004-08-18 11:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: fix typos
+
+2004-08-18 11:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, install_steps_interactive.pm,
+ standalone/drakboot: - any::setupBootloader() used to call
+ bootloader::install() whereas
+ install_steps_interactive::setupBootloader() could call it once
+ again (but this code seems dead though) - create
+ any::installBootloader() out of what was done in the end of
+ any::setupBootloader() but also in install_steps_interactive and
+ drakboot (which handled the error that could occur in
+ bootloader::install())
+
+2004-08-18 10:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: perl_checker compliance
+
+2004-08-18 10:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: force ACPI on a laptop with recent
+ bios
+
+2004-08-18 10:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: add PCMCIA controllers class
+
+2004-08-18 10:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, install_steps.pm: create
+ install_acpi_pkgs() and use it for auto_installs
+
+2004-08-18 09:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: use dmidecode to detect
+ isLaptop()
+
+2004-08-18 09:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: Getopt::Long is now faked
+
+2004-08-18 05:33 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: Updated Dutch (nl) translation by
+ Reinout van Schouwen <reinout@cs.vu.nl>
+
+2004-08-18 05:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/data.pm: use
+ network::ethernet::get_eth_categories in ethernet detector
+
+2004-08-17 17:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: fix titi sux, fix I sux
+
+2004-08-17 17:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: use
+ network::tools::get_internet_connection
+
+2004-08-17 17:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: get rid off the
+ 'ifcfg-Manually load a driver' file ...
+
+2004-08-17 17:13 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: bs.po, cs.po: updated Bosnian and Czech
+ files
+
+2004-08-17 17:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: add new functions to make internet
+ connection tests easier
+
+2004-08-17 15:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: drop
+ network::tools::reread_net_conf
+
+2004-08-17 15:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: ethernet.pm, netconnect.pm, network.pm:
+ use network::ethernet::get_eth_categories() when needed
+
+2004-08-17 15:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: add
+ network::ethernet::get_eth_categories
+
+2004-08-17 14:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (easy_dhcp) probe all network
+ sub categories
+
+2004-08-17 14:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: drop
+ network::ethernet::conf_network_card_backend
+
+2004-08-17 14:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (easy_dhcp) don't use
+ network::ethernet::conf_network_card_backend
+
+2004-08-17 14:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (easy_dhcp) sort devices and
+ keep only eth[0-9]+ devices
+
+2004-08-17 13:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (conf_network_card_backend) set
+ NET_INTERFACE too
+
+2004-08-17 13:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (easy_dhcp) allow configured
+ interface not to be eth0 and make sure it uses ethernet
+
+2004-08-17 12:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (write_interface_conf) use
+ unspec descriptor in iftab if link isn't ether
+
+2004-08-17 12:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: fix sagem pty quoting
+
+2004-08-17 12:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: lang::list() is unused, dropping it
+
+2004-08-17 11:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: sagem: don't run pppoa if the
+ ethernet interface isn't created and use a reduced timeout (1
+ second) so that boot doesn't take forever if modem can't be
+ synchronized (maxfail * timeout was equal to 25 minutes)
+
+2004-08-17 11:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Makefile, lang.pm, share/Makefile,
+ share/gen_locales.pl, share/gen_locales.sh, share/list: - don't
+ generate locales.tar.bz2, do the same directly (since it's now
+ quite simple) - when using ramdisk, we now have all the locales,
+ no need to handle it specially
+
+2004-08-17 11:47 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm: (category2modules) allow 'category/*', to
+ use all sub categories
+
+2004-08-17 11:22 Pixel <pixel at mandriva.com>
+
+ * tools/make_mdkinst_stage2: don't remove /usr/share/locale
+ anymore, we use the same locale for all langs
+
+2004-08-17 11:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/type.pm: cleanly handle the case when {pt_type}
+ is 0
+
+2004-08-17 11:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: - fix short label with extension. eg:
+ have "linux-smp" instead of "linuxsmp" - this fixes choosing the
+ default specialised kernel
+
+2004-08-17 10:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: (easy_dhcp) handle pcmci card
+ too
+
+2004-08-17 10:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add network/firewire class
+
+2004-08-17 10:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: eth1394 isn't a disc module
+
+2004-08-17 10:34 Nicolas Planel <nplanel at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: revert my last bad commit
+
+2004-08-17 10:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/: crypto.pm, install2.pm,
+ install_steps_interactive.pm: $::corporate is dead
+
+2004-08-17 09:19 Nicolas Planel <nplanel at mandriva.com>
+
+ * perl-install/c/: smp-dmi.c, stuff.xs.pl: rework smp-dmi, add dmi
+ memory detection suppport
+
+2004-08-17 09:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.9mdk
+
+2004-08-17 08:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: fix suckiness (write proper
+ iftab)
+
+2004-08-17 08:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: fix rpmsrate regarding s2u
+
+2004-08-17 08:13 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Display the list of media already
+ taken into accounts when asking for supplementary media
+
+2004-08-17 07:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: add release notes during
+ install of packages
+
+2004-08-17 07:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_steps_interactive.pm: get
+ release_notes at beginning of
+ install_steps_interactive::acceptLicense(), even when
+ useless_thing_accepted
+
+2004-08-17 07:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-08-17 05:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/bootloader-config: better error handling
+
+2004-08-17 04:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: remove dead code
+
+2004-08-17 04:57 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: fix getting the kernel version, it's now
+ much simpler and works in any case (hopefully!)
+
+2004-08-17 04:54 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: perl_checker fix
+
+2004-08-17 04:52 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Supplementary cd-roms don't need to
+ have a rpmsrate / compssUsers.pl
+
+2004-08-17 04:35 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Log the reason why the rpms aren't
+ installed
+
+2004-08-16 15:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: NET_INTERFACE should be ppp0
+ for pppoe too
+
+2004-08-16 15:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add reminder about external
+ ISDN modems (special init string)
+
+2004-08-16 14:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: merge with waproamd version
+
+2004-08-16 14:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: add comments from waproamd
+ version
+
+2004-08-16 13:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: do not write noipdefault in
+ /etc/ppp/peers/ppp0 for pptp connections
+
+2004-08-16 13:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: alsaconf is in
+ alsa-utils package (bug 10358)
+
+2004-08-16 13:01 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/probing.c: (probe_that_type) do not prompt in
+ discovered_device() before loading usb controllers (they're not
+ network devices)
+
+2004-08-16 12:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: we don't use XF86Config-4
+ anymore
+
+2004-08-16 12:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: handle /etc/X11/xorg.conf
+
+2004-08-16 09:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_probe_info) net_cnx_up is
+ obsolete, pptp info is available in ppp config files
+
+2004-08-16 08:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/compssUsers.pl: field is {default_selected},
+ not {selected}
+
+2004-08-16 08:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_conf_backend) don't write net
+ cnx scripts, internet service should be dead
+
+2004-08-16 08:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: remove useless assignment (already
+ done in adsl_protocol step)
+
+2004-08-16 07:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: fix pppoe with sagem (write
+ ETH=`/usr/sbin/eaglectrl -i` instead of ETH=sagem)
+
+2004-08-16 07:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/netconnect.pm: don't configure firewall
+ after configuring network during install (in summary you can
+ configure firewall directly)
+
+2004-08-16 07:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: better URLPREFIX parsing regexp
+ (handle URLPREFIX = "http://leia")
+
+2004-08-16 07:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: fix pixel sucks
+
+2004-08-16 07:16 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: changed a keyboard name
+
+2004-08-16 07:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_any.pm, Xconfig/card.pm:
+ replace freeDriver with freedriver (stage2 para are lower cased)
+
+2004-08-16 04:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: help debugging detectloader
+
+2004-08-16 04:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: modules::load doesn't accept options
+ anymore, use modules::load_with_options() (bugzilla #10778)
+
+2004-08-16 03:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: add load_with_options()
+
+2004-08-16 03:43 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm: add sata_sis (bugzilla #10365)
+
+2004-08-15 16:33 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/vi.po: updated Vietnamese file
+
+2004-08-15 15:36 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates indexhtml/po/da.po
+ soft/mdkhtmlbrowser/po/da.po soft/mdkonline/po/da.po
+ soft/menudrake/po/da.po soft/rpmdrake/po/da.po
+ soft/urpmi/po/da.po soft/userdrake2/po/da.po
+ soft/wizard_perl/po/da.po gi/perl-install/share/po/da.po
+
+2004-08-15 15:20 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: beta rush
+
+2004-08-15 14:40 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2004-08-15 03:05 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: help-it.pot, it.po: updated Italian file
+
+2004-08-15 01:44 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: DrakX-zh_TW: 591 Generate
+ auto
+
+2004-08-14 12:07 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ta.po: small fix
+
+2004-08-14 11:11 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: nb.po, tg.po, uz.po, uz@Latn.po: fixed
+ shortcut entries ("<control>...")
+
+2004-08-14 10:02 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: am.po, be.po, bn.po, el.po, eo.po, fr.po,
+ fur.po, ga.po, he.po, hi.po, hr.po, id.po, is.po, ko.po, ky.po,
+ lt.po, lv.po, mk.po, mn.po, ms.po, sl.po, sr.po, sr@Latn.po,
+ ta.po, tg.po, th.po, zh_TW.po: fixed special "<control>" entries;
+ included translations for various standard menu entries (File,
+ Edit, Help,...)
+
+2004-08-14 07:24 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/bn.po: updated Bengali file
+
+2004-08-14 04:20 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/help_xml2pm.pl: zh_CN -> zh_cn to fit CVS
+ module
+
+2004-08-13 17:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/cy.po: update
+
+2004-08-13 16:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: fr.po, cy.po: update
+
+2004-08-13 16:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: (updateAutologin) clean
+ any::set_autologin() call
+
+2004-08-13 16:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (set_autologin) parameters are optionnal,
+ writing empty variables in kdmrc and the like means disabled
+ autologin
+
+2004-08-13 15:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: enabled Turkmen and Tatar; prepared various
+ other languages (waiting for lang-*.png pixmap). updated the
+ kde-i18n list with the newly available languages
+
+2004-08-13 15:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: misc cleanups
+
+2004-08-13 14:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: make perl_checker happy
+
+2004-08-13 14:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: perl_checker fix
+
+2004-08-13 14:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: (drakboot --splash) add
+ enable_framebuffer to allow to choose a video mode if boot isn't
+ graphical
+
+2004-08-13 11:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: any.pm, bootloader.pm: add and use
+ bootloader::set_append_netprofile() and
+ bootloader::get_append_netprofile()
+
+2004-08-13 11:01 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/fonts.tar.bz2: changed arabic font to roya.ttf
+ (from fonts-ttf-arabic-farsi) which also cover Farsi (fa).
+ updated Nimbus Sans L to cooker version, and edited it to add the
+ two missing letters needed to full latin and cyrillic coverage
+ (the two letters were latin schwa (for Azeri) and cyrillic che
+ with descender (for Tajik))
+
+2004-08-13 10:45 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: One further step towards the ftp
+ supplementary media
+
+2004-08-13 10:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps_gtk.pm, any.pm: perl_checker
+ compliance
+
+2004-08-13 10:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, bootloader.pm: -
+ bootloader::remove_append_dict() is not useful,
+ bootloader::set_append() can do the same - don't modify anything
+ before "Ok" is clicked - set_append with $netprofile eq '' will
+ remove parameter PROFILE=xxx, which is what we want
+
+2004-08-13 10:11 Pixel <pixel at mandriva.com>
+
+ * Makefile: s/compssUsers/compssUsers.pl/
+
+2004-08-13 10:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Makefile, Makefile.config, install2.pm,
+ install_any.pm, install_steps.pm, install_steps_gtk.pm,
+ install_steps_interactive.pm, pkgs.pm, share/compssUsers,
+ share/compssUsers.pl, share/po/Makefile,
+ share/po/i18n_compssUsers: - don't use compssUsers anymore, use
+ compssUsers.pl - code to display compssUsers choices is now in
+ compssUsers.pl - {compssUsers} is now a list instead of a hash,
+ and so drop {compssUsersSorted} - rename {compssUsersChoice} to
+ {rpmsrate_flags_chosen} (better name) - i18n_compssUsers is no
+ more needed, add share/compssUsers.pl* to ALLPMS
+
+2004-08-13 10:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: any.pm, bootloader.pm: remove old linuxconf
+ profile code
+
+2004-08-13 09:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/any.pm: (setupBootloader__entries) allow to choose
+ net profile in advanced mode
+
+2004-08-13 09:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/bootloader.pm: add remove_append_dict
+
+2004-08-13 08:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/rpmsrate: add list of providers for modem
+ connexions in INSTALL section
+
+2004-08-13 08:38 David Baudens <baudens 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, dis-01.pl, dis-01.png, dis-02.pl,
+ dis-02.png, dis-03.pl, dis-03.png, dis-04.pl, dis-04.png,
+ dis-05.pl, dis-05.png, dis-06.pl, dis-06.png, dis-07.pl,
+ dis-07.png, dis-08.pl, dis-08.png, dis-09.pl, dis-09.png,
+ dis-10.pl, dis-10.png, dis-11.pl, dis-11.png, drweb.pl,
+ drweb.png, dwd-01.pl, dwd-01.png, dwd-02.pl, dwd-02.png,
+ dwd-03.pl, dwd-03.png, dwd-04.pl, dwd-04.png, dwd-05.pl,
+ dwd-05.png, dwd-06.pl, dwd-06.png, dwd-07.pl, dwd-07.png,
+ dwd-08.pl, dwd-08.png, dwd-09.pl, dwd-09.png, list-dis, list-dwd,
+ list-ppp, list-pwp, ppp-01.pl, ppp-01.png, ppp-02.pl, ppp-02.png,
+ ppp-03.pl, ppp-03.png, ppp-04.pl, ppp-04.png, ppp-05.pl,
+ ppp-05.png, ppp-06.pl, ppp-06.png, ppp-07.pl, ppp-07.png,
+ ppp-08.pl, ppp-08.png, ppp-09.pl, ppp-09.png, ppp-10.pl,
+ ppp-10.png, ppp-11.pl, ppp-11.png, pwp-01.pl, pwp-01.png,
+ pwp-02.pl, pwp-02.png, pwp-03.pl, pwp-03.png, pwp-04.pl,
+ pwp-04.png, pwp-05.pl, pwp-05.png, pwp-06.pl, pwp-06.png,
+ pwp-07.pl, pwp-07.png, pwp-08.pl, pwp-08.png, pwp-09.pl,
+ pwp-09.png, pwp-10.pl, pwp-10.png: New ad's for 10.1
+
+2004-08-13 08:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakvpn: perl_checker fix (add missing
+ spaces)
+
+2004-08-13 07:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/ugtk2.pm: ctrl-alt-delete allows to restart install
+
+2004-08-13 07:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakvpn: do not assume drakvpn is already
+ configured if the tunnels file is made of comments only
+
+2004-08-13 07:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: drakupdate_fstab: add
+ debug mode that dumps argv, device list and fstab to make bug
+ reports easier
+
+2004-08-13 07:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: (device_name_to_entry)
+ remove unused $variable
+
+2004-08-13 06:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: (device_name_to_entry)
+ if device looks like a devfs device, set $e->{devfs_device} to
+ $name even if the device wasn't found in devices list (it helps
+ in case the device has been removed in del mode)
+
+2004-08-13 06:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: (device_name_to_entry)
+ remove useless assignment
+
+2004-08-13 06:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: (device_name_to_entry)
+ in non devfs case, $e->{device} always equals to $name, move this
+ test in devfs case
+
+2004-08-13 06:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: (device_name_to_entry)
+ don't do brain twisted things ($e->{prefix} || $e->{device})
+ equals $prefix $prefix . $nb equals $name
+
+2004-08-13 06:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: (device_name_to_entry)
+ fix indentation
+
+2004-08-13 06:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: (device_name_to_entry)
+ define $nb locally
+
+2004-08-13 06:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: (device_name_to_entry)
+ recompute $e->{device} only when needed
+
+2004-08-13 06:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: (device_name_to_entry)
+ do devfs things where they should be done
+
+2004-08-13 06:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: (device_name_to_entry)
+ define $e->{devfs_prefix} if entry looks looks like a devfs one
+ but isn't found in device list (else our computed
+ $e->{devfs_device} will be crappy)
+
+2004-08-13 06:12 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: perl_checker fix
+
+2004-08-13 05:44 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps.pm,
+ install_steps_interactive.pm: Don't ask for the selection of
+ supplementary media in non-interactive installs.
+
+2004-08-13 05:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, install_steps.pm: - move installing acpi
+ and acpid directly in any::setupBootloader() instead of doing
+ it in summaryAfter(), that way acpi and acpid are installed in
+ drakboot (bugzilla #10760) - if no acpi parameter, don't try
+ installing acpi & acpid (fix for ppc)
+
+2004-08-13 04:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (write_interface_conf) do not
+ write undefined MAC address in iftab
+
+2004-08-13 03:37 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Concision, good (says perl_checker)
+
+2004-08-13 03:22 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Try to copy associated synthesis when a
+ custom hdlist path is given
+
+2004-08-13 02:54 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/standalone.pm: Remove a perl compilation warning
+
+2004-08-12 20:09 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, help-de.pot, help-es.pot,
+ help-fr.pot, help-it.pot, help-ru.pot, help-zh_CN.pot, 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,
+ pl.po, pt.po, pt_BR.po, ro.po, ru.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
+
+2004-08-12 16:22 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/lang.pm: Hong Kong -> Hong Kong SAR
+
+2004-08-12 15:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: write interface MAC address in
+ iftab
+
+2004-08-12 15:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: errm, don't commit crappy gnome
+ proxy handling for now
+
+2004-08-12 15:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: (write_interface_conf) simplify
+ HWADDR assignment and define $mac_address (will be used later for
+ /etc/iftab)
+
+2004-08-12 13:54 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/init.c: restart forked process if it exits with
+ exit_value_restart as return code (thanks to Rafael for the
+ choice of its value, 0x35 is the translation of RS, abbreviation
+ of ReStart, in his local l33t dialect, and happens to be 53 in
+ its decimal form, which is quite nice)
+
+2004-08-12 13:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/nn.po: update (Karl Ove Hufthammer
+ <karl@huftis.org>)
+
+2004-08-12 13:42 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/init.c: reorder else if blocks, it's useless to do two
+ times the same test (WEXITSTATUS(wait_status) ==
+ exit_value_proceed)
+
+2004-08-12 13:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/cvslog2changelog.pl: sync with soft/common/username
+
+2004-08-12 13:35 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/init.c: use a do while loop to wait for forked process
+
+2004-08-12 12:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbug: better let pango/Gtk+ do the
+ proper wrapping that let translator manually insert end of lines
+ which will badly look depending on current theme and font
+ settings
+
+2004-08-12 11:31 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, pkgs.pm: First stab at supporting
+ several hdlists on a supplementary CD
+
+2004-08-12 10:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/gen_locales.sh: still needed since installer
+ can't make symlinks on read-only stage2, and we can't easily
+ workaround it by modifying LC_* variables
+
+2004-08-12 10:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/gen_locales.pl: revived, still needed since
+ installer can't make symlinks on read-only stage2, and we can't
+ easily workaround it by modifying LC_* variables
+
+2004-08-12 10:44 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/drakbug: fixed English string
+
+2004-08-12 10:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: br.po, fr.po: update
+
+2004-08-12 10:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: let's be more l10n-friendly
+
+2004-08-12 10:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: fix default connection time
+ (Fabrice FACORAT)
+
+2004-08-12 10:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/sv.po: typo fix (#10713, Robin Rosenberg
+ <robin.rosenberg@dewire.com>)
+
+2004-08-12 10:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: enhance based on perl_checker suggestion, but
+ not using it :)
+
+2004-08-12 10:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: (basic_seclevel_explanations)
+ explain
+
+2004-08-12 10:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: (basic_seclevel_explanations) -
+ handle "bold" value for "weight" - display labels as bold
+
+2004-08-12 10:00 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/fonts.tar.bz2: fixed tamil font (removed wrong
+ unicode values for some glyphs); improved fonts.conf
+
+2004-08-12 09:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/help.pm: fix bad %%
+
+2004-08-12 09:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: kill unused variables
+
+2004-08-12 09:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: kill deprecated parts
+
+2004-08-12 09:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/sv.po: fix missing translations (#10711,
+ Robin Rosenberg <robin.rosenberg@dewire.com>)
+
+2004-08-12 09:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/: help.pm, share/po/help-de.pot,
+ share/po/help-es.pot, share/po/help-fr.pot, share/po/help-it.pot,
+ share/po/help-ru.pot, share/po/help-zh_CN.pot: update from doc
+ (/cooker/doc/manualB)
+
+2004-08-12 08:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: set both NET_DEVICE and
+ NET_INTERFACE in automatic lan configuration (network install)
+
+2004-08-12 08:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: set NET_DEVICE and
+ NET_INTERFACE for lan and adsl dhcp/manual connections
+
+2004-08-12 08:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/help_xml2pm.pl: - nicer error message for
+ help.pm N parameters error - handle <sect3> (and also <option>)
+
+2004-08-12 07:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: standalone doesn't need to be
+ blacklisted
+
+2004-08-12 07:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install driver and firmware for
+ madwifi cards
+
+2004-08-12 06:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/resize_fat/io.pm: remove check_mounted(), it is done
+ by diskdrake
+
+2004-08-12 06:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/sv.po: big swedish update thanks to Robin
+ Rosenberg <robin.rosenberg@dewire.com>
+
+2004-08-12 03:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/security/msec.pm: use difference2() as suggested by
+ new perl_checker warning
+
+2004-08-12 03:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/security/msec.pm: cleanup
+
+2004-08-12 03:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/: resize_fat/io.pm, security/msec.pm: perl_checker
+ compliance
+
+2004-08-12 03:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: cleanup
+
+2004-08-11 17:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: rewrite write_config for
+ wlandetect to use output()
+
+2004-08-11 17:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: regexp cleanup (bis)
+
+2004-08-11 17:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: regexp cleanups
+
+2004-08-11 16:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: remove unused variable
+
+2004-08-11 16:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: use each_index
+
+2004-08-11 16:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: introduce and use
+ isRoamingRunning to detect if the roaming daemon is running
+ (woah, sector clear, titi is gone home, no more cvs conflicts)
+
+2004-08-11 16:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: prepare for multiple roaming
+ daemons support
+
+2004-08-11 16:00 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/es.po: updated Spanish file
+
+2004-08-11 13:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.8mdk
+
+2004-08-11 13:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile.config: install drakroam
+
+2004-08-11 11:57 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Support for ftp supplementary media
+
+2004-08-11 11:55 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, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.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: s/XFree/Xorg/
+
+2004-08-11 11:22 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Restore ability to have
+ supplementary http media.
+
+2004-08-11 11:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install firmware for centrino if
+ needed
+
+2004-08-11 11:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: perl_checker hints
+
+2004-08-11 11:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/gen_locales.pl: unused since locale links are
+ done by the installer
+
+2004-08-11 10:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: rewrite handling of defautl locale
+
+2004-08-11 10:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/gen_locales.sh: do not run gen_locales.pl
+ anymore (locale links are done by the installer)
+
+2004-08-11 10:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/.perl_checker: blacklist Gtk2::SimpleList for
+ drakroam
+
+2004-08-11 10:39 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Fix http installs.
+
+2004-08-11 10:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/lang.pm: main charset is now en_US.UTF-8
+
+2004-08-11 09:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakbug: comment unused variable
+
+2004-08-11 09:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakbug: update product list and fix case
+ (bugzilla is case sensitive)
+
+2004-08-11 09:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakbug: fix product, component and
+ version for bugzilla
+
+2004-08-11 09:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakbug: reorganize to use the same
+ upload info message for Anthill and Bugzilla
+
+2004-08-11 09:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakbug: fix bugzilla url
+
+2004-08-11 09:16 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakhelp: - perl_checker fixes
+
+2004-08-11 08:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone.pm: perl_checker cleanups
+
+2004-08-11 08:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: run UpdateStatus after a
+ timeout in case 'ps' output isn't updated immediately
+
+2004-08-11 08:43 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakhelp: - use webclient-kde instead of
+ konqueror - add epiphany browser
+
+2004-08-11 08:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, install_any.pm, install_steps.pm, lang.pm,
+ pkgs.pm, standalone.pm, ugtk2.pm, interactive/stdio.pm,
+ standalone/harddrake2, standalone/service_harddrake: perl_checker
+ compliance
+
+2004-08-11 08:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: new perl_checker fake those packages
+
+2004-08-11 08:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: make titi enhancement actually
+ work
+
+2004-08-11 08:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: (mkinitrd) log failled command
+
+2004-08-11 08:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: typo fix
+
+2004-08-11 08:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: (Dialog) according to mandrake
+ guidelines we should not use stock icon
+
+2004-08-11 08:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: use standalone
+
+2004-08-11 08:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: only one item can be selected
+ in the known list
+
+2004-08-11 07:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: use a lower scan interval, as
+ requested by Austin
+
+2004-08-11 07:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: use cat_, remove unneeded local
+ $_, try to fix ConnectNow
+
+2004-08-11 07:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: (AddNet) help perl_checker in
+ checking callers
+
+2004-08-11 07:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: (UpdateStatus) simplify
+
+2004-08-11 07:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: simplify through
+ run_program::get_stdout()
+
+2004-08-11 07:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: expand parenthesises
+
+2004-08-11 07:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: (UpdateAvailable) probably
+ better
+
+2004-08-11 07:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: (UpdateAvailable) localize
+ variable
+
+2004-08-11 07:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: (Dialog) indent
+
+2004-08-11 07:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: (Dialog) enable checking call
+ signature
+
+2004-08-11 07:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: (Dialog) simplify: reuse
+ create_scrolled_window()
+
+2004-08-11 07:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: (Dialog) fix it (got broken on
+ ugtk2 port)
+
+2004-08-11 07:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: perl_checker fixes
+
+2004-08-11 04:36 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Misleading comment
+
+2004-08-10 18:22 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: Updated Dutch (nl) translation by
+ Reinout van Schouwen <reinout@cs.vu.nl>
+
+2004-08-10 17:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: perl_checker compliance
+
+2004-08-10 17:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: ugtk2 port
+
+2004-08-10 16:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: (AddNet, WriteConfig) do not
+ bother accessing arrays like in C
+
+2004-08-10 16:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: perl_checker cleanups (GUI code
+ actually wasn't touched in order to help olivier merge his ugtk2
+ porting work)
+
+2004-08-10 15:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: fix roaming detection
+
+2004-08-10 15:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: initial import of wlandetect
+ version, from Austin Action
+
+2004-08-10 14:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: remove unused variable in
+ network::netconnect, thanks perl_checker
+
+2004-08-10 14:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add some FIXME comments in
+ network::netconnect
+
+2004-08-10 14:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: network::tools::connect_prog
+ is really dead now
+
+2004-08-10 14:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: network::tools::connect_prog
+ shouldn't be used/written anymore now
+
+2004-08-10 14:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: kill some more
+ connect/disconnect_file
+
+2004-08-10 13:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: add a horizontal separator
+ in stats to prevent visual disguts between supposed non aligned
+ labels
+
+2004-08-10 13:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: fix looking aka vertical
+ alignment of labels (Fabrice FACORAT <f.faber-pro@ifrance.com>,
+ #10300)
+
+2004-08-10 13:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: fix packing (Fabrice FACORAT
+ <f.faber-pro@ifrance.com>, #10300)
+
+2004-08-10 13:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: add s2u so that hostname changes do
+ not fsck the desktop
+
+2004-08-10 12:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: no {fs_type} doesn't mean
+ the type invalid
+
+2004-08-10 12:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/type.pm: when there is no {pt_type}, favour the
+ one fs_type2pt_type favours
+
+2004-08-10 12:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: create /etc/udev/conf.d/xxx.conf
+
+2004-08-10 12:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: no {pt_type} doesn't mean
+ Empty
+
+2004-08-10 11:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/raid.pm: remove dead code
+
+2004-08-10 10:56 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, pkgs.pm: URLPREFIX is not set if
+ the main media isn't http, so the prefix must be passed manually.
+
+2004-08-10 10:42 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: update
+
+2004-08-10 10:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/cvslog2changelog.pl: list a few more contributors
+
+2004-08-10 10:02 Pixel <pixel at mandriva.com>
+
+ * rescue/make_rescue_img, tools/make_mdkinst_stage2: umount mount
+ point instead of umounting the loopback file (works better when
+ /etc/mtab is /proc/mounts)
+
+2004-08-10 09:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/: bootloader.pm, install2.pm, pkgs.pm,
+ network/adsl.pm: mount /proc, /sys and /proc/usb/usb in $prefix
+ ASAP instead of doing it at various places
+
+2004-08-10 09:52 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/: gen_locales.pl, gen_locales.sh: using
+ "en_US.UTF-8" instead of "UTF-8" as model
+
+2004-08-10 09:49 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/: gen_locales.pl, gen_locales.sh,
+ locales-skeleton.tar.bz2: updated use UTF-8 locales for
+ everything
+
+2004-08-10 07:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: don't install devfsd by default, use
+ udev instead
+
+2004-08-10 07:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/: card.pm, various.pm: s/XFree/Xorg/
+
+2004-08-10 07:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install udev by default
+
+2004-08-10 07:09 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: install_urpmi(): set up the right
+ with_hdlist for urpmi.cfg
+
+2004-08-10 06:06 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Back to first medium after having
+ added a supplementary one. Set prefix for http supplementary
+ media, since $URLPREFIX is not defined.
+
+2004-08-10 05:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: more logs
+
+2004-08-10 05:33 Pixel <pixel at mandriva.com>
+
+ * move/data/nvidia.list: adapt to new driver
+
+2004-08-10 04:51 Pixel <pixel at mandriva.com>
+
+ * move/isolinux/: help.msg, make.pl: - document "formatkey" -
+ s/MandrakeMove/Move/
+
+2004-08-10 04:51 Pixel <pixel at mandriva.com>
+
+ * move/: data/BOOT-1024-MOVE.jpg, data/BOOT-1280-MOVE.jpg,
+ data/BOOT-1600-MOVE.jpg, data/BOOT-800-MOVE.jpg,
+ data/isolinux-graphic.bmp, data/isolinux-graphic.bmp.parameters,
+ img/Mandrake.png: new logos
+
+2004-08-10 04:50 Pixel <pixel at mandriva.com>
+
+ * move/data/boot.list: adapt
+
+2004-08-10 04:48 Pixel <pixel at mandriva.com>
+
+ * move/data/make_i18n_list: en_ZA locales are removed by hand, we
+ also have to skip them from the rpm file list
+
+2004-08-10 04:47 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: helper for building
+ data/isolinux-graphic.bmp.parameters
+
+2004-08-10 04:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules/: modprobe_conf.pm, modules_conf.pm:
+ perl_checker compliance
+
+2004-08-10 04:02 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/fonts.tar.bz2: updated fonts (added devanagari
+ and tamil)
+
+2004-08-10 04:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/: modules.pm, modules/any_conf.pm,
+ modules/modprobe_conf.pm, modules/modules_conf.pm: internally
+ keep module names according to what we configure (and our kernel,
+ 2.4 or 2.6)
+
+2004-08-10 03:10 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/crypto.pm: Adapt to the new mirror structure: RPMs
+ are no longer in a RPMS subdirectory
+
+2004-08-10 03:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/adsl.pm: mounting device "none" is cleaner
+
+2004-08-10 01:35 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/bn.po: updated Bengali file
+
+2004-08-10 01:11 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/pt.po: Remove conflict marker and duplicate
+ entries
+
+2004-08-10 01:06 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Select supplementary medium
+
+2004-08-09 15:15 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: saraiva corrected
+
+2004-08-09 15:14 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: saraiva
+
+2004-08-09 12:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: (basic_seclevel_explanation)
+ handle any tags ala label
+
+2004-08-09 12:24 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Begin the support for installations
+ over multiple media.
+
+2004-08-09 11:20 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-08-09 11:13 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/advertising/: dis-11.pl, dwd-08.pl, ppp-11.pl,
+ pwp-10.pl: s/MandrakeExpert/Mandrakeexpert
+
+2004-08-09 11:05 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/fonts.tar.bz2: replaced arabic and bengali
+ fonts
+
+2004-08-09 10:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: install_any.pm, install_interactive.pm,
+ install_messages.pm, harddrake/sound.pm, standalone/drakfont,
+ standalone/draksec, standalone/draksound, standalone/drakxtv: add
+ hint about ala LaTeX strings for translators
+
+2004-08-09 09:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: in
+ netconnect::(start|stop)_internet, use
+ (connect|disconnect)_backend
+
+2004-08-09 09:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (gtkappend_page) title is optonnal and
+ perl_checker is loudly complaining outdoor...
+
+2004-08-09 09:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_any.pm: use new ISO images volume name
+ (#10543)
+
+2004-08-09 08:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_any.pm: fix regexp (do not strip paths
+ ending in .*iso)
+
+2004-08-09 07:45 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-08-09 06:03 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Arabic (from Arabeyes.org)
+ translation
+
+2004-08-09 05:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/http.pm: use $F instead of *F
+
+2004-08-09 05:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_steps.pm,
+ install_steps_auto_install.pm: correctly call errorInStep()
+
+2004-08-09 05:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: fix call to bootloader::read()
+
+2004-08-09 05:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/network.pm: perl_checker prototype
+ compliance
+
+2004-08-09 05:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/http.pm: prototype perl_checker
+ compliance
+
+2004-08-09 05:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: prototype compliance with perl_checker
+
+2004-08-09 05:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: help perl_checker know the
+ $all_hds *is* used
+
+2004-08-09 05:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: fix typo
+
+2004-08-09 05:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: - fix unlockCdrom() - ejectCdrom()
+ prototype compliance with perl_checker
+
+2004-08-09 05:12 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/eu.po: updated Basque file
+
+2004-08-09 05:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/: lang.pm, ugtk2.pm, standalone/drakxtv,
+ standalone/localedrake: we never pass a prefix to lang::read()
+ which is always use in standalone, so use $::prefix and don't
+ pass a prefix anymore
+
+2004-08-09 05:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: - adapt prototype of runlevel()
+ to its use - bootloader::read() needs fstab
+
+2004-08-09 05:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: flags is optional
+
+2004-08-09 04:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/network.pm: perl_checker compliance +
+ cleanup
+
+2004-08-09 04:54 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ar.po: updated Arabic file
+
+2004-08-09 04:39 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Arabic translation
+
+2004-08-09 04:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: handle ipw2200 too
+
+2004-08-09 04:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-08-09 04:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.7mdk
+
+2004-08-09 04:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-08-09 04:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: - move the "Input method:" at the end (titi
+ did put it in the middle for OptionMenu which is crap) - need
+ updating the "changed" callback since there is a new entry
+
+2004-08-09 04:13 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/directory.c: typo fix (from Olivier Borowski)
+
+2004-08-09 04:03 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: da.po, de.po, el.po, eo.po, es.po, et.po,
+ eu.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, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.po, ta.po, tg.po, th.po, tl.po, tr.po, uk.po, uz.po,
+ uz@Latn.po, vi.po, wa.po: updated pot file
+
+2004-08-09 03:57 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fr.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, zh_TW.po: updated pot file
+
+2004-08-09 03:51 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, fa.po,
+ fi.po, fur.po, zh_CN.po: updated pot file
+
+2004-08-09 03:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: allow 192.168.1.1:/export
+
+2004-08-09 03:42 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: DrakX-zh_TW: 556 The
+ Mandrakelinux
+
+2004-08-09 03:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_applet: developers should always run
+ their stuff with the strict pragma
+
+2004-08-09 03:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: Xconfig/resolution_and_depth.pm,
+ standalone/drakTermServ, standalone/drakautoinst,
+ standalone/drakbackup, standalone/drakbug,
+ standalone/drakconnect, standalone/drakfloppy,
+ standalone/drakperm, standalone/draksec, standalone/logdrake,
+ standalone/net_applet, standalone/net_monitor: prefer obj->new
+ rather than new obj for gtk+ widgets
+
+2004-08-09 03:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakautoinst: perl_checker cleanup
+
+2004-08-09 03:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup: (find_files_to_restore)
+ cleanups
+
+2004-08-09 03:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: remove awesfx from "SYSTEM 2"
+ otherwise it gives a fatal error
+
+2004-08-09 03:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: - perl_checker cleanups - reuse
+ cat_() where opencoded
+
+2004-08-09 03:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_applet: (checkNetwork) do not die
+ when gateway canot be guessed (Joe Bolin
+ <sopwithcamel@charter.net>)
+
+ else the applet dies never to be heard from again until the next
+ login b/c with DHCP connections, the gateway information is lost
+ when the network is manually brought down.
+
+ Indeed gateway is not needed for direct connection through
+ crossover cable.
+
+2004-08-09 02:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_applet: (setState) fix status toolip
+
+2004-08-09 02:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_applet: allow multiple instances, but
+ only one per user (Joe Bolin <sopwithcamel@charter.net>)
+
+2004-08-09 02:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-08-09 01:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix 10.1-0.6mdk's changelog
+
+2004-08-09 01:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: (row_setting_dialog) add hints
+ for translators
+
+2004-08-09 01:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: (row_setting_dialog) enable
+ translators to print a fully translated strings (though we should
+ probably just pregenerate and fill pos with all the strings b/c
+ of inflections and mutations that occur in some languages)
+
+2004-08-09 01:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: sort theme list
+
+2004-08-09 01:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: (row_setting_dialog) do not set
+ hash as string on labels else perl will stringify this very hash
+ thus making draksec crashes with strict pragma
+
+2004-08-09 01:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: drakTermServ, drakbackup, drakboot,
+ drakfloppy, drakperm, draksec: simplify code through
+ Gtk2::ComboBox->new_with_strings()
+
+2004-08-09 01:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * 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, pl.po, pt.po, pt_BR.po, ro.po, ru.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 in typo fixes
+
+2004-08-09 01:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::ComboBox->new_with_strings) make it
+ working
+
+2004-08-09 01:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: sort WMs list
+
+2004-08-09 01:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: use proper widget (aka
+ GtkTable)
+
+2004-08-09 01:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: sort user list
+
+2004-08-08 23:39 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/lang.pm: Revised comments to make non-utf-8 editor
+ happier
+
+2004-08-08 23:30 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/lang.pm: changed default font for gb2312
+
+2004-08-08 22:59 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/: standalone/logdrake, authentication.pm,
+ share/po/zh_CN.po: typo fix
+
+2004-08-08 22:56 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/network/netconnect.pm: s/iwpconfig/iwconfig
+
+2004-08-08 16:28 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: small updates to catalan translation
+
+2004-08-08 12:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/aliases: remove raidstop
+
+2004-08-08 10:47 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Arabic translation
+
+2004-08-08 10:34 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: DrakX-zh_TW: 401 Volume
+ label:
+
+2004-08-08 10:19 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/standalone.pm: s/Mandrake/Mandrakelinux
+
+2004-08-08 10:17 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/advertising/: dis-08.pl, dis-09.pl, dis-10.pl,
+ dwd-04.pl, dwd-06.pl, dwd-07.pl, ppp-04.pl, ppp-05.pl, ppp-08.pl,
+ ppp-09.pl, ppp-10.pl, pwp-04.pl, pwp-07.pl, pwp-08.pl, pwp-09.pl:
+ Some string fixes
+
+2004-08-08 09:57 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/standalone/: drakbug, drakconnect, harddrake2,
+ logdrake, net_monitor: s/Mandrake/Mandrakelinux
+
+2004-08-08 09:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/: bootloader.pm, detect_devices.pm, fsedit.pm,
+ install2.pm, install_any.pm, raid.pm, diskdrake/hd_gtk.pm,
+ diskdrake/interactive.pm, fs/get.pm, share/list.i386: - switch to
+ mdadm (instead of raidtools) - create mdadm.conf instead of
+ raidtab - internal {raids} is no more indexed by X for mdX, and
+ so don't have holes anymore - internal {chunk-size} is now a
+ number in KiB - internal {raid} is the raid device name, not the
+ number - various cleanup for raid detection
+
+2004-08-08 09:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: don't set toFormat if we don't
+ have a {fs_type} (eg: pt_type 0xfd, ie raw raid)
+
+2004-08-08 08:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/: rpmsrate: many authentication packages where
+ missing (bugzilla #10644)
+
+2004-08-08 05:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: replace "More" with a more descriptive
+ button name
+
+2004-08-08 05:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: only load floppy module explictly
+ during install (otherwise it causes ugly messages in
+ bootloader-config)
+
+2004-08-08 02:59 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: DrakX-zh_TW: 205 Local file:
+
+2004-08-07 21:30 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: DrakX-zh_TW: 130
+
+2004-08-07 09:51 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: Updated Dutch (nl) translation by
+ Reinout van Schouwen <reinout@cs.vu.nl>
+
+2004-08-07 04:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/wa.po: updated Walloon file
+
+2004-08-07 04:11 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nb.po: updated Norwegian file
+
+2004-08-07 00:00 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/de.po: updated German file
+
+2004-08-06 23:35 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, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.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
+
+2004-08-06 21:09 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/fsedit.pm: reverted an unneeded string change
+
+2004-08-06 15:40 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Arabeyes' Arabic translation
+
+2004-08-06 15:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-08-06 15:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.6mdk
+
+2004-08-06 11:37 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Allow multiple complicate flags in
+ rpmsrate, if they're exactly the same.
+
+2004-08-06 11:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup: typo fix
+
+2004-08-06 10:59 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: DrakX-zh_TW: 100 What norm
+ is your...
+
+2004-08-06 09:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: fix x-unikey support (Larry Nguyen)
+
+2004-08-06 09:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: - install awesfx too if neded - add
+ a note b/c we cannot install it :-)
+
+2004-08-06 09:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup: cleanups for lord
+ perl_checker
+
+2004-08-06 09:28 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/rpmsrate: If totem is to be avoided for KDE,
+ avoid it in audio as well as in video.
+
+2004-08-06 09:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (selectCountry) fix IM sorting
+
+2004-08-06 09:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (write) fix configuring IM
+
+2004-08-06 09:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup: (advanced_when) quiet runtime
+ warnings
+
+2004-08-06 09:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::ComboBox->set_text) better error
+ message
+
+2004-08-06 09:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup: (advanced_when) fix crash
+ when selecting an entry in pull down menus
+
+2004-08-06 08:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: (network::adsl::adsl_conf_backend)
+ add ppp_async alias for sagem devices (so that they work during
+ install)
+
+2004-08-06 08:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * 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, pl.po, pt.po, pt_BR.po, ro.po, ru.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: push typo fixes in order to reduce pressure on
+ translators
+
+2004-08-06 08:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_conf_backend) let's have a
+ better looking mesage
+
+2004-08-06 08:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_scrolled_window) adding 6px as
+ left margin for TextView in scrolled Window
+
+2004-08-06 08:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: fix titypo
+
+2004-08-06 07:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.5mdk
+
+2004-08-06 07:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: try to load all modules that may be
+ needed to establish connexion
+
+2004-08-06 06:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_conf_backend) only try to
+ mount /proc if it wasn't (eg if we didn't intall any packages)
+
+2004-08-06 06:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: try to mount proc fs too, in case
+ it wasn't done earlier
+
+2004-08-06 04:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: always install all arabic fonts
+ since farsi oness contains nice arabic glyphs but not urdu (by
+ way of arabayes feedback)
+
+2004-08-06 04:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: fix typo
+
+2004-08-06 04:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: don't try to remove non existing
+ should_be_dirs
+
+2004-08-06 04:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: use the new
+ kdenetwork-kppp-provider package (thanks Laurent !) to be able to
+ parse the provider db without requiring kdenetwork-kppp
+
+2004-08-05 17:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: set netcnx type when an
+ external isdn modem is selected, or else modem::ppp_read_conf
+ will crash (Anthill #1033)
+
+2004-08-05 17:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: set netcnx type when an
+ external isdn modem is selected, or else modem::ppp_read_conf
+ will crash (Anthill #1033)
+
+2004-08-05 15:34 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: et.po, uk.po: updated Estonian file
+
+2004-08-05 12:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: try to mount usbdevfs in $::prefix
+ before attempting to run adsl start programs
+
+2004-08-05 11:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: use new arabic font packages
+
+2004-08-05 11:07 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/directory.c: do not go back to the beginning if no
+ distribution is found in the directory (second fix)
+
+2004-08-05 10:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, install_any.pm, install_steps.pm,
+ install_steps_interactive.pm: basic code for upgrading from a
+ redhat distribution
+
+2004-08-05 10:47 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/directory.c: do not go back to the beginning if no
+ distribution is found in the directory
+
+2004-08-05 10:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_messages.pm: (install_completed) bump errata
+ page (though it does not yet exists)
+
+2004-08-05 10:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: make room on replay/auto_install
+ floppy image before doing anything
+
+2004-08-05 10:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install sg usefull when there's a
+ bluetooth device connected to the system
+
+2004-08-05 10:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: write auto_inst.cfg after making
+ room on the floppy image
+
+2004-08-05 09:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install gimp's help along it
+
+2004-08-05 09:09 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Update
+
+2004-08-05 08:56 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Update for discovery
+
+2004-08-05 08:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: update yaboot code (based on
+ Christiaan Welvaart patch)
+
+2004-08-05 08:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: make room on replay/auto_install
+ floppy image before doing anything
+
+2004-08-05 07:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: when replaying, overwrite boot.msg
+ with an empty message to win some space (it was only done in
+ non-replay mode)
+
+2004-08-05 07:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: isLaptop() special code for ppc
+
+2004-08-05 07:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: drop Xpmac support
+
+2004-08-05 07:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: make it clearer by factorizing
+ arch() call
+
+2004-08-05 07:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: fix PPC entries
+
+2004-08-05 07:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakclock: if ntp is used, get the new
+ time before updating the hwclock (fix from Emmanuel Blindauer,
+ #10537)
+
+2004-08-05 06:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: /usr/sbin/ofpath seems to need
+ /mnt/sys mounted, and the device must exist (Christiaan Welvaart)
+
+2004-08-05 06:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix typos (Christiaan Welvaart)
+
+2004-08-05 06:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, install_any.pm, install_steps.pm,
+ Xconfig/various.pm, diskdrake/interactive.pm,
+ standalone/bootloader-config: adapt to bootloader functions now
+ using all_hds instead of hds
+
+2004-08-05 06:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: add dmasound_pmac <=>
+ snd-powermac (for ppc, Christiaan Welvaart)
+
+2004-08-05 06:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/type.pm: "PPC PReP Boot" is an "important" type
+ on ppc
+
+2004-08-05 06:09 Pixel <pixel at mandriva.com>
+
+ * tools/ppc/mkINSTALLCD: update (Christiaan Welvaart)
+
+2004-08-05 06:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list.ppc, rescue/list.ppc: update (Christiaan
+ Welvaart)
+
+2004-08-05 06:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/: list, list.i386, list.x86_64: ntfsresize and
+ dmidecode are not needed on ppc (Christiaan Welvaart)
+
+2004-08-05 06:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/keyboard.pm: ppc doesn't use dumpkeys (?)
+ (Christiaan Welvaart)
+
+2004-08-05 05:50 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm: replace gmac with sungem (Christiaan
+ Welvaart)
+
+2004-08-05 05:46 Pixel <pixel at mandriva.com>
+
+ * Makefile: not images on ppc, we already didn't copy them, but we
+ should also skip building MD5SUM (inspired by Christiaan
+ Welvaart)
+
+2004-08-05 05:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: fix backward compatibility {type}
+ field in partitions and manualFstab
+
+2004-08-05 05:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/: bootloader.pm, install_steps.pm: pass around
+ $all_hds instead of $hds
+
+2004-08-05 05:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, bootloader.pm: create
+ bootloader::allowed_boot_parts() and use it, it allows installing
+ on md0 if using lilo and md0 is raid1
+
+2004-08-05 05:06 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm: fix titypo
+
+2004-08-05 04:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/: services.pm, Xconfig/card.pm, Xconfig/various.pm,
+ standalone/XFdrake: replaced XFree86 and XFree with Xorg
+ (bugzilla #10531)
+
+2004-08-05 04:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: quiet perl_checker
+
+2004-08-05 04:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_conf_backend) fix error
+ message
+
+2004-08-05 04:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: looks like patch -l did wrong
+ things :-(
+
+2004-08-05 04:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm, perl-install/harddrake/sound.pm: add
+ support for ALSA on PPC and SPARC
+
+2004-08-05 04:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: align sound driver entries
+
+2004-08-05 04:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: sort sound driver list
+
+2004-08-05 04:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: - update sound drivers list - snd-dt0197h
+ is now named snd-dt019x
+
+2004-08-05 04:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: update sound drivers list
+
+2004-08-05 04:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install needed alsa tools depending
+ on present sound cards
+
+2004-08-04 17:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: perl_checker cleanup
+
+2004-08-04 17:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: log module loading faillure
+
+2004-08-04 16:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: lang.pm, share/rpmsrate: add x-unikey support for
+ Vietnamese
+
+2004-08-04 16:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: catch die from modules::load
+
+2004-08-04 16:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: add modules arrays and use
+ modules::load to be able to load modules from modules.cz files,
+ load these modules when not in standalone mode (they're needed
+ for install and Move)
+
+2004-08-04 13:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: include fcitx IM too
+
+2004-08-04 11:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix wording
+
+2004-08-04 10:49 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/http.pm: Verify that regexp matched
+
+2004-08-04 10:35 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/directory.c: prefer to use a ramdisk for disk installs
+
+2004-08-04 09:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: .gnome2/wmrc and .wmrc are obsolete, it is
+ now .dmrc (nb: beware, one must write 07IceWM instead of IceWM,
+ same for others)
+
+2004-08-04 09:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile: fix build
+
+2004-08-04 09:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not force kppp
+ installation, it will be installed by modem::ppp_configure if
+ kdebase is installed, else ifup/ifdown scripts are enough
+
+2004-08-04 09:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/isdn.pm: do not write cnx_script anymore
+ (isdn4linux service will modprobe the driver, ibod service is
+ started at boot, ifup/ifdown handle the dial)
+
+2004-08-04 09:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: network/ethernet.pm, network/netconnect.pm,
+ network/tools.pm, standalone/drakconnect: kill set_cnx_script
+ usage, replace cnx_scripts with ifup/ifdown
+
+2004-08-04 09:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: ensure alternative IMs get in in the
+ isos
+
+2004-08-04 09:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: share/rpmsrate, lang.pm: switch korean to
+ scim-hangul IM
+
+2004-08-04 09:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.4mdk
+
+2004-08-04 08:53 Pixel <pixel at mandriva.com>
+
+ * move/make_live: do install mandrake-doc-drakxtools-xx
+
+2004-08-04 08:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: write a cnx_script for adsl
+ connexions too (so that drakconnect can establish the connexion),
+ add a FIXME comment to remind it is bad
+
+2004-08-04 08:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: don't set /etc/sysconfig/desktop anymore,
+ configure ~/.wmrc, ~/.gnome2/gdm and ~/.desktop instead
+
+2004-08-04 07:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: update 10.1-0.3mdk'log (thx to
+ build issue...)
+
+2004-08-04 07:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile.drakxtools: fix build
+
+2004-08-04 06:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile: remove unused net_applet.desktop
+
+2004-08-04 05:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: - same_entries() doesn't look anymore
+ at kernel options (it tends to create stupid alt_xxx entries) -
+ fix creation of labels alt2_alt_xxx (will now be alt2_xxx) -
+ don't create bad "linux-nonfb" for kernel-win4lin
+
+2004-08-04 05:25 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/drakxtools.spec: - do not expand shell vars
+
+2004-08-04 05:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: try to keep the order of kernel
+ options (to help same_entries())
+
+2004-08-04 05:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.3mdk
+
+2004-08-04 05:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/bootloader-config: don't allow unknown
+ kernel names to mess everything
+
+2004-08-04 05:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: handle win4lin kernels
+
+2004-08-04 04:58 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/drakxtools.spec: - do not forget to package xinit.d
+ net_applet file
+
+2004-08-04 04:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: - upcase fields values (and btw
+ reduce the number of strings to translate :-)) - simplify
+ translating
+
+2004-08-04 04:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: uim is already installed if needed
+ depending on locale
+
+2004-08-04 04:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install xvnkb IM for vietnamese
+
+2004-08-04 04:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install ami IM only for korean
+
+2004-08-04 04:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (write) if one override default IM, remove
+ any setting from default IM (hint: some IM configurations do not
+ have all fields set...)
+
+2004-08-04 04:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::ComboBox->set_text) actually print
+ a warning if we failled
+
+2004-08-04 04:14 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/drakxtools.spec: - automatically launch net_applet
+ for KDE, GNOME and IceWM
+
+2004-08-04 04:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (ask_fromW) actually honor
+ default value
+
+2004-08-04 04:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (read) fix IM reading
+
+2004-08-04 04:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: let's system wide config not override
+ user's locale
+
+2004-08-04 04:06 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/share/net_applet.xinit: - added net_applet xinit
+ file to automate launch of net_applet in KDE, GNOME and IceWM
+
+2004-08-04 04:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/: get.pm, mount_options.pm: return a true value
+ for perl
+
+2004-08-04 03:46 Pixel <pixel at mandriva.com>
+
+ * rescue/list: replace /sbin/mkraid with /sbin/mdadm (as told on
+ cooker by Luca Berra)
+
+2004-08-03 13:38 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: error?
+
+2004-08-03 11:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fs.pm, fsedit.pm, install_steps.pm,
+ install_steps_interactive.pm, diskdrake/interactive.pm,
+ fs/mount_options.pm, network/smb.pm, network/smbnfs.pm,
+ standalone/diskdrake, standalone/drakupdate_fstab: move mount
+ options related stuff from fs.pm to newly created
+ fs/mount_options.pm - fs::set_all_default_options() ->
+ fs::mount_options::set_all_default() - fs::mount_options_pack()
+ -> fs::mount_options::pack() - fs::mount_options_unpack() ->
+ fs::mount_options::unpack() - fs::rationalize_options() ->
+ fs::mount_options::rationalize() - fs::set_default_options() ->
+ fs::mount_options::set_default() - fs::mount_options() ->
+ fs::mount_options::list() - fs::mount_options_help() ->
+ fs::mount_options::help()
+
+2004-08-03 11:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/format.pm: add CVS $Id:
+
+2004-08-03 10:50 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: Small typos
+
+2004-08-03 09:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_dialog) only add space between
+ icon and text if there's actually an icon
+
+2004-08-03 09:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: reuse gtkappend_page()
+
+2004-08-03 09:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_notebook) reuse gtkappend_page()
+
+2004-08-03 09:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_dialog) do not show separator by
+ default
+
+2004-08-03 09:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (_create_dialog) sanitize dialogs/popups:
+ - set a border around it - add more space between the icon and
+ the text
+
+2004-08-03 09:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (gtkappend_page) name parameters, enabling
+ perl_checker to check callers' call signature
+
+2004-08-03 09:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_packtable) set a border around
+ packtables
+
+2004-08-03 09:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash2: help perl_checker
+
+2004-08-03 08:57 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/fonts.tar.bz2: oops, /etc/fonts.conf missing
+ from tarball
+
+2004-08-03 08:41 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/pt.po: pt.po was corrupted
+
+2004-08-03 08:14 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, pkgs.pm: A small variable
+ renaming: use $medium for hashes and $medium_name for strings
+
+2004-08-03 07:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, bootloader.pm, fs.pm, fsedit.pm,
+ install2.pm, install_any.pm, install_interactive.pm,
+ install_steps.pm, install_steps_interactive.pm, loopback.pm,
+ lvm.pm, partition_table.pm, diskdrake/dav.pm,
+ diskdrake/hd_gtk.pm, diskdrake/interactive.pm,
+ diskdrake/removable.pm, diskdrake/smbnfs_gtk.pm, fs/format.pm,
+ fs/get.pm, network/netconnect.pm, network/tools.pm,
+ standalone/bootloader-config, standalone/diskdrake,
+ standalone/drakboot, standalone/drakupdate_fstab: many functions
+ in fsedit don't modify anything, they are simply accessors.
+ create fs::get and move them into it
+
+ - device2part(), up_mount_point() moved from fs to fs::get -
+ part2hd(), file2part(), has_mntpoint(), mntpoint2part(),
+ empty_all_hds() moved from fsedit to fs::get - fsedit::get_root()
+ -> fs::get::root() - fsedit::get_root_() -> fs::get::root_()
+
+ - fsedit::get_really_all_fstab() -> fs::get::really_all_fstab() -
+ fsedit::get_all_fstab_and_holes() -> fs::get::fstab_and_holes() -
+ fsedit::get_all_fstab() -> fs::get::fstab() -
+ fsedit::get_all_holes() -> fs::get::holes() -
+ fsedit::all_free_space -> fs::get::free_space() -
+ fsedit::get_really_all_fstab() -> fs::get::really_all_fstab()
+
+ - fsedit::get_fstab_and_holes() -> fs::get::hds_fstab_and_holes()
+ - fsedit::get_holes() -> fs::get::hds_holes() -
+ fsedit::get_fstab() -> fs::get::hds_fstab() -
+ fsedit::free_space() -> fs::get::hds_free_space()
+
+ - fsedit::get_visible_fstab() unused, removed
+
+2004-08-03 06:42 Pixel <pixel at mandriva.com>
+
+ * tools/hd_grub.cgi: better description
+
+2004-08-03 06:41 Pixel <pixel at mandriva.com>
+
+ * Makefile: move back isolinux in ROOTDEST instead of
+ ROOTDEST/install (since the isolinux directory must be at the
+ root of cds)
+
+2004-08-03 05:49 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/fonts.tar.bz2: updted fonts-cache file
+
+2004-08-03 04:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: (add_device_wizard) fix string
+ (Joe Brower)
+
+2004-08-03 04:28 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: - add a warning before formatting the key (in the
+ "formatkey" case) - if no key is found, go on
+
+2004-08-03 04:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/fonts.tar.bz2: add missing fonts.conf (with
+ Kacst-Qr entries)
+
+2004-08-03 03:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps_interactive.pm:
+ authentication::kind2description() has changed and its name is
+ missleading :-( keeping it for now and adapt
+ install_steps_interactive::setRootPassword along what's done in
+ drakauth
+
+2004-08-02 13:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/format.pm: make perl_checker happy
+
+2004-08-02 13:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Makefile: enable ar and fa locales since an arabic
+ font is now available in install
+
+2004-08-02 12:50 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/fonts.tar.bz2: added arabic and bengali fonts
+
+2004-08-02 10:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: don't use supermount for {is_removable}
+ devices when used for a boot time partition (like /usr and /)
+
+2004-08-02 10:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, diskdrake/interactive.pm, fs/type.pm:
+ fsedit::check_fs_type() is now fs::type::check()
+
+2004-08-02 10:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: black list URPM::Build
+
+2004-08-02 10:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: clean spacing
+
+2004-08-02 10:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: use
+ fs::format::check_package_is_installed() before formatting
+ (bugzilla #10435)
+
+2004-08-02 10:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, install_any.pm,
+ diskdrake/interactive.pm, fs/format.pm: - move
+ package_needed_for_partition_type() from fsedit to fs::format -
+ create check_package_is_installed() in fs::format and use it
+
+2004-08-02 09:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: (add_device_wizard) fix string
+
+2004-08-02 09:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/c/Makefile.PL: fix build
+
+2004-08-02 08:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, do_pkgs.pm, lvm.pm, diskdrake/dav.pm,
+ harddrake/sound.pm, network/drakfirewall.pm,
+ network/netconnect.pm, network/network.pm, network/nfs.pm,
+ network/smb.pm, standalone/drakups, standalone/drakxtv: introduce
+ ->ensure_binary_is_installed and use it
+
+2004-08-02 08:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: flag rosegarden4 KDE
+
+2004-08-02 08:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: in sagem start section, modprobe
+ eagle-usb and do not wait for sync here, fctStartAdsl will handle
+ that when pppd is called
+
+2004-08-02 08:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: in speedtouch start section,
+ modprobe speedtch module and use speedtouch-start instead of
+ directly using modem_run
+
+2004-08-02 08:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: in install, run modem start scripts
+ once config is written
+
+2004-08-02 08:07 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: updated installed packages for 10.1
+
+2004-08-02 07:15 Warly <warly at mandriva.com>
+
+ * isolinux-graphic.bmp.parameters: new isolinux logo parameters
+
+2004-08-02 07:08 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/zh_TW.po: updated Chinese file
+
+2004-08-02 07:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: perl_checker cleanup
+
+2004-08-02 07:04 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ar.po: updated Arabic file
+
+2004-08-02 07:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: fix inverted comments
+
+2004-08-02 07:02 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fa.po, uk.po, wa.po: updated Farsi file
+
+2004-08-02 06:56 Warly <warly at mandriva.com>
+
+ * isolinux-graphic.bmp: new test logo
+
+2004-08-02 06:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: (log_output__real) rename it as
+ insert_text_n_scroll() in order to better reflect what it does
+
+2004-08-02 06:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: reuse new ugtk2 infrastructure
+
+2004-08-02 06:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (gtktext_insert) merge with text_append()
+ from logdrake: - name parameters - provide fast text insertion by
+ using named tags instead of anonymous tags. this is especially
+ usefull in order to speed up programs that use quite a lot of
+ identical tags such as logdrake (#8412) and rpmdrake
+
+2004-08-02 06:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: (log_output) fix tag name (was
+ harmfull but it's just saner anyway)
+
+2004-08-02 06:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/autoconf.pm: (network_conf) rename o as
+ obj so that pixel isn't confused
+
+2004-08-02 04:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: don't call
+ will_tell_kernel() when we have lvm (anthill #994)
+
+2004-08-02 03:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: check the XF86Config
+ and/or XF86Config-4 exist before modifying it (otherwise it
+ creates an empty file) (bugzilla #10487)
+
+2004-08-02 03:21 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm: add iteraid (bugzilla #10455)
+
+2004-08-02 02:53 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: use xxx.bmp.parameters to generate boot.msg (i
+ forgot to do it for isolinux-graphic-simple.bmp)
+
+2004-08-02 02:07 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: install lover
+
+2004-08-02 01:52 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: added s2u
+
+2004-08-02 00:16 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/standalone/: drakbackup, drakups, harddrake2:
+ several typos fix
+
+2004-08-02 00:09 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: DrakX-zh_TW: 75 Choose
+ the...
+
+2004-08-01 19:05 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: Updated Dutch (nl) translation by
+ Reinout van Schouwen <reinout@cs.vu.nl>
+
+2004-08-01 05:10 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-07-30 14:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-07-30 13:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-07-30 13:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_applet: keep strings synced and warn
+ both coders and translators about it
+
+2004-07-30 13:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_applet: fix timeout usage
+
+2004-07-30 13:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_applet: like in all other tools,
+ revert ugly code printing "This program cannot be run in console
+ mode", which is easier done in ugtk2.pm
+
+2004-07-30 13:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_applet: do not enforce parameter
+ position in translatable strings
+
+2004-07-30 13:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (shrink_topwindow) drop Gtk+-2.[02]x
+ support
+
+2004-07-30 12:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (selectCountry) let's have a better looking
+ GUI by preventing uneeded scrollbar on pull down menu
+
+2004-07-30 12:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: support nabi input method too
+
+2004-07-30 12:43 Pixel <pixel at mandriva.com>
+
+ * Makefile, perl-install/standalone/draksplash2: draksplash2 is
+ here until merged in draksplash
+
+2004-07-30 12:39 Pixel <pixel at mandriva.com>
+
+ * isolinux-graphic-simple.bmp.parameters,
+ isolinux-graphic.bmp.parameters: files used by lilo-bmp2mdk
+
+2004-07-30 12:38 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: use xxx.bmp.parameters to generate boot.msg
+
+2004-07-30 12:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: log more stuff into 10.1-0.2mdk
+
+2004-07-30 12:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: support im-ja input method too
+
+2004-07-30 11:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (selectCountry) use a combo box rather than
+ a list for listing input methods
+
+2004-07-30 11:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.2mdk
+
+2004-07-30 10:51 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Arabeyes.org's Arabic translation
+
+2004-07-30 10:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, lang.pm: cleanup
+
+2004-07-30 10:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: any.pm, lang.pm: enable one to choose its input
+ method in advanced mode
+
+2004-07-30 09:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/: help.pm, l10n.pm, msec.pm: sync with
+ msec-0.44
+
+2004-07-30 09:25 Vincent Guardiola <vguardiola at mandriva.com>
+
+ * perl-install/authentication.pm: Clean ldap client configuration
+
+2004-07-30 09:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/: rpmsrate: authentication installs
+ perl-Net-DNS in some cases
+
+2004-07-30 08:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: do not offer to
+ configure mouse if we've already automatically reconfigure it b/c
+ of 2.4.x vs 2.6.x switch
+
+2004-07-30 08:43 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Fixes for Anthill #1009,
+ #1010 (DVD recording, disk quota) Direct-to-tape enahancement
+
+2004-07-30 08:38 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Sync with Arabeyes CVS
+
+2004-07-30 08:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: offer to connect for pppoe
+ connexions too
+
+2004-07-30 07:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: modprobe eagle-usb for sagem modems
+ (useful if coldplug doesn't work)
+
+2004-07-30 07:06 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: enhance message
+
+2004-07-30 06:44 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/stage1.c: revert previous commit, that won't work
+ after pivot_root (proc has to be mounted, insmod would have to be
+ able to find the modules in the new root), we'll have to use
+ hotplug to load eagle-usb drivers in Move (in next release maybe)
+
+2004-07-30 06:39 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/stage1.c: revert previous commit, that won't work
+ after pivot_root (proc has to be mounted, insmod would have to be
+ able to find the modules in the new root)
+
+2004-07-30 06:22 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Fixes for AntHill #1009,
+ #1010.
+
+2004-07-30 04:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: sagem: use fctStartAdsl to wait for
+ sync, up the interface and get interface name
+
+2004-07-30 04:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakgw: (outpend) clean by reusing
+ MDK::Common
+
+2004-07-29 16:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/wizards.pm: (check_rpm) backport fix from HEAD
+
+2004-07-29 15:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: drakedm, drakgw, draksec: standalone
+ tools are *not* chrooted
+
+2004-07-29 15:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/tools.pm: (remove_initscript) simplify
+
+2004-07-29 13:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: (show_prev) - kill useless
+ variables - simplify
+
+2004-07-29 13:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: (show_prev) fix preview
+ refresh while simplying code
+
+2004-07-29 13:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: (write_boot_thm) typo fix
+
+2004-07-29 13:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: more cleanups
+
+2004-07-29 13:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: misc cleanups
+
+2004-07-29 12:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: (show_prev) do not crash when
+ the image format is unknown
+
+2004-07-29 12:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: (make_boot_frame) fix it
+
+2004-07-29 12:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: (handle_multiple_cnx) only
+ restart network for ADSL if we use an ethernet modem
+
+2004-07-29 10:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: add newline at end of net_cnx_up
+ script
+
+2004-07-29 10:02 Pixel <pixel at mandriva.com>
+
+ * move/make_live: crack-attack seems to be working...
+
+2004-07-29 09:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: use connect option or pppd in
+ net_cnx_up, not both (to fix weird pppoe net_cnx_up script)
+
+2004-07-29 08:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.1-0.1mdk
+
+2004-07-29 08:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: harddrake/data.pm, standalone/service_harddrake:
+ merge fix from HEAD: do not automatically configure removable
+ media in harddrake GUI (only in harddrake service)
+
+2004-07-29 08:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: use new
+ set_removable_auto_configurator
+
+2004-07-29 08:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: (set_removable_auto_configurator)
+ copy it out from set_removable_configurator()
+
+ (set_removable_configurator) restore it as of MDK10.0 time
+
+2004-07-29 08:09 Pixel <pixel at mandriva.com>
+
+ * move/make_live: also remove drakbackup from menu
+
+2004-07-29 07:42 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: config-stage1.h, stage1.c: s/MandrakeMove/Move/
+
+2004-07-29 07:42 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: handle formatkey which
+ clean_partition_table_and_format_key
+
+2004-07-29 06:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/c/: Makefile, stuff.xs.pl: always include all funcs
+ (these're needed anyway by Move and GlobeTrotter)
+
+2004-07-29 06:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm: merge hds() in get_hds() to correctly
+ handle catching cdie when the device is non partionned
+
+2004-07-29 04:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: split server and plugin options, in
+ order to support again bewan modems (pppd_options wasn't used
+ anywhere, they couldn't work)
+
+2004-07-29 04:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: cleanup, fix various typos
+ (still, ->target seems broken, but i'm not sure, since i couldn't
+ test)
+
+2004-07-28 13:10 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/: drakTermServ, drakbackup: Fix crashes
+ on append_set.
+
+2004-07-28 10:57 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/stage1.c: do not probe usb interface too soon, wait
+ for the Move images to be mounted (or else usb drivers won't be
+ automatically loaded at boot with Move)
+
+2004-07-28 10:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: do not write a blank "pty" option
+ in ppp config file is there is no pty command (should fix some
+ problems with Bewan modems)
+
+2004-07-28 10:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: do not write a blank "pty" option
+ in ppp config file is there is no pty command (should fix some
+ problems with Bewan modems)
+
+2004-07-28 10:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: it's probably better to rely
+ on modem_run since speedtouch.sh may be dropped
+
+2004-07-28 10:34 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/stage1.c: do not probe usb interface too soon, wait
+ for the Move images to be mounted (or else usb drivers won't be
+ automatically loaded at boot with Move)
+
+2004-07-28 09:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/smb.pm: - use option -g for smbclient -L,
+ this fixes bad parsing of formatted smbclient output - skip
+ "netlogon" Disk share (lowercase letters)
+
+2004-07-28 09:08 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: s/MandrakeMove/Move/
+
+2004-07-28 05:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: don't set mount point /mnt/windows
+ for removable devices
+
+2004-07-28 05:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: explain why we set toFormatUnsure
+
+2004-07-28 05:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/type.pm: remove small ugly typo
+
+2004-07-28 04:47 Pixel <pixel at mandriva.com>
+
+ * move/make_live: Swati and Venda have no translation, removing
+
+2004-07-28 04:42 Pixel <pixel at mandriva.com>
+
+ * move/make_live: old workaround not needed anymore in 10.0
+
+2004-07-28 04:23 Pixel <pixel at mandriva.com>
+
+ * move/make_live: remove documentation link in mdkgalaxy
+
+2004-07-28 03:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: fix getCompaqSmartArray() on 2.6
+ (since /proc/driver/cciss/cciss0 doesn't talk about c0dX anymore)
+
+2004-07-28 03:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/: detect_devices.pm: fix getSCSI_26() not sorting
+ the drives
+
+2004-07-27 15:48 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: bunch of work
+
+2004-07-27 12:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, bootloader.pm, fs.pm, fsedit.pm,
+ install2.pm, install_any.pm, install_interactive.pm,
+ install_steps.pm, install_steps_interactive.pm, loopback.pm,
+ lvm.pm, partition_table.pm, raid.pm, diskdrake/dav.pm,
+ diskdrake/hd_gtk.pm, diskdrake/interactive.pm,
+ diskdrake/removable.pm, fs/format.pm, fs/type.pm,
+ network/smbnfs.pm, partition_table/bsd.pm,
+ partition_table/dos.pm, partition_table/gpt.pm,
+ partition_table/mac.pm, partition_table/sun.pm: - add field
+ {fs_type} partially replacing {pt_type} {pt_type} is always a
+ number, {fs_type} is always a string - introduce
+ set_isFormatted() (to ensure {notFormatted} but also
+ {fs_type_from_magic} and {bad_fs_type_magic} are updated) - don't
+ use 0x483 for ext3 anymore (same for reiserfs...), the
+ type_name gives both a pt_type and a fs_type
+
+ - many accessors from partition_table removed (type2fs(),
+ fs2pt_type()) - remove isThisFs() (not useful anymore since we
+ can use directly {fs_type}) - remove isFat() (inline the
+ function) - other isXXX() from partition_table are moved to
+ fs::type - part2name() is now fs::type::part2type_name -
+ name2pt_type() is now fs::type::type_name2subpart() -
+ partition_table::important_types() is now fs::type::type_names()
+ - fsedit::typeOfPart() is now fs::type::fs_type_from_magic()
+
+ - no need to truncate type_name since they are shorter
+
+2004-07-27 09:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: '-e 1' option is unneeded with
+ speedtouch >= 1.3
+
+2004-07-27 07:27 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakbug: - scroll down text while typing
+ - many cleanups - Stable releases are 'Official' and 'Community'
+
+2004-07-27 04:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: save/restore options
+
+2004-07-27 03:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/lvm.pm: a {type} didn't get moved to {pt_type},
+ fixing
+
+2004-07-26 16:03 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/bn.po: updated Bengali file
+
+2004-07-26 10:45 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/ugtk2.pm: Redundant line.
+
+2004-07-26 10:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: cleanup, fix various typos
+ (still, ->target seems broken, but i'm not sure, since i couldn't
+ test)
+
+2004-07-26 10:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: authentication.pm, network/smb.pm,
+ standalone/drakauth: merge auth fixes from HEAD
+
+2004-07-26 08:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: fix getCompaqSmartArray() on 2.6
+ (since /proc/driver/cciss/cciss0 doesn't talk about c0dX anymore)
+
+2004-07-26 07:54 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-07-26 05:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: remove unneeded quotes
+
+2004-07-26 05:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: blacklist Net::DNS (until we get rid
+ of it?)
+
+2004-07-26 05:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: let perl-MDK-Common do the quoting
+
+2004-07-26 05:22 Pixel <pixel at mandriva.com>
+
+ * Makefile: fix upload_only
+
+2004-07-26 04:51 Pixel <pixel at mandriva.com>
+
+ * Makefile, Makefile.config, docs/README, kernel/check_mar.pl,
+ kernel/update_kernel, mdk-stage1/config-stage1.h,
+ mdk-stage1/disk.c, mdk-stage1/network.c,
+ mdk-stage1/doc/TECH-INFOS, perl-install/Makefile,
+ perl-install/Makefile.config, perl-install/Makefile.drakxtools,
+ perl-install/install2.pm, perl-install/install_any.pm,
+ perl-install/install_steps.pm, perl-install/install_steps_gtk.pm,
+ perl-install/lang.pm, perl-install/modules.pm,
+ perl-install/pkgs.pm, perl-install/share/advertising/Makefile,
+ perl-install/share/po/Makefile, perl-install/standalone/drakpxe,
+ rescue/Makefile, tools/Makefile, tools/make_mdkinst_stage2: adapt
+ to new directories layout: - Mandrake/mdkinst ->
+ install/stage2/live - Mandrake/base/mdkinst_stage2.bz2 ->
+ install/stage2/mdkinst_stage2.bz2 - Mandrake/base/rpmsrate ->
+ media/media_info/rpmsrate - Mandrake/RPMS -> media/main - images
+ -> install/images - isolinux -> install/isolinux -
+ Mandrake/share/advertising -> install/extra/advertising
+
+2004-07-26 04:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/format.pm: fix typo
+
+2004-07-26 03:51 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/be.po: small fix
+
+2004-07-23 14:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: netconnect.pm, network.pm: hey, I suck,
+ that's DIAL_ON_IFUP, not DIAL_ON_BOOT
+
+2004-07-23 14:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: perl_checker compliance
+
+2004-07-23 14:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: one more FIXME comment
+
+2004-07-23 14:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: isdn.pm, netconnect.pm, network.pm: -
+ introduce ONBOOT and DIAL_ON_BOOT settings for isdn connections -
+ write this settings with configureNetwork2, kill the old tweak in
+ isdn.pm - use the isdn_dial_on_boot step instead of
+ nework_on_boot in netconnect.pm
+
+2004-07-23 14:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/isdn.pm: FIRMWARE isn't used by ifup-ippp
+
+2004-07-23 12:57 Vincent Guardiola <vguardiola at mandriva.com>
+
+ * perl-install/authentication.pm: remove print coin and pwet in
+ find_srv_name function clean function find_srv_name
+
+2004-07-23 11:12 Vincent Guardiola <vguardiola at mandriva.com>
+
+ * perl-install/authentication.pm: Add "net time set -S $server" to
+ AD et SMBKRB config, for clock sync (kerberos require)
+
+2004-07-23 11:02 Sergey Ribalchenko <fisher at obu.ck.ua>
+
+ * perl-install/share/po/uk.po: Ukrainian translation update.
+
+2004-07-23 11:00 Pixel <pixel at mandriva.com>
+
+ * tools/mkhdlist: obsolete since 4 years
+
+2004-07-23 10:54 Pixel <pixel at mandriva.com>
+
+ * tools/updatehdlist: remove fpons only tool
+
+2004-07-23 08:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: pptp connections are now handled by
+ pppd (#6515)
+
+2004-07-23 06:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: remove useless $lan_button
+ and $host_button in old drakconnect
+
+2004-07-23 06:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fs.pm, install_any.pm, partition_table.pm,
+ diskdrake/hd_gtk.pm, diskdrake/interactive.pm, fs/format.pm:
+ replace pt_type2name($part->{pt_type}) with part2name($part)
+ (hoisting the dereferencing {pt_type})
+
+2004-07-23 06:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table.pm: - simplify partition table entry
+ names (based on fdisk's names) - rename some internal variables
+
+2004-07-23 05:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: cosmetics (remove useless
+ blanks at end of line)
+
+2004-07-23 05:02 Pixel <pixel at mandriva.com>
+
+ * move/make_live: mozilla need mozilla-rebuild-databases.pl to work
+
+2004-07-23 05:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: prepare for
+ network::tools::reread_net_conf removal
+
+2004-07-23 04:43 Pixel <pixel at mandriva.com>
+
+ * move/make_live: crack-attack doesn't work on 10.0
+
+2004-07-23 04:42 Pixel <pixel at mandriva.com>
+
+ * move/make_live: remove unneeded dri/tls
+
+2004-07-23 04:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table.pm: old dos is not useful anymore
+
+2004-07-23 04:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table.pm: simplify
+
+2004-07-23 04:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/: commands.pm, fs.pm, loopback.pm, raid.pm, swap.pm,
+ diskdrake/interactive.pm, fs/format.pm: - move format related
+ functions out of fs.pm to new module fs/format.pm - remove
+ swap.pm, moving its few functions to fs/format.pm or fs.pm
+
+2004-07-23 03:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: fix indentation
+
+2004-07-22 11:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules/any_conf.pm: perl_checker enhancement
+
+2004-07-22 11:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules/: modprobe_conf.pm, modules_conf.pm,
+ any_conf.pm: add $Id
+
+2004-07-22 10:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: cleanup
+
+2004-07-22 10:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/: modules.pm, modules/any_conf.pm,
+ modules/modprobe_conf.pm, modules/modules_conf.pm:
+ modules::modprobe_conf now works (at least a little :)
+
+2004-07-22 09:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone.pm: (rename) only log succesfull
+ renamings
+
+2004-07-22 09:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: isRemovableDrive() doesn't check
+ isRemovableUsb() anymore allowing more usb removable drives (esp.
+ some usb keys declared as memory cards (0x0c76 0x0005))
+
+2004-07-22 09:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: - isRemovableDrive() removed,
+ partially replaced with may_be_a_hd() - the main difference is
+ that isRemovableDrive() checked isRemovableUsb() whereas
+ may_be_a_hd() allows more usb removable drives (esp. memory
+ cards and some usb keys declared as memory cards (0x0c76 0x0005))
+
+2004-07-22 09:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: simplify
+
+2004-07-22 09:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: need latest MDK::Common
+
+2004-07-22 09:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: - re-indent - use begins_with()
+
+2004-07-22 08:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: bump drakconf conflict due to new
+ drakconnect API
+
+2004-07-22 08:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/network.pm: perl_checker compliance
+
+2004-07-22 07:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/network.pm: - don't use if_() when not
+ needed and strange - read_tmdns_conf() now knows which file it
+ reads, don't give it as argument
+
+2004-07-22 07:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: (read_tmdns_conf) unbreak oblin
+ code
+
+2004-07-22 07:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: (read_tmdns_conf) reinsert
+ parameter naming for parameter checking
+
+2004-07-22 07:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: rewrite read_tmdns_conf to use
+ cat_
+
+2004-07-22 06:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: perl_checker/misc fixes
+
+2004-07-22 04:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: more cleanup
+
+2004-07-22 04:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: cleanup
+
+2004-07-22 04:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: shorter and faster
+
+2004-07-22 04:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fs.pm, fsedit.pm: set {is_removable} directly in
+ fsedit::hds()
+
+2004-07-21 09:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/.perl_checker: blacklist URPM::Resolve
+
+2004-07-21 09:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakauth: perl_checker fix
+
+2004-07-21 08:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-57mdk
+
+2004-07-21 08:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: bump requires on perl-MDK-Common
+ b/c of localedrake vs CJK issue
+
+2004-07-21 08:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: fix xmodifiers setting which is broken
+ since perl-MDK-Common-1.1.13-1mdk
+
+2004-07-21 06:08 Vincent Guardiola <vguardiola at mandriva.com>
+
+ * perl-install/authentication.pm: Add service smb et winbind
+ restart in smbkrb config
+
+2004-07-21 03:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/: harddrake/autoconf.pm,
+ standalone/service_harddrake: use do_pkgs_standalone->new instead
+ of class_discard
+
+2004-07-21 03:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/do_pkgs.pm: - do_pkgs_standalone->new doesn't *need*
+ a $in anymore - ->in replace ->{in} so that it can be created on
+ demand (ugly, but...)
+
+2004-07-21 03:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/do_pkgs.pm: ->{in}->do_pkgs gives the same kind of
+ object, removing it
+
+2004-07-21 02:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/: commands.pm, detect_devices.pm, install2.pm,
+ install_any.pm, install_steps.pm, install_steps_auto_install.pm,
+ install_steps_interactive.pm, modules.pm, mouse.pm,
+ Xconfig/default.pm, harddrake/autoconf.pm, harddrake/data.pm,
+ harddrake/sound.pm, harddrake/v4l.pm, modules/any_conf.pm,
+ modules/interactive.pm, modules/modprobe_conf.pm,
+ modules/modules_conf.pm, network/adsl.pm, network/ethernet.pm,
+ network/isdn.pm, network/netconnect.pm, network/network.pm,
+ network/shorewall.pm, network/tools.pm, printer/detect.pm,
+ printer/main.pm, printer/printerdrake.pm, standalone/drakconnect,
+ standalone/drakgw, standalone/draksound, standalone/drakxtv,
+ standalone/mousedrake, standalone/printerdrake,
+ standalone/service_harddrake: - %modules::conf is no more a
+ global, so many functions need passing $modules_conf -
+ $modules_conf is a class choosing modules.conf or modprobe.conf
+ (esp. useful after install) (but not working yet!) -
+ modules::load() doesn't use $modules_conf, use
+ modules::load_and_configure() - modules::load() doesn't allow
+ options, use either modules::load_raw() or
+ modules::load_and_configure() - some functions used to want an
+ array ref for modules options and some a string, now every
+ functions use a string - many functions (like
+ modules::get_alias()) are now methods on $modules_conf - some
+ functions in mouse.pm needed a $in where a $do_pkgs is enough -
+ some perl_checker compliance - small fixes
+
+2004-07-21 02:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/: drakpxe, draksec: perl_checker
+ compliance
+
+2004-07-21 02:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/: drakboot, drakfloppy: remove unused
+ variable
+
+2004-07-21 02:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakautoinst: perl_checker fixes
+
+2004-07-21 02:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/XFdrake: XFdrake doesn't modify
+ modules_conf! (or does it?)
+
+2004-07-21 02:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/smb.pm: perl_checker compliance
+
+2004-07-21 01:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/: authentication.pm, install_steps_gtk.pm:
+ perl_checker compliance
+
+2004-07-20 18:40 Vincent Guardiola <vguardiola at mandriva.com>
+
+ * perl-install/authentication.pm: remove ask_warn winbind or SFU
+ and add new entry in kinds
+
+2004-07-20 17:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: maxi perl_checker compliance
+ combo
+
+2004-07-20 17:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix perl_checker combo (yeah)
+
+2004-07-20 17:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: do not read conf in
+ add_intf, this is already done by the netconnect wizard
+
+2004-07-20 17:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: oops, fix suckiness
+
+2004-07-20 17:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: use read_net_conf to avoid
+ code duplication
+
+2004-07-20 17:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: network/netconnect.pm, network/tools.pm,
+ standalone/drakconnect, standalone/net_monitor: merge
+ netconnect::load_conf in netconnect::read_conf (and replace all
+ calls to lload_conf with read_conf, remove all previous calls to
+ read_conf)
+
+2004-07-20 16:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: unused variable
+
+2004-07-20 13:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: cosmetics
+
+2004-07-20 12:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: do not allocate new
+ Gtk2::Gdk::GC at each redraw (last memory leak fixed ?)
+
+2004-07-20 12:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksound: do not probe devices twice
+ (and avoid to grep on detect_devices::probeall()), cosmetics
+
+2004-07-20 11:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: use the power of the
+ Gtk2::Dialog widget, thus giving change_color() more luck to
+ succeed
+
+2004-07-20 11:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: authentication.pm, standalone/drakauth: better
+ looking wizard
+
+2004-07-20 11:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakauth: put help out of the radiobutton
+
+2004-07-20 10:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: translate connection type
+ (Fabrice Facorat)
+
+2004-07-20 10:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: fix spacing (from Fabrice
+ Facorat, #10300), remove blank line
+
+2004-07-20 10:50 Pixel <pixel at mandriva.com>
+
+ * move/make_live: don't remove CD-based applications from
+ simplified menu
+
+2004-07-20 10:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: use correct method
+ variable in chooseCD (even if this code is used only in expert
+ mode which isn't anymore supported)
+
+2004-07-20 10:22 Vincent Guardiola <vguardiola at mandriva.com>
+
+ * perl-install/authentication.pm: Add desciption for
+ authentification type Add Entry for IDMAP
+
+2004-07-20 10:20 Vincent Guardiola <vguardiola at mandriva.com>
+
+ * perl-install/standalone/drakauth: Add type => 'list' in ask_from
+
+2004-07-20 10:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: don't probe again connection type
+ here since now network::netconnect::load_conf does it as intended
+ initially
+
+2004-07-20 10:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: don't forget to send $netcnx
+ to network::network::read_all_conf ... (or else we won't get
+ back the probed connection type)
+
+2004-07-20 09:35 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: changed MandrakeSoft -> Mandrakesoft
+
+2004-07-20 09:20 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, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po,
+ tg.po, th.po, tl.po, tr.po, translation_size.pl, uk.po, uz.po,
+ uz@Latn.po, validate.pl, vi.po, wa.po, zh_CN.po, zh_TW.po:
+ changed MandrakeSoft -> Mandrakesoft
+
+2004-07-20 08:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (write) better check parameter rather than
+ EUID
+
+2004-07-20 07:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (write) do not bother trying to write
+ /etc/menu-methods/lang.h when run as a user
+
+2004-07-20 04:42 Pixel <pixel at mandriva.com>
+
+ * globetrotter/hwprofile, globetrotter/move.pm,
+ globetrotter/runstage2, mdk-stage1/Makefile,
+ mdk-stage1/Makefile.common, mdk-stage1/Makefile.mkinitrd_helper,
+ mdk-stage1/adsl.c, mdk-stage1/adsl.h, mdk-stage1/automatic.c,
+ mdk-stage1/automatic.h, mdk-stage1/cdrom.c, mdk-stage1/cdrom.h,
+ mdk-stage1/config-stage1.h, mdk-stage1/dhcp.c, mdk-stage1/dhcp.h,
+ mdk-stage1/directory.c, mdk-stage1/directory.h,
+ mdk-stage1/disk.c, mdk-stage1/disk.h, mdk-stage1/dns.c,
+ mdk-stage1/dns.h, mdk-stage1/frontend-common.c,
+ mdk-stage1/frontend.h, mdk-stage1/init-libc-headers.h,
+ mdk-stage1/init.c, mdk-stage1/insmod.h, mdk-stage1/log.c,
+ mdk-stage1/log.h, mdk-stage1/lomount.c, mdk-stage1/lomount.h,
+ mdk-stage1/minilibc.c, mdk-stage1/minilibc.h,
+ mdk-stage1/modules.c, mdk-stage1/modules.h,
+ mdk-stage1/modules_descr.h, mdk-stage1/mount.c,
+ mdk-stage1/mount.h, mdk-stage1/network.c, mdk-stage1/network.h,
+ mdk-stage1/newt-frontend.c, mdk-stage1/nfsmount.c,
+ mdk-stage1/probing.c, mdk-stage1/probing.h,
+ mdk-stage1/rescue-gui.c, mdk-stage1/stage1.c,
+ mdk-stage1/stage1.h, mdk-stage1/stdio-frontend.c,
+ mdk-stage1/tools.c, mdk-stage1/tools.h, mdk-stage1/url.c,
+ mdk-stage1/url.h, mdk-stage1/bzlib/Makefile,
+ mdk-stage1/doc/README, mdk-stage1/doc/documented..frontend.h,
+ mdk-stage1/insmod-busybox/insmod-frontend.c,
+ mdk-stage1/insmod-modutils/insmod-frontend.c,
+ mdk-stage1/mar/Makefile, mdk-stage1/mar/mar-extract-only.c,
+ mdk-stage1/mar/mar-extract-only.h, mdk-stage1/mar/mar-frontend.c,
+ mdk-stage1/mar/mar.h, mdk-stage1/mkinitrd_helper/Makefile,
+ mdk-stage1/mkinitrd_helper/mkinitrd_helper.c,
+ mdk-stage1/newt/Makefile, mdk-stage1/pci-resource/Makefile,
+ mdk-stage1/pcmcia_/Makefile, mdk-stage1/pcmcia_/cardmgr.c,
+ mdk-stage1/pcmcia_/pcmcia.h, mdk-stage1/pcmcia_/probe.c,
+ mdk-stage1/ppp/pppd/Makefile, mdk-stage1/rp-pppoe/src/Makefile,
+ mdk-stage1/slang/Makefile, mdk-stage1/usb-resource/Makefile,
+ move/Makefile, move/move.pm, move/runstage2, move/doc/README,
+ move/tree/sound.initscript, perl-install/install2,
+ perl-install/install_messages.pm, perl-install/mouse.pm,
+ perl-install/scanner.pm, perl-install/standalone.pm,
+ perl-install/diskdrake/diskdrake.html,
+ perl-install/share/compssUsers.server,
+ perl-install/share/advertising/dis-01.pl,
+ perl-install/share/advertising/dis-09.pl,
+ perl-install/share/advertising/dwd-01.pl,
+ perl-install/share/advertising/dwd-06.pl,
+ perl-install/share/advertising/ppp-01.pl,
+ perl-install/share/advertising/ppp-09.pl,
+ perl-install/share/advertising/pwp-01.pl,
+ perl-install/share/advertising/pwp-02.pl,
+ perl-install/share/advertising/pwp-08.pl,
+ perl-install/standalone/XFdrake,
+ 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/drakproxy,
+ perl-install/standalone/drakpxe,
+ perl-install/standalone/draksound,
+ perl-install/standalone/drakupdate_fstab,
+ perl-install/standalone/drakvpn, perl-install/standalone/drakxtv,
+ perl-install/standalone/fileshareset,
+ perl-install/standalone/logdrake,
+ perl-install/standalone/net_monitor,
+ perl-install/standalone/printerdrake,
+ perl-install/standalone/scannerdrake, rescue/drvinst,
+ rescue/guessmounts, rescue/install_bootloader, rescue/lsparts,
+ rescue/restore_ms_boot, rescue/tree/etc/profile,
+ rescue/tree/sbin/fakeshutdown, tools/gencryptofiles,
+ tools/genmodparm, tools/make_lang_png_transparent.c,
+ tools/shift_img.c, tools/syncrpms, tools/ppc/mkINSTALLCD,
+ tools/serial_probe/serial_probe.c: MandrakeSoft -> Mandrakesoft
+
+2004-07-20 04:10 Vincent Guardiola <vguardiola at mandriva.com>
+
+ * perl-install/authentication.pm: clean code
+
+2004-07-20 03:56 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: we also need nls_iso8859-1.ko for vfat
+
+2004-07-20 03:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list: adapt to file renaming
+
+2004-07-20 03:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: remove debugging code
+
+2004-07-20 03:24 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: force vfat to depend on nls_cp437
+
+2004-07-19 19:10 Vincent Guardiola <vguardiola at mandriva.com>
+
+ * perl-install/authentication.pm: modify nss_path one to sub config
+ winbind for AD
+
+2004-07-19 15:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix changelog
+
+2004-07-19 15:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: merge changelog from the real
+ update
+
+2004-07-19 14:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-56mdk
+
+2004-07-19 14:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: unsensitive buttons
+ immediatly once ifup/isdown has completed
+
+2004-07-19 11:27 Vincent Guardiola <vguardiola at mandriva.com>
+
+ * perl-install/network/smb.pm: Add function write_smb_ads_conf
+
+2004-07-19 09:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: use run_program, try to
+ handle default interface better
+
+2004-07-19 09:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: disable the connect button
+ if up interface is found (there is currently no reliable way to
+ find the gateway interface)
+
+2004-07-19 08:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: perl_checker compliance
+
+2004-07-19 08:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/bootloader-config: also add long name
+ when adding add short name
+
+2004-07-19 08:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/: bootloader.pm, install_steps.pm: don't
+ bootloader::suggest_floppy
+
+2004-07-19 08:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: don't unset prompt when timeout is
+ undefined (and don't care when timeout is 0)
+
+2004-07-19 08:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: add multimedia kernel in
+ analyse_kernel_name
+
+2004-07-19 08:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: code factorization, do not
+ use system() but fork() and exec() since we don't want to wait
+ the command to return
+
+2004-07-19 08:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: perl_checker compliance
+
+2004-07-19 08:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-07-19 07:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: use ifup/ifdown to
+ connect/disconnect
+
+2004-07-19 07:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: no need to be root to
+ monitor connection
+
+2004-07-19 07:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: make the tcp ping actually work
+
+2004-07-19 07:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: do not write wireless encryption
+ key if empty
+
+2004-07-19 06:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: use hotplug blacklist for
+ adsl connections too
+
+2004-07-19 06:09 Pixel <pixel at mandriva.com>
+
+ * help.msg.xml, make_boot_img, docs/HACKING, docs/README,
+ mdk-stage1/doc/README, rescue/lsparts, rescue/rescue-doc,
+ rescue/tree/etc/issue, tools/hd_grub.cgi: replace "Mandrake
+ Linux" with "Mandrakelinux"
+
+2004-07-19 06:06 Pixel <pixel at mandriva.com>
+
+ * Makefile: not doing make check in perl-install anymore, it always
+ fails :-(
+
+2004-07-18 07:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: save the previous bootloader config
+ file (bugzilla #10072)
+
+2004-07-17 11:34 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/: Makefile, apps.net_monitor, drakxtools.spec,
+ pam.net_monitor: remove historical consolehelper files (pam.d and
+ console.apps)
+
+2004-07-16 13:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: fix predicted time when there
+ is an error installing packages
+
+2004-07-16 12:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: use a tcp ping in check_link_beat
+ if not root
+
+2004-07-16 08:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/wizards.pm: do not ask to install already installed
+ packages, prefer to install uninstalled packages (misc)
+
+2004-07-15 10:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: add a border spacing of 5
+ pixel (fix #10299, from Fabrice Facorat)
+
+2004-07-15 08:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-54mdk
+
+2004-07-15 07:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: encryption key length can
+ now be lower than 20, allowing >= 6
+
+2004-07-15 07:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: change_pt_type() must return a boolean
+ value
+
+2004-07-15 05:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/: bootloader.pm, standalone/bootloader-config:
+ make_boot_splash is no good since the same initrd is used with or
+ without vga=, so call add_boot_splash directly
+
+2004-07-15 05:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: alt_xxx instead of old_xxx for
+ bootloader labels (as suggested by Svetoslav Slavtchev on cooker)
+
+2004-07-14 11:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_any.pm: remove unneeded return
+
+2004-07-14 11:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: to_bool is what I was
+ looking for, thanks Pixel
+
+2004-07-14 11:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: perl_checker fix, I
+ should have done it before ...
+
+2004-07-14 10:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: use bootloader and Xconfig
+ instead of detect-resolution
+
+2004-07-14 10:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps_interactive.pm:
+ automatically detect which media are available in install from
+ ISO images
+
+2004-07-13 10:37 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: umount nfs directory if an error occurs too
+
+2004-07-13 10:32 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/directory.c: don't forget to umount ISO images
+
+2004-07-13 10:23 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/directory.c: it is again stupid to use a ramdisk if
+ the install location isn't mounted by loopback
+
+2004-07-13 08:55 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: fix segfault when hostname resolves as
+ weird name without any dot (for example 24.159.64.20 resolves as
+ TN-JACKSN-NR1) and abort domain name guess in this case
+
+2004-07-13 07:44 Warly <warly at mandriva.com>
+
+ * perl-install/share/logo-mandrake.png: cooker logo
+
+2004-07-13 06:16 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: bn.po, fur.po: Added Bengali and Furlan
+ files
+
+2004-07-13 04:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: apply Pixel's suggestion, use
+ //m instead of foreach
+
+2004-07-13 04:37 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Some factorization. Protection against
+ /var/lib/urpmi being a dangling symlink (see bug #9934)
+
+2004-07-12 09:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: perl_checker fixes
+
+2004-07-12 09:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: add a "monitor network" menu
+ item that launches net_monitor
+
+2004-07-12 09:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: use drakconnect to configure
+ network
+
+2004-07-12 09:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: use 'ip route show' to find
+ the gateway device when no GATEWAYDEV is defined
+
+2004-07-12 07:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: - add "Active Directory" through
+ winbind (it needs more stuff to work) - drop using $val, use
+ directly $authentication->{XXX}
+
+2004-07-12 07:46 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-07-12 04:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: (sort_hds_according_to_bios): when
+ installing on floppy, $boot_hd is undefined, but that's ok
+ (bugzilla #10260)
+
+2004-07-09 09:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list: unicore/PVA.pl is needed
+
+2004-07-09 07:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: fix commit 1.685: use
+ lang::analyse_locale_name() but still use lang::l2locale()
+
+2004-07-09 06:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Makefile, lang.pm: replace
+ lang::get_unneeded_png_lang_files() with lang::png_lang_files
+
+2004-07-09 06:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list: - adapt to new perl - use "*" instead of
+ PERL_VERSION to be more versatile
+
+2004-07-09 06:42 Pixel <pixel at mandriva.com>
+
+ * rescue/: list, make_rescue_img: use "*" instead of PERL_VERSION
+ in list, but ensure only one match
+
+2004-07-09 06:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: ensure "*" to wildcard a directory in
+ share/list match only once
+
+2004-07-09 05:29 Pixel <pixel at mandriva.com>
+
+ * tools/Makefile: ask perl where to find package.pm and URPM.pm,
+ this is more versatile than using installvendorlib
+
+2004-07-09 04:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: sometimes grub return non zero exit
+ status w/o error
+
+2004-07-09 04:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: kill debug message
+
+2004-07-09 04:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: do not complain about unmounted usb fs in
+ recue mode
+
+2004-07-09 04:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/cvslog2changelog.pl: sort
+
+2004-07-09 04:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/cvslog2changelog.pl: add Robert Vojta
+
+2004-07-09 03:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: fix restore mode (initrd's mount failled
+ to mount ext2 as ext3)
+
+2004-07-09 03:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: add "ls -l /sys/bus/scsi/devices" in
+ report.bug (it helps for debugging getSCSI on 2.6)
+
+2004-07-09 03:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: fix mounting /sys (why did i switch to
+ using syscall_ 'mount' directly? and with missing parameters!)
+
+2004-07-08 16:53 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates soft/drakcronat/po/da.po
+ soft/drakfax/po/da.po soft/GtkMdkWidgets/po/da.po
+ soft/mdkonline/po/da.po soft/rpmdrake/po/da.po
+ soft/urpmi/po/da.po gi/perl-install/share/po/da.po
+ soft/galaxy/thememdk/mandrake_client/po/da.po
+
+2004-07-08 10:56 Robert Vojta <robert.vojta at mandrake.org>
+
+ * perl-install/standalone/drakedm: - typo fix (lost -> lose)
+
+2004-07-08 10:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: warn the user before dm exit
+ will kill the session (Robert Vojta, #10179)
+
+2004-07-08 09:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: handle s/snd-card/snd/g and
+ s/snd-via686|snd-via8233/snd-via82xx/g more generically
+
+2004-07-08 09:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: in mergein_conf(), get the "above"
+ value, and don't dirty "probeall"
+
+2004-07-08 09:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/cvslog2changelog.pl: add vincent
+
+2004-07-08 07:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: fix typo
+
+2004-07-08 07:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_any.pm, install_steps.pm,
+ install_steps_interactive.pm, Xconfig/card.pm: - create
+ X_options_from_o() and use it - add freeDriver boot option
+
+2004-07-08 07:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: merge with MDK-10-update Move changes
+
+2004-07-08 07:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: merge "language choice dialog" from
+ MDK-10-update
+
+2004-07-08 07:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: selectCountry doesn't really need a $o, a
+ $in is enough
+
+2004-07-08 07:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, install_steps_interactive.pm,
+ standalone/adduserdrake: when adding users during install,
+ suggest the user names found in /home
+
+2004-07-08 05:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: rename load_raw() to load_raw_install()
+ and change the prototype
+
+2004-07-08 04:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: cleanup
+
+2004-07-08 04:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: - create when_load_category() - replace
+ regexp [uo]hci on module name with testing category "bus/usb" -
+ move the special case imm ppa from when_load() to load()
+
+2004-07-08 03:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: fix previous commit
+
+2004-07-08 03:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: - generalize the snd-pcm-oss case -
+ cleanup
+
+2004-07-08 03:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/: detect_devices.pm, modules.pm, harddrake/sound.pm,
+ network/adsl.pm, network/ethernet.pm: - rename add_alias() into
+ set_alias() - create set_sound_slot() and use it
+
+2004-07-08 03:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: don't remove "above ... snd-pcm-oss" for
+ the old alias, it's better done explictly, and already done by
+ remove_module()
+
+2004-07-08 02:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-53mdk final
+
+2004-07-07 14:37 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Merge fixes from Anthill 927,
+ 929 (filenames with spaces, .backupignore, gui issues)
+
+2004-07-07 14:18 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Merge fixes from Anthill 927,
+ 929. (filenames with spaces, .backupignore, gui behavior)
+
+2004-07-07 09:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: fix comment
+
+2004-07-07 09:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: fix indentation
+
+2004-07-07 09:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/: modules.pm, network/netconnect.pm,
+ standalone/XFdrake, standalone/draksound, standalone/drakxtv,
+ standalone/service_harddrake: modules::mergein_conf() doesn't
+ need to be given /etc/modules.conf => prepare for reading either
+ modprobe.conf or modules.conf based on the running kernel version
+
+2004-07-07 09:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, modules.pm, mouse.pm,
+ harddrake/data.pm, modules/interactive.pm, network/ethernet.pm,
+ standalone/XFdrake, standalone/mousedrake,
+ standalone/printerdrake: modules::mergein_conf() doesn't need to
+ be given /etc/modules.conf => prepare for reading either
+ modprobe.conf or modules.conf based on the running kernel version
+
+2004-07-07 09:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: remove non-useful prototypes ($)
+
+2004-07-07 08:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: use the module category to decide if it
+ needs alias usb-interface or alias ieee1394-controller
+
+2004-07-07 08:44 Pixel <pixel at mandriva.com>
+
+ * kernel/: list_modules.pm, modules.pl: have only usb-interfaces in
+ bus/usb
+
+2004-07-07 08:35 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm: stage1 and stage2 handle dependencies
+ correctly, so no need to list "helpers" modules only providing
+ functions to other modules
+
+2004-07-07 04:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: fix typo
+
+2004-07-07 04:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: - restrict view of %mappings_24_26 and
+ %mappings_26_24 to modules.pm - simplify mapping_24_26(), it now
+ takes only one module name, not a list - simplify
+ mapping_26_24(), the special case is handled properly in
+ %mappings_26_24
+
+2004-07-07 04:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps.pm,
+ install_steps_interactive.pm, modules.pm: - move
+ configure_pcmcia() and write_pcmcia() out of modules.pm to
+ install_any.pm - load pcmcia_core, $pcic and ds in one call to
+ modules::load - don't pass prefix to write_pcmcia()
+
+2004-07-07 04:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: create write_preload_conf()
+
+2004-07-06 09:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: add 1024x480 (part of bugzilla
+ #5192)
+
+2004-07-06 09:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: rename function
+ $set_chosen_x_res to $set_chosen_resolution (since it sets both)
+
+2004-07-06 09:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: (choose_gtk):
+ ensure default height is the chosen one
+
+2004-07-06 08:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-53mdk
+
+2004-07-06 08:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/bootloader-config: fix typo
+
+2004-07-06 07:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/bootloader-config: - nicer "usage: ..." -
+ add actions "add-entry" and "remove-entry" - add option --label -
+ add option --chainload - rename --vmlinuz to --image
+
+2004-07-06 07:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: remove unneeded spaces in append="
+ foo"
+
+2004-07-06 07:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: write_lilo handles "optional"
+
+2004-07-06 07:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: rename var
+
+2004-07-06 07:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/: bootloader.pm: cleanup
+
+2004-07-06 05:24 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/config-stage1.h: fix blino fix
+
+2004-07-06 05:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: update bootsplash even if
+ framebuffer was disabled
+
+2004-07-06 05:00 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/config-stage1.h: add missing slash in Mandrake Move
+ image location
+
+2004-07-06 04:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: workaround blind gwenole
+
+2004-07-06 04:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: workaround build with new kernels
+
+2004-07-06 03:39 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: config-stage1.h, directory.c: doing basename is dumb
+ (is blino too?), really make the symlink relative
+
+2004-07-06 03:37 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/disk.c: - when the directory is bad, go back to choose
+ another directory instead of choosing another device (you can
+ still use "Cancel" to choose another device) - list files in
+ directory given, not the root directory of the device
+
+2004-07-06 03:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: high level explanation
+
+2004-07-05 22:51 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: rush to beta one man
+
+2004-07-05 13:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_any.pm: allow medium change in nfs-iso
+ install
+
+2004-07-05 11:52 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: properly handle error return code in nfs
+ install
+
+2004-07-05 10:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: try to use $default_intf
+ (and fix the last perl_checker warning, yeah)
+
+2004-07-05 10:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: perl_checker compliance
+
+2004-07-05 09:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: rename $echr and $echt to
+ $scale_r and $scale_t
+
+2004-07-05 09:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: remove unused variable $type
+
+2004-07-05 09:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/log.pm: use $LOG instead of *LOG
+
+2004-07-05 09:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/draksec: fix #-PO: comment
+
+2004-07-05 09:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: fix function call
+
+2004-07-05 09:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, bootloader.pm, fs.pm, fsedit.pm,
+ install_any.pm, install_interactive.pm, install_steps.pm,
+ install_steps_interactive.pm, lvm.pm, partition_table.pm,
+ raid.pm, diskdrake/dav.pm, diskdrake/hd_gtk.pm,
+ diskdrake/interactive.pm, diskdrake/removable.pm,
+ network/smbnfs.pm, partition_table/bsd.pm,
+ partition_table/dos.pm, partition_table/gpt.pm,
+ partition_table/mac.pm, partition_table/raw.pm,
+ partition_table/sun.pm: big renaming of field {type} to
+ {pt_type}, this will allow defining {fs_type} which will always
+ be a string whereas {pt_type} will always be a number
+
+2004-07-05 07:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fs.pm, fsedit.pm: create rationalize_options() and
+ use it (bugzilla #3525) more checks should be done in this
+ function, and used at more places (but where?)
+
+2004-07-05 07:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: drakxtools-backend needs
+ ldetect-lst (for complete_usb_storage_info())
+
+2004-07-05 06:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: allow getpwnam, getgrnam, getgrid
+ to work
+
+2004-07-05 04:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/bootloader-config: drop --no-link option
+ (already replaced by --no-short-name)
+
+2004-07-05 04:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: drop "other" entries in grub conf
+ when the device is unknown
+
+2004-07-05 04:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: don't set {major} and {minor} to 0 when the
+ device doesn't exist
+
+2004-07-05 04:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: - handle missing root=/dev/xxx kernel
+ commandline parameter - handle grub splashimage option
+
+2004-07-05 03:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: oops, revert debugging code
+
+2004-07-05 03:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/bootloader-config: - new option
+ --no-short-name which implies no short labels (usually vmlinuz)
+ and no symlinks (usually /boot/vmlinuz) - rename --no-link to
+ --no-short-name (keeping compatibility for a few days)
+
+2004-07-03 07:42 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: saraiva esta rapido ;-)
+
+2004-07-03 06:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix typo
+
+2004-07-02 11:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-52mdk
+
+2004-07-02 11:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: ensure proper upgrade: explictly
+ tell urpmi that old drakxtools-newt conflicts with
+ drakxtools-backend
+
+2004-07-02 10:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: remove spurious '"pty ', I suck
+
+2004-07-02 10:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: cleanup
+
+2004-07-02 10:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: pptp support (partial fix for
+ #6515)
+
+2004-07-02 10:12 Vincent Guardiola <vguardiola at mandriva.com>
+
+ * perl-install/authentication.pm: Add anonymous bind
+
+2004-07-02 09:52 Sergey Ribalchenko <fisher at obu.ck.ua>
+
+ * perl-install/share/po/uk.po: Ukrainian translation update.
+
+2004-07-02 07:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: switch to new japanese fonts (UTUMI Hirosi
+ <utuhiro78@yahoo.co.jp>)
+
+2004-07-02 06:40 Vincent Guardiola <vguardiola at mandriva.com>
+
+ * perl-install/authentication.pm: remove anonymous entry
+
+2004-07-02 06:15 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: (lang2move_clp_name): if $dir is a symlink, this
+ symlink is broken at that moment, so test "-d $dir" after testing
+ "-l $dir"
+
+2004-07-02 05:48 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: disable languages which have no locales installed
+
+2004-07-02 05:19 Vincent Guardiola <vguardiola at mandriva.com>
+
+ * perl-install/authentication.pm: add libsasl2-plug-gssapi when AD
+ is selected
+
+2004-07-02 05:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (write) let be aware of install mode
+
+2004-07-02 04:35 Vincent Guardiola <vguardiola at mandriva.com>
+
+ * perl-install/authentication.pm: Change SSL/TLS to SSL or TLS add
+ uc_domain to realm section in /etc/krb5.conf padbol
+
+2004-07-02 04:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (write) configure menu-method's language
+ too so that altering language is done for KDE menu entries too
+ (instead of just programs' messages)
+
+2004-07-01 09:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: create package drakxtools-backend
+
+2004-07-01 09:49 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: rephrase previous patch, with correct
+ indentation this time
+
+2004-07-01 09:24 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: add a slash at beginning of the given
+ directory if not already present (ftp and http install)
+
+2004-07-01 09:07 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: a somewhat better error checking
+
+2004-07-01 08:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: fix typo causing multiple
+ "Keyboard" entries in XF86Config (bugzilla #10163)
+
+2004-07-01 07:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/any.pm: add fluxbox in known window managers list
+
+2004-07-01 06:18 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/modules.c, perl-install/install2.pm: stage1 used to
+ write files /tmp/network, /tmp/ifcfg-eth0, /etc/modules.conf but
+ those files are in /stage1 after pivot rooting, so: - write
+ modules.conf in /tmp instead of /etc - cp those files from
+ /stage1/tmp to /tmp before umounting /stage1
+
+2004-07-01 06:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: default consolefont is lat0-16, no more
+ lat0-sun16
+
+2004-07-01 05:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix typo
+
+2004-07-01 04:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: fix typo
+
+2004-07-01 02:50 Pixel <pixel at mandriva.com>
+
+ * move/make_live: also remove drakbackup
+
+2004-07-01 02:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: add bug reference
+
+2004-07-01 02:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: network/netconnect.pm, standalone/harddrake2: typo
+ fix
+
+2004-07-01 02:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-50mdk
+
+2004-07-01 02:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/: drakTermServ, drakbug, drakclock,
+ drakfloppy, drakfont, drakperm, draksec, draksplash, drakups,
+ harddrake2, logdrake, net_monitor, printerdrake: revert ugly code
+ printing "This program cannot be run in console mode", it is
+ easily done in ugtk2.pm
+
+2004-06-30 23:37 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: update
+
+2004-06-30 12:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/bootloader-config: when doing
+ update_splash or remove_splash, call when_config_changed (mainly
+ for lilo)
+
+2004-06-30 11:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: use print + exit instead of die (so that
+ standalone tools don't need to do it by hand)
+
+2004-06-30 11:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: for Active Directory, allow:
+ Kerberos, SSL/TLS, simple and anonymous
+
+2004-06-30 11:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: try to display arrows
+ closely to transmission values
+
+2004-06-30 10:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/smb.pm: shut up "smbclient -L"
+
+2004-06-30 10:44 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: create directories if needed for "READ" files of
+ etcfiles
+
+2004-06-30 10:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: always draw an arrow next to
+ transmitted amount
+
+2004-06-30 10:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: always display a speed label
+ for transmitted graph
+
+2004-06-30 10:34 Pixel <pixel at mandriva.com>
+
+ * move/make_live: also add unison
+
+2004-06-30 10:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: fix button layout
+
+2004-06-30 10:26 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: set /var/log/clamav/freshclam.log owner to clamav
+
+2004-06-30 10:21 Pixel <pixel at mandriva.com>
+
+ * move/make_live: - install nxclient and clamav - fix nxclient
+
+2004-06-30 10:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: (build_it) add translator
+ hint
+
+2004-06-30 10:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/doc/BUILD: fix build explanation (else make_live
+ will horribly die due to missing functions :-()
+
+2004-06-30 10:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: allow the user to use
+ different scales for received and transmitted
+
+2004-06-30 10:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: prepare code to use distinct
+ scales for received and transmitted
+
+2004-06-30 09:38 Sergey Ribalchenko <fisher at obu.ck.ua>
+
+ * perl-install/share/po/uk.po: Ukrainian translation update
+
+2004-06-30 09:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/doc/BUILD: update how to build instructions
+
+2004-06-30 08:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/bootloader-config: please perl_checker
+
+2004-06-30 08:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/doc/BUILD: do not forget to update hdlists
+
+2004-06-30 08:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/README: fix required packages list
+
+2004-06-30 07:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: remove most magic numbers,
+ prefer usage of $width and $height
+
+2004-06-30 07:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: display a nicer error message when disk
+ is not found
+
+2004-06-30 03:30 Sergey Ribalchenko <fisher at obu.ck.ua>
+
+ * perl-install/share/po/uk.po: Sync'ed with .pot
+
+2004-06-30 01:54 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: et.po, uz.po, uz@Latn.po: updated
+ Estonian and Uzbek files
+
+2004-06-29 15:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: fs.pm, standalone/drakupdate_fstab: use
+ fsedit::is_same_hd in drakupdate_fstab and revert previous change
+ in fs::subpart_from_wild_device_name (do not fill both
+ devfs_device and device fields)
+
+2004-06-29 14:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: in is_same_hd(), both hds can have
+ {device} unset, it doesn't mean they are the same
+
+2004-06-29 14:08 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: properly handle "back" behavior in mirror
+ list step
+
+2004-06-29 14:06 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: do not unset automatic if mirror list
+ selection fails, we know it wasn't automatic at that point
+
+2004-06-29 14:01 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/: network.c, network.h: remove http proxy settings
+ from interface structure, that was really dumb
+
+2004-06-29 12:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/fs.pm: do not add default device in device hash, it
+ will be filled with result from fs::subpart_from_wild_device_name
+
+2004-06-29 12:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/fs.pm: always update $part{device} in
+ fs::subpart_from_wild_device_name because /dev is stripped (fix
+ #6982, #10175)
+
+2004-06-29 10:20 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/: adsl.c, network.c, network.h: allow to use a
+ specific ACNAME for pppoe connections
+
+2004-06-29 10:02 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/: directory.c, probing.c, tools.c: variable
+ declaration fixes (spotted by neofutur)
+
+2004-06-29 09:50 Pixel <pixel at mandriva.com>
+
+ * move/: move.pm, data/keyfiles: - cleanup handle_etcfiles() -
+ /etc/security/fileshare.conf is on key to allow fileshare -
+ remove unused files
+
+2004-06-29 09:48 Pixel <pixel at mandriva.com>
+
+ * move/data/etcfiles: allow clamav to work and freshen it's
+ database (although not saved on key)
+
+2004-06-29 09:47 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: fix typo
+
+2004-06-29 08:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: fix umounting
+
+2004-06-29 07:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: - add bootloader-config (used by
+ bootloader-utils and bootsplash scripts) - drakboot (pixel): o
+ major backend rewrite b/c of code sharing with new installkernel
+ o when adding a new kernel, have a nicer new name for
+ conflicting entry o when modifying kernel parameters in all
+ entries, skip the "failsafe" entry (#10143) o when
+ modifying a symlink, ensure we also use the long name for the
+ old symlink in the existing entries - drakconnect (Olivier Blin):
+ o never disable "DHCP host name" entry box, it shouldn't be
+ linked with "Assign host name from DHCP address" checkbox
+ (#2759, #9981) o unblacklist sis900 since its link beat
+ detection works with latest kernels - draksound: remove
+ unneeded "above" lines in modules::write_conf (Olivier Blin)
+ (#8288) - ugtk2 layer: catch missing wizard pixmap, otherwise we
+ end up with unshown windows and error messages can't pop up
+ (pixel) - don't require mkbootdisk
+
+2004-06-29 07:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: add missing share/net_monitor.desktop
+
+2004-06-29 07:29 Pixel <pixel at mandriva.com>
+
+ * move/make_live: also set PHOTO (so we get gphoto)
+
+2004-06-29 06:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Makefile.config, standalone/bootloader-config: add
+ bootloader-config (tested for adding and removing in simple
+ cases)
+
+2004-06-29 06:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: - mkinitrd() calls make-boot-splash
+ after building the initrd (since /sbin/mkinitrd doesn't do it
+ anymore) - change mkinitrd() parameters - change add_kernel()
+ parameters and add option b_no_initrd (it is available in
+ installkernel though i suspect it is unused) - after reading
+ config file, get {perImageAppend} and {default_vga} (it was
+ only done for lilo and {perImageAppend}) - keep the current
+ kernel for linux-nonfb too (it was only done for failsafe) - add
+ create_link_source(), action(),
+ when_config_changed_{lilo,grub,yaboot} - create write_yaboot()
+
+2004-06-29 06:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: add "Getopt::Long" (used by
+ bootloader-config)
+
+2004-06-29 05:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: unselect uim since mdk10 package of uim
+ IM break first time wizard when selecting english
+
+2004-06-29 04:42 Sergey Ribalchenko <fisher at obu.ck.ua>
+
+ * perl-install/share/po/uk.po: translation update
+
+2004-06-29 04:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: perl_checker cleanups
+
+2004-06-29 03:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: add rescue support
+
+2004-06-28 04:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: make perl_checker a little more happy
+
+2004-06-28 04:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: after install, when modifying kernel
+ parameters in all entries, skip the "failsafe" entry (bugzilla
+ #10143)
+
+2004-06-28 04:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: catch missing wizard pixmap, otherwise we
+ end up with WizardWindow being non shown and error messages can't
+ pop up
+
+2004-06-28 04:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: disallow switching to expert mode using
+ Alt-e
+
+2004-06-28 03:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: fix titi's regexp for matching
+ centrino
+
+2004-06-28 03:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: don't set ICEAUTHORITY using $ENV{HOME} for
+ kde (bugzilla #10144)
+
+2004-06-27 11:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/c/Makefile.PL: drop useless linkage since X11 stuff
+ was split out of c module
+
+2004-06-25 10:37 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/directory.c: fix typo
+
+2004-06-25 10:36 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/directory.c: do not use ramdisk in nfs install
+
+2004-06-25 10:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: use internal_error() instead of
+ die'ing with no arguments
+
+2004-06-25 10:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps.pm: fix blino stage1
+ change (i think he likes breaking things ;p)
+
+2004-06-25 09:47 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: have symlinks /etc/rc[0-6].d
+
+2004-06-25 09:27 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/directory.c: add missing include for basename()
+
+2004-06-25 09:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: remove deprecated rhimage symlink
+
+2004-06-25 09:18 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/directory.c: use relative symlink to image location in
+ disk/nfs install, to have a working stage2
+
+2004-06-25 09:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: bootloader::add_kernel() do a good
+ job at replacing symlinks with the real kernel/initrd file name,
+ so don't need to do it here
+
+2004-06-25 09:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: when adding a new kernel, have a
+ nicer new name for conflicting entry
+
+2004-06-25 08:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: when modifying a symlink, ensure we
+ also use the long name for the old symlink in the existing
+ entries
+
+2004-06-25 08:18 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Make perl_checker silent
+
+2004-06-25 08:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix 2 typos
+
+2004-06-25 08:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: never disable "DHCP host
+ name" entry box, it shouldn't be linked with ""Assign host name
+ from DHCP address" checkbox (#2759, #9981)
+
+2004-06-25 07:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: unblacklist sis900 since its
+ link beat detection works with latest kernels
+
+2004-06-25 07:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: drop obsolete function
+
+2004-06-25 07:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: drop obsolete lnx4win_file()
+
+2004-06-25 07:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: simplify using new
+ bootloader.pm
+
+2004-06-25 07:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, install_steps.pm, Xconfig/various.pm,
+ standalone/drakboot: adapt to new bootloader.pm
+
+2004-06-25 07:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: - adapt to new bootloader.pm -
+ simplify
+
+2004-06-25 07:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: major cleanup and rewrite - some
+ functions have been renamed - some functions have changed
+ prototype - no more bootloader::vga_modes, we use
+ Xconfig::resolution_and_depth::bios_vga_modes() - no more
+ detectloader, it is now detect_main_method(), but notice that
+ bootloader::read() + bootloader::write() abstract all this! -
+ update_for_renumbered_partitions() is surely broken :) -
+ sort_hds_according_to_bios() and mixed_kind_of_disks() uses new
+ function hd2bios_kind() - new data structure "kernel_str" - lilo
+ doesn't need so much help as it used to be, so don't put as much
+ "disk=/dev/sda bios=0x80" as before
+
+ some goals: - don't rely on device names (this allows not to
+ care too much about devfs vs udev vs ...) - kernels can be named
+ something else than /boot/vmlinuz*, please use the various
+ functions to construct the initrd file name, the symlink name...
+
+2004-06-25 07:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: - enhance subpart_from_wild_device_name() to
+ handle "sda" the same as "/dev/sda" (when /dev/sda exists)
+
+ - new function device2part() which uses
+ subpart_from_wild_device_name and the given fstab to convert
+ the device name to the corresponding structure (this allows not
+ relying too much on the device name)
+
+2004-06-25 06:54 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: unset automatic in ftp/http install when
+ ramdisk can't be loaded
+
+2004-06-25 06:32 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: use new http_proxy variables instead of the
+ old answers (not anymore available)
+
+2004-06-25 05:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: - scim-uim requires scim, no need to
+ have both - scim-chinese requires scim, no need to have both
+
+2004-06-25 01:53 Sergey Ribalchenko <fisher at obu.ck.ua>
+
+ * perl-install/share/po/uk.po: translation update.
+
+2004-06-24 15:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake.sh: rollback service
+ priority
+
+2004-06-24 12:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/modules.pm: perl_checker compliance
+
+2004-06-24 11:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/modules.pm: remove unneeded "above" lines in
+ modules::write_conf
+
+2004-06-24 11:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: (installPackages) kill debugging
+ statements
+
+2004-06-24 11:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-48mdk
+
+2004-06-24 11:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/modules.pm: delete "above" lines when removing a
+ sound alias with modules::remove_alias_regexp
+
+2004-06-24 11:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: switch chinese to scim by default
+
+2004-06-24 11:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: fix gtk IM module for scim IM
+
+2004-06-24 11:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: - switch japanese to scim+uim and
+ scim - switch chinese to scim
+
+2004-06-24 11:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/modules.pm: fix stupid typo
+
+2004-06-24 10:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/modules.pm: in modules::when_load, try to find the
+ best sound slot index instead of always overwritting sound-slot-0
+ (#7890)
+
+2004-06-24 10:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/hwprofile: create hw profile after having run first
+ time wizard so that if one refuse the icense, he has to run it
+ again
+
+2004-06-24 10:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: install_steps_interactive.pm: (acceptLicense) just
+ reboot when one cancel the globetrotter first time wizard
+
+2004-06-24 09:51 Pixel <pixel at mandriva.com>
+
+ * move/data/always_i18n.list: add magicdev.mo
+
+2004-06-24 09:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: fix xcin IM
+
+2004-06-24 09:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: - add gv (not installed by default)
+ to have it in the package tree (bugzilla #10127) - add pciutils
+ (not installed by default) in MONITORING (but i don't think it
+ will get to the package tree)
+
+2004-06-24 09:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: module hid is now named usbhid (thanks to
+ svetljo on cooker)
+
+2004-06-24 09:11 Pixel <pixel at mandriva.com>
+
+ * move/data/always.list: add magicdev
+
+2004-06-24 09:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: add back support for kinput2 IM
+
+2004-06-24 09:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: sort CJK's IM entries
+
+2004-06-24 09:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: - factorize im settings - change default IM
+ according to cooker-i18n feedback: o default all chinese
+ locales to fctix IM o default all japanese locales to scim+uim
+ IM
+
+2004-06-24 07:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: make share partition be writeable by
+ unpriviliegied users
+
+2004-06-24 07:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: add fb2png in order to be able to take
+ screenshots
+
+2004-06-24 07:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: network.pm, tools.pm: properly handle
+ ascii WEP keys (#9884)
+
+2004-06-24 07:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: per machine firewall configuration
+
+2004-06-24 05:24 Nicolas Planel <nplanel at mandriva.com>
+
+ * mdk-stage1/probing.c: don't redefine buf for /proc/scsi/scsi
+ (size 5000 instead of 2048)
+
+2004-06-24 05:19 Nicolas Planel <nplanel at mandriva.com>
+
+ * mdk-stage1/probing.c: don't redefine buf for /proc/scsi/scsi
+ (size 5000 instead of 512)
+
+2004-06-24 03:51 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/standalone/: drakTermServ, drakbug, drakclock,
+ drakfloppy, drakfont, drakperm, draksec, draksplash, drakups,
+ harddrake2, logdrake, net_monitor, printerdrake: Some standalone
+ tools don't compile when run from console
+
+2004-06-24 01:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: merge fix from MDK-10-branch: tv modules
+ weren't loaded on boot
+
+2004-06-23 19:16 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: code cleanup per Pixel
+
+2004-06-23 15:20 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, pkgs.pm: Make perl_checker happy
+
+2004-06-23 11:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: remove unneeded quotes
+
+2004-06-23 11:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/modules.pm: fix another typo from Titi in #9112 fix
+ (#6802)
+
+2004-06-23 10:49 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: fix ugly typo :-(
+
+2004-06-23 10:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: fix processing of config file
+ broken again by Titi
+
+2004-06-23 10:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: - fix processing of config file
+ broken by magic olivier - reuse cat_()
+
+2004-06-23 10:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/any.pm: remove global vga choice to please Pixel and
+ Titi
+
+2004-06-23 09:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: please perl_checko the Clean
+ Keeper
+
+2004-06-23 09:52 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, pkgs.pm: Support for supplementary
+ CDs during installation (from the 10.0 update branch.)
+
+2004-06-23 09:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: remove spurious spaces
+
+2004-06-23 09:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakclock: be mouse wheel aware (fix bug
+ 9926)
+
+2004-06-23 09:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: ask for bootloader choice when
+ framebuffer isn't configured (fix bug 9925)
+
+2004-06-23 09:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: remove unused variable
+
+2004-06-23 08:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/any.pm: add a global vga option in
+ any::setupBootloader__general (fix bug 8957)
+
+2004-06-23 08:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-06-23 07:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: use upcase letters whenever needed
+
+2004-06-23 05:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: kernelVersion() is unused (only
+ bootloader::mkbootdisk() used it, and it has already been
+ removed)
+
+2004-06-23 05:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: - unblacklist tg3 since QA
+ has confirmed it works smoothly - blacklist buggy madwifi_pci
+
+2004-06-23 05:07 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: better code for installing config files listed in
+ keyfiles (and use cp_f)
+
+2004-06-23 04:37 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/directory.c: revert the workaround on stat() now that
+ it works on large files
+
+2004-06-23 04:36 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/Makefile: define _FILE_OFFSET_BITS=64 so that stat()
+ is large files aware
+
+2004-06-23 04:26 Pixel <pixel at mandriva.com>
+
+ * move/data/keyfiles: add shorewall files (esp. for drakfirewall)
+
+2004-06-23 04:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: good_default_monitor() should
+ work *nearly* everywhere, so use it for the auto_install fallback
+ (this is used by mandrakemove)
+
+2004-06-23 04:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: good_default_monitor() should
+ work *nearly* everywhere, so use it for the auto_install fallback
+ (this is used by mandrakemove)
+
+2004-06-22 17:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: perl_checker
+ compliance
+
+2004-06-22 16:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: - use
+ Xconfig::resolution_and_depth::bios_vga_modes() instead of
+ %bootloader::vga_modes - remove broken sparc code
+
+2004-06-22 16:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: - export
+ @bios_vga_modes (needed for bootloader vga=) - to_string should
+ return '' instead of ()
+
+2004-06-22 16:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: remove duplicate
+ (use existing function to_string())
+
+2004-06-22 15:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: fix indentation
+
+2004-06-22 14:12 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: French translations for new messages
+
+2004-06-22 14:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: sync with
+ detect-resolution
+
+2004-06-22 13:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: rephrase zeroconf dialog
+ (cybercfo)
+
+2004-06-22 13:01 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: oops, fix the "Continue without USB key" case
+
+2004-06-22 12:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: blacklist sis900 and tg3
+ modules for network hotplugging
+
+2004-06-22 12:20 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Make the CD-Rom install with
+ supplementary CD work (don't forget to re-mount the main CDs).
+
+2004-06-22 11:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: do not update bootsplash in
+ autologin wizard
+
+2004-06-22 11:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: remove spurious comma and
+ spaces
+
+2004-06-22 11:21 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: - mount usb key first with "sync" option to have a
+ good detection of rw or ro - then remount it without "sync" -
+ simplify: use $key_part instead of checking /proc/mounts - ensure
+ key_mount() doesn't leave $key_part if unmounted (the pb didn't
+ occured, but maybe it could have...)
+
+2004-06-22 08:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix build broken by net_applet
+
+2004-06-22 08:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: move net_applet in right package
+ (aka drakxtools-gtk)
+
+2004-06-22 08:26 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: remove usb key from desktop (already available in
+ "Home")
+
+2004-06-22 08:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: add check_enough_space() and use it
+
+2004-06-22 08:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: - fix typo - remove silo code (sparc)
+
+2004-06-22 08:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_applet: perl_checker fixes
+
+2004-06-22 08:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_applet: (getIP) fix build
+
+2004-06-22 07:45 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: ensure resolv.conf exist otherwise kppp cries
+
+2004-06-22 07:44 Pixel <pixel at mandriva.com>
+
+ * move/: etc-monitorer.pl, move.pm: - use magicdev for secondary
+ cdrom - have a proper mtab for magicdev+kded to work
+
+2004-06-22 07:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-47mdk
+
+2004-06-22 07:04 Pixel <pixel at mandriva.com>
+
+ * move/make_live: we do want magicdev now
+
+2004-06-22 06:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: update fields description
+ (baud <baud123@tuxfamily.org>)
+
+2004-06-22 06:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: update doc urls (baud
+ <baud123@tuxfamily.org>)
+
+2004-06-22 06:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: add new ISP entries (baud
+ <baud123@tuxfamily.org>)
+
+2004-06-22 06:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: fix Telia entry (baud
+ <baud123@tuxfamily.org>)
+
+2004-06-22 06:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: fix Free dns (baud
+ <baud123@tuxfamily.org>)
+
+2004-06-22 06:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: merge duplicate Free entries
+
+2004-06-22 06:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: enhance tel9com name (baud
+ <baud123@tuxfamily.org>)
+
+2004-06-22 06:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: kill duplicate spanish entry
+ (baud <baud123@tuxfamily.org>)
+
+2004-06-22 06:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: enhance a few entries (baud
+ <baud123@tuxfamily.org>)
+
+2004-06-22 06:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: fix spanish isp name
+
+2004-06-22 05:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: ->set_title doesn't like title undef, give
+ it '' instead (to remove ugly warnings at install)
+
+2004-06-22 04:58 Pixel <pixel at mandriva.com>
+
+ * docs/HACKING, perl-install/install2.pm: rename --test in
+ --testing for install2 (more coherent with standalone tools)
+
+2004-06-21 17:08 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: don't use "keys" smaller than 10MB (as told by
+ Daniel Andrews on cooker-mandrakemove mailing list)
+
+2004-06-21 16:37 Pixel <pixel at mandriva.com>
+
+ * move/tree/: mdk_behind_totem, mdk_totem: like live_tree_boot, one
+ must handle live_tree_i18n_*
+
+2004-06-21 16:36 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_behind_totem: change the way we restart kdesktop
+ and kicker
+
+2004-06-21 16:35 Pixel <pixel at mandriva.com>
+
+ * move/data/always_i18n.list: add krandr.mo and kmix.mo
+
+2004-06-21 16:34 Pixel <pixel at mandriva.com>
+
+ * move/data/always.list: add krandrtray
+
+2004-06-21 16:33 Pixel <pixel at mandriva.com>
+
+ * move/make_live_tree_boot: fix choosing which files to put in
+ live_tree_always_i18n_*.clp's
+
+2004-06-21 09:43 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/directory.c: workaround the fact that stat() fails on
+ large files (like DVD ISO images)
+
+2004-06-21 09:23 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/directory.c: add log message when using directory as a
+ mirror tree
+
+2004-06-21 09:13 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/net_applet: - cleaning titi factorization
+
+2004-06-21 09:00 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/Makefile.drakxtools: - autostart file for KDE/GNOME
+
+2004-06-21 08:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_applet: (getIP) simplify
+
+2004-06-21 08:57 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/Makefile.config: - added net_applet
+
+2004-06-21 08:56 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/share/net_applet.desktop: - autostart file for
+ KDE/GNOME
+
+2004-06-21 08:48 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/: Makefile, network.c: allow to use ISO images in NFS
+ install
+
+2004-06-21 08:46 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/: Makefile, directory.c, directory.h, disk.c: split
+ directory specific functions and move them from disk.c to
+ directory.c (will be used in NFS install)
+
+2004-06-21 08:42 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/: drakxtools.spec, standalone/net_applet: -
+ net_applet to watch network connection
+
+2004-06-21 08:38 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/Makefile.drakxtools: - add net_applet file
+ (installed in bindir)
+
+2004-06-21 08:28 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/pixmaps/: connected.png, disconnected.png: network
+ applet state icons
+
+2004-06-21 07:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: kill stupid useless code
+
+2004-06-21 07:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: do not display version number
+ in title bar since it's useless according to interface team
+
+2004-06-21 06:57 Florin Grad <florin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: accept from fw to loc
+
+2004-06-21 06:41 Pixel <pixel at mandriva.com>
+
+ * move/make_live: create missing bitmap directoy for openoffice
+ non-english (as instructed by Giuseppe Ghibò)
+
+2004-06-21 05:45 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: same behaviour as UTC=false (as done in rc.sysinit)
+
+2004-06-21 05:00 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: - use cp_f instead of run_program::run cp - create
+ the virtual_key if it is missing
+
+2004-06-21 04:59 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_totem: replace "Error" with "Read carefully!", it's
+ less frightening
+
+2004-06-21 04:58 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_totem: change the way we restart kdesktop and
+ kicker
+
+2004-06-21 02:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix missing trailling quotes
+
+2004-06-21 01:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-46mdk
+
+2004-06-21 01:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: cleanups build
+
+2004-06-21 01:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: show list of partitions
+
+2004-06-21 01:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: spell-check french translations
+
+2004-06-21 01:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: typo fix
+
+2004-06-21 01:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: display better info for hard
+ disks
+
+2004-06-21 01:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: really ensure that
+ "identification" section is displayed first
+
+2004-06-21 01:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: service_harddrake: fix logs of newly
+ added hardware
+
+2004-06-21 01:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: fix warnings
+
+2004-06-21 01:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: only log about nv <->
+ nvidia swtich only if we do have to perform it
+
+2004-06-21 01:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: still show info field if
+ detect_devices::getIDE() failled to parse it for a known vendor
+ string
+
+2004-06-21 01:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: still show mass media fields
+ for mass media that are not hard disks (eg: cdroms, dvdrom,
+ burners, ...)
+
+2004-06-21 01:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: remove old SCSI garbage code
+
+2004-06-21 01:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-06-21 01:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: adapt fields name to new
+ behavior of mousedrake on 2.6.x kernels
+
+2004-06-21 01:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: smoother mouse data: sort
+ fields
+
+2004-06-21 01:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: show more fields for mice
+
+2004-06-21 01:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: move mice help where it
+ belongs
+
+2004-06-21 01:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: simplify
+
+2004-06-21 01:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: display media type for mass
+ storage devices
+
+2004-06-21 01:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: fix undisplayed fields: - if
+ a per-class group exists, prefer it upon generic group - only
+ care about current group fields, not about those of the group
+ that has the same name in generic
+
+2004-06-21 01:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: show splited vendor and
+ description fields for USB hard disks too
+
+2004-06-21 01:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: service_harddrake: fix mouse
+ autoconfiguration done on every boot instead of on 2.4.x/2.6.x
+ switches
+
+2004-06-21 01:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: simplify x11 autoconf
+
+2004-06-21 01:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: log error if a tool
+ isn't executable
+
+2004-06-21 01:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: simplify globetrotter
+ case: skip non interactive stuff
+
+2004-06-21 01:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: do not uselessy fork
+ shells
+
+2004-06-21 01:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: log error when we
+ cannot run the config tool
+
+2004-06-21 01:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: faster auto mouse
+ reconfiguration on major kernel switch
+
+2004-06-21 01:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: harddrake wasn't aware
+ of newly added wireless network card since early 2004/02
+
+2004-06-21 01:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/mousedrake: kill dead code
+
+2004-06-21 01:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: typo fixes
+
+2004-06-20 13:01 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: Updated Dutch (nl) translation by
+ Reinout van Schouwen <reinout@cs.vu.nl>
+
+2004-06-19 15:22 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Committing Arabic translation
+
+2004-06-19 11:18 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Sync with Arabeyes.org's CVS
+
+2004-06-18 16:48 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: typos
+
+2004-06-18 10:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/authentication.pm: (configure_krb5_for_AD) fix
+ kerberos server lookup (vincent guardiola)
+
+2004-06-18 10:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: install_steps_gtk.pm,
+ install_steps_interactive.pm: fix method_allows_medium_change
+ calls (I suck)
+
+2004-06-18 09:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_any.pm: in disk-iso install, strip old root
+ from ISOPATH and remove iso file from path if present
+
+2004-06-18 07:46 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/disk.c, perl-install/install_any.pm,
+ perl-install/c/stuff.xs.pl: in iso install, use ISOPATH
+ environment variable instead of loopback device filename (limited
+ to 64 chars)
+
+2004-06-18 07:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps_gtk.pm,
+ install_steps_interactive.pm, pkgs.pm: add and use
+ install_any::method_allows_medium_change
+
+2004-06-18 07:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: update 10-45mdk
+
+2004-06-18 07:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps_gtk.pm,
+ install_steps_interactive.pm, pkgs.pm, c/stuff.xs.pl: in disk-iso
+ install, automatically choose and change ISO images, according to
+ their volume id and application id
+
+2004-06-18 07:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: service_harddrake: only stop boot
+ progressbar if there a non automatic tool to run
+
+2004-06-18 06:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: add help for new fields
+
+2004-06-18 06:45 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Don't ask a supplementary CD for
+ upgrades
+
+2004-06-18 06:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-45mdk
+
+2004-06-18 06:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: merge from MDK-10-branch: add
+ support for ATI_GLX and NVIDIA_GLX cohabitation
+
+2004-06-18 06:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: merge globetrotter
+ support from MDK-10-branch
+
+2004-06-18 06:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: merge mouse
+ autoreconfiguration when switching between 2.4.x and 2.6.x
+ kernels from MDK-10-branch
+
+2004-06-18 06:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: harddrake/autoconf.pm,
+ standalone/service_harddrake: merge x11 autoconf support from
+ MDK-10-branch
+
+2004-06-18 06:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: merge floppies support
+ from MDK-10-branch
+
+2004-06-18 06:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: do_pkgs.pm, install2.pm, install_gtk.pm,
+ install_steps_gtk.pm: merge globetrotter support from
+ MDK-10-branch
+
+2004-06-18 05:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: force installation of both 2.4.x and
+ 2.6.x centrino drivers
+
+2004-06-18 05:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: - use labels for home and packages
+ partitions too - mount packages partition in read-only mode
+
+2004-06-18 04:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: install autologin as requested by QA
+
+2004-06-18 04:07 Pixel <pixel at mandriva.com>
+
+ * move/make_live: ipw2100 is needed to support centrino
+
+2004-06-18 03:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_steps_newt.pm: fix comment
+
+2004-06-18 02:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: group driver fields for sound
+ cards
+
+2004-06-18 02:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: do not display PCI/USB vendor
+ id in identification section
+
+2004-06-18 02:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: - simplify item grouping -
+ always show identification first
+
+2004-06-18 02:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: fix displaying pci/usb vendor
+ and device id
+
+2004-06-18 02:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: display bus (PCI, USB, ...)
+ first
+
+2004-06-18 02:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: fix help for floppies
+
+2004-06-18 02:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: - add infrastructure in order
+ to group fields - start to group fields for mass media, CPUs and
+ generic PCI/USB devices
+
+2004-06-18 01:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: lang.pm, ugtk2.pm, standalone/harddrake2: kill
+ warnings
+
+2004-06-18 01:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: kill usb_id like usb_vendor
+ is (for USB mass storage media)
+
+2004-06-18 01:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: add missing field for hard
+ disks
+
+2004-06-18 01:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: the split of the cpu help
+ nicely show up that mice were using CPU help. let's describe
+ their "name" field too.
+
+2004-06-18 01:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: split out CPU help
+
+2004-06-18 01:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: use new infrastructure in
+ order to not display useless floppy help for SCSI disks
+
+2004-06-18 01:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: add infrastructure for per
+ class help (and add missing space around brackets that
+ perl_checker did miss :-()
+
+2004-06-18 01:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/: data.pm: (pciusb_id) fix duplicated USB
+ disks (in both disk and unknown categories)
+
+2004-06-18 01:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: perl_checker cleanup
+
+2004-06-18 01:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: bump buildrequires on ldetect-devel
+ so that tools get proper module information on USB devices (we
+ should really use a shared library instead ...)
+
+2004-06-17 10:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/cvslog2changelog.pl: perl_checker cleanups
+
+2004-06-17 10:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * move/tree/sound.initscript: use move's script rather than build
+ machine's script
+
+2004-06-17 10:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: (set_removable_configurator) fix
+ typo preventing adding entries in /etc/fstab for new removable
+ media
+
+2004-06-17 10:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: - AD_users_db is
+ cn=users,ldap_domain and not cn=users,dc=servername,ldap_domain -
+ AD_user (for binddn) is user@domain instead of
+ cn=user,cn=users,ldap_domain - better system-auth krb5
+ configuration (all this as requested by Vincent Guardiola)
+
+2004-06-17 09:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: compile everything with standard
+ flags from rpm
+
+2004-06-17 09:56 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, pkgs.pm: Install with a
+ supplementary CD: allow to override the main compssUsers and
+ rpmsrate
+
+2004-06-17 09:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: install_gtk.pm, install_steps_gtk.pm: fix applying
+ keyboard configuration in globetrotter's first time wizard
+
+2004-06-17 09:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: autoconfigure mouse
+ when swtiching back between 2.4.x and 2.6.x kernels
+
+2004-06-17 09:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: add support for
+ floppies
+
+2004-06-17 09:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: (set_removable_configurator,
+ set_removable_remover) use the same flags as hotplug does when
+ calling drakupdate_fstab
+
+2004-06-17 09:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: (set_removable_configurator) fix
+ adding a removable medium
+
+2004-06-17 09:47 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/probing.c: enlarge your scsi buffer (previous size
+ wasn't enough with more than one scsi device, fixed thanks to
+ nplanel)
+
+2004-06-17 09:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: (install_server) remove proprietary
+ gl libraries when configuring a non ATI/NVIDIA card and redo
+ ldconfig cache accordingly
+
+2004-06-17 09:44 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/disk.c: add disk-iso install method
+
+2004-06-17 09:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: (to_raw_X) load non nvidia glx for
+ all non nvidia cards, thus fixing 3D on non NVIDIA/ATI gfx card
+
+2004-06-17 09:42 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/disk.c: do not delete loopbacks devices before umount
+ but after
+
+2004-06-15 22:39 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, pkgs.pm: Support for a
+ supplementary CD during install. Try to code this in the least
+ intrusive way possible. In the HEAD branch it would be better to
+ rework the way the installation methods are handled. More tests
+ needed.
+
+2004-06-15 18:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/README: update package versions to reflect current
+ globetrotter
+
+2004-06-15 18:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/README: update what's required in new initscripts
+
+2004-06-15 18:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: .perl_checker, Makefile, README, hwprofile,
+ make_live, mandrake-globetrotter.spec, move.pm, runstage2,
+ doc/BUGS, doc/BUILD, doc/NOTES: Imported Globetrotter
+
+2004-06-15 18:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/: .perl_checker, Makefile, README, hwprofile,
+ make_live, mandrake-globetrotter.spec, move.pm, runstage2,
+ doc/BUGS, doc/BUILD, doc/NOTES: Initial revision
+
+2004-06-15 18:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: globetrotter support
+
+2004-06-15 18:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/autoconf.pm: autoconf code for
+ globetrotter and new harddrake service
+
+2004-06-15 18:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: do_pkgs.pm, install2.pm, install_steps_gtk.pm:
+ support for globettroter's first time wizard
+
+2004-06-15 18:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: merge automatic mode from HEAD
+
+2004-06-15 18:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: handle case where both ATI and
+ NVIDIA GLX packages are installed (use new glibc's
+ /etc/ld.so.conf.d/ and prevent loading NVIDIA's GLX module with
+ ATI cards)
+
+2004-06-15 17:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, diskdrake/hd_gtk.pm,
+ diskdrake/interactive.pm: rename is_same_part to
+ are_same_partitions (not that much clear, but at least a little)
+
+2004-06-15 17:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: use "find { ... }"
+
+2004-06-15 17:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: - new function
+ subpart_from_wild_device_name() - use it
+
+2004-06-15 17:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: remove some broken sparc code
+
+2004-06-15 17:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: allow easy tracing of stage2
+
+2004-06-15 15:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/keyboard.pm: the presence of loadkeys doesn't mean
+ it is the regular one. (fixes loadkeys calling itself)
+
+2004-06-15 15:47 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: .backupignore issues (email
+ reports), typo in "other" routine
+
+2004-06-15 15:46 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: allow to go back in proxy selection window
+
+2004-06-15 15:44 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: .backupignore issue (email
+ reports), typo in "other" routine
+
+2004-06-15 15:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: remove PERL_INSTALL_DEBUG code modifying
+ install2 (unused and not working anyway)
+
+2004-06-15 15:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add new wirelesss driver (madwifi_pci)
+
+2004-06-15 13:54 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: fix return code handling in mirror list
+ selection
+
+2004-06-15 13:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: (set_removable_configurator)
+ switch from diskdrake to drakupdate_fstab (like hotplug we just
+ automatically guess what's better)
+
+2004-06-15 13:34 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: fix typo spotted by John Keller
+
+2004-06-15 13:29 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/lomount.c, perl-install/devices.pm: increase the
+ number of loopbacks (needed for mandrakemove where the default
+ (8) is much too low :)
+
+2004-06-15 12:39 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/lomount.c, perl-install/devices.pm: increase the
+ number of loopbacks (needed for mandrakemove where the default
+ (8) is much too low :)
+
+2004-06-15 12:29 Pixel <pixel at mandriva.com>
+
+ * move/: data/always.list, tree/mdk_behind_totem, tree/mdk_totem:
+ kill kde desktop and kicker when mdk_totem is launched, then
+ restore them (kded pb still there?)
+
+2004-06-15 12:27 Pixel <pixel at mandriva.com>
+
+ * move/make_live: have krandrtray in systray by default (allow easy
+ screen resizing, esp. for non-usb key move)
+
+2004-06-15 12:27 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: ease tests
+
+2004-06-15 11:55 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/Makefile: upgrade distrib version
+
+2004-06-15 11:51 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: redesign to add "Specify the mirror
+ manually" entries in mirror list selection
+
+2004-06-15 11:16 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/disk.c: redesign of the ISO image selection dialog,
+ add an entry in the list to allow to use the directory as a
+ mirror tree
+
+2004-06-15 11:13 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/disk.c: do not try to mount the partition in testing
+ mode, assume it is already mounted
+
+2004-06-15 11:11 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/disk.c: del loop device after unmount
+
+2004-06-15 09:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: update comment
+
+2004-06-15 09:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: rename usbnet as net_modules
+
+2004-06-15 08:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix 10-44mdk's changelog
+
+2004-06-14 23:37 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cy.po: updated Welsh file
+
+2004-06-14 22:49 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nb.po: updated Norwegian file
+
+2004-06-14 22:46 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: saraiva
+
+2004-06-14 22:46 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nn.po: updated Nynorsk file
+
+2004-06-14 20:24 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: move mirror list functions upper
+
+2004-06-14 20:08 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/disk.c: rephrase question again
+
+2004-06-14 20:01 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/disk.c: rephrase again the disk install questions
+ (thanks to Pierre Jarillon, Rapsys|Phoenix and John Kelller)
+
+2004-06-14 19:47 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: rename variables for extra cohesion
+
+2004-06-14 19:36 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: fix brown paper bug combo
+
+2004-06-14 18:09 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, am.po, ar.po, az.po,
+ be.po, bg.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, 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, pl.po, pt.po, pt_BR.po, ro.po, ru.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
+
+2004-06-14 17:07 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: always fill proxy fields of interfaces
+
+2004-06-14 17:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/newt.pm: (ask_fromW_real) make previous
+ button be labeled "cancel" when needed
+
+2004-06-14 16:50 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/stage1.c: do not mount sysroot in testing mode
+
+2004-06-14 15:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: merge fix from HEAD
+
+2004-06-14 15:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: do not automatically
+ switch from nv to nvidia (in order to handle cases where nvidia
+ module crashes the system)
+
+2004-06-14 13:11 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/pixmaps/langs/lang-ber.png: Added image for Berber
+ language, so it is available when it would be needed
+
+2004-06-14 12:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: harddrake/data.pm, network/netconnect.pm: merge
+ fixes from HEAD
+
+2004-06-14 11:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: standalone/drakTermServ, standalone/drakbackup,
+ standalone/draksplash, ugtk2.pm: merge fixes from HEAD
+
+2004-06-14 11:50 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/disk.c: rephrase the partition selection message
+
+2004-06-14 10:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-44mdk
+
+2004-06-14 10:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: since some hard disks are USB
+ models, we've to filtering them out once we've detected them in
+ order to prevent tem to appear in the "unknown/other" category
+
+2004-06-14 10:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: enable drag on drop when
+ looking only at customized settings
+
+2004-06-14 10:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: drakconnect, draksec, draksplash,
+ harddrake2, printerdrake: enforce introduction of translators
+ hints into translation catalogs (perl_checker should have been
+ loudly complain on those!!!! :-(): - add missing coma caracter -
+ move them near translations
+
+ note that i didn't bother check po comments that already have the
+ proper comma. instead this should be done by perl_checker which
+ should warn about po comments out of translation calls and tags
+ contexts
+
+2004-06-14 10:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: display more data about hard
+ disks (geometry, number of primary/extended partitions)
+
+2004-06-14 10:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: ethernet card detection: only
+ rely on driver for matching ethernet cards, thus preventing
+ mislisting of other/unwanted devices (eg: bluetooth, wlan, AX25).
+
+ last but not least, it enables us to catch
+ ldetect/ldetect-lst/detect_devices bugs where some devices are
+ *not* seen by drakx and drakconnect.
+
+2004-06-14 10:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: remove useless filtering in
+ bridges detection code since proper filtering (for dobles) is
+ already done at the upper level.
+
+2004-06-14 10:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: fix misdetection of nvidia nforce
+ ethernet cards (broken since forcedeth replaced nvnet on
+ 2004-01-21 in MDK10's ldetect-lst)
+
+2004-06-11 20:53 Olivier Blin <oblin at mandriva.com>
+
+ * make_boot_img: revert previous change, do not use sudo for
+ mkisofs (I suck)
+
+2004-06-11 20:20 Olivier Blin <oblin at mandriva.com>
+
+ * make_boot_img: use sudo as well for mkisofs
+
+2004-06-11 20:14 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: do not ask proxy settings if interface
+ wasn't brought up (stupid me)
+
+2004-06-11 19:49 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/: network.c, network.h: add http proxy settings in
+ interface_info struct, and ask them right after the interface is
+ up, so that they can be used to fetch the mirror list
+
+2004-06-11 17:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: merge lost hunk
+
+2004-06-11 17:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: s/_([xy])\b/_\1\1/ so that
+ cperl-mode is happier
+
+2004-06-11 17:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: make draksplash work again...
+
+2004-06-11 16:53 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/stage1.c: enable MODE_TESTING if the DEBUGSTAGE1
+ environment variable is set
+
+2004-06-11 16:42 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/tools.c: in testing mode, try to open cmdline file in
+ current directory before trying in /proc
+
+2004-06-11 16:08 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/disk.c: let the user choose between ISO images
+ containing a stage2 installer if a directory containing ISO
+ images has been specified
+
+2004-06-10 17:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: perl_checker compliance
+
+2004-06-10 16:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: - hde is
+ ide/host1/bus0/target0/lun0, and not ide/host0/bus2/target0/lun0
+ - add host in hd struct for bus ide
+
+2004-06-10 16:40 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/config-stage1.h: use new product name (Mandrakelinux)
+
+2004-06-10 16:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/cvslog2changelog.pl: add olivier blin
+
+2004-06-10 16:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: first lan step: replace the
+ "manual choice" string by the more meaningfull "manually load a
+ driver"
+
+2004-06-10 16:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: first lan step: do not
+ compare translated strings, use format callback
+
+2004-06-10 14:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * move/tree/alsa_default.pl: merge with sound-scripts (we should
+ really just use ../../../soft/sound-scripts/alsa_default.pl)
+
+2004-06-10 11:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: fix trainee suckiness
+
+2004-06-10 10:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/level.pm: (get) default to standard level;
+ else security::msec won't be able to load any values when level
+ is not set (thus resulting in an empty draksec GUI)
+
+2004-06-10 10:27 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm, mdk-stage1/disk.c, mdk-stage1/mount.c:
+ ntfs support in install from disk (on nplanel request, but to
+ actually work, it would need the BOOT kernels to include the ntfs
+ module)
+
+2004-06-10 09:33 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/tg.po: updated Tajik file
+
+2004-06-09 16:26 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/stage1.c: in move, use stg1_info_message() instead of
+ stg1_error_message() not to disable MODE_AUTOMATIC if not enough
+ memory
+
+2004-06-09 16:20 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/stage1.c: in move, use stg1_info_message() instead of
+ stg1_error_message() not to disable MODE_AUTOMATIC
+
+2004-06-09 12:46 Pixel <pixel at mandriva.com>
+
+ * Makefile: fix bad glob in upload_only
+
+2004-06-09 11:11 Pixel <pixel at mandriva.com>
+
+ * move/make_live: - install ATI_GLX-utils (from cdcom) - remove
+ drakperm and draksec (not useful in Mandrakemove)
+
+2004-06-09 09:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-06-09 09:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-43mdk
+
+2004-06-08 21:25 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: rule live_tree_boot calls clps, no need to do it
+ twice
+
+2004-06-08 21:18 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Bugzilla #9877 - deal with
+ kernel ring buffer that is flooded with msgs for tape device
+ detection.
+
+2004-06-08 20:57 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/config-stage1.h: in ftp install, display a mirror list
+ (fetched from http://www.linux-mandrake.com/mirrorsfull.list) to
+ allow the user to choose the medium, the host, and automatically
+ find the path on mirror (next try, I suck Pixel said)
+
+2004-06-08 20:55 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: in ftp install, display a mirror list
+ (fetched from http://www.linux-mandrake.com/mirrorsfull.list) to
+ allow the user to choose the medium, the host, and automatically
+ find the path on mirror
+
+2004-06-08 20:51 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: include missing header for uname
+
+2004-06-08 20:49 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: in ftp install, check that modules for the
+ boot kernel are available in mdkinst live location (they won't be
+ used by the installer, but if they aren't here, they probably
+ won't be in the mdkinst tarball)
+
+2004-06-08 20:38 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/: url.c, url.h: list only the requested file in
+ ftp_get_filesize() instead of the whole directory (the buffer
+ happens to be too small sometimes), make this function available
+ for other modules
+
+2004-06-08 18:33 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/list: A chunk of the previous patch wasn't
+ suitable for 10.0
+
+2004-06-08 18:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: fix typo causing "Out of memory"
+
+2004-06-08 18:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/cvslog2changelog.pl: add rafael
+
+2004-06-08 17:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: kill dead code
+
+2004-06-08 17:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps.pm, pkgs.pm, Xconfig/card.pm,
+ Xconfig/main.pm, Xconfig/test.pm, standalone/drakedm: switch to
+ xorg
+
+2004-06-08 16:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_steps_gtk.pm,
+ install_steps_interactive.pm, share/list.i386,
+ standalone/XFdrake: switch to xorg
+
+2004-06-08 16:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: - obsolete: gnome-vfs-extras xanim
+ nist mtv gatos mokmod ghostscript-utils tetex-latex-arab-doc
+ sgml-tools ghostscript-module-SVGALIB kdenetwork-kit
+ ApacheJServ cameleo unarj unstuff postgresql-python mercury
+ NVIDIA_nforce* fonts-type1-baltic gnorpm - obsolete games:
+ xtrojka bunnies xgammon xpuzzles 7colors xrally gtulpas gtkgo -
+ obsolete and the new one is auto required: MAKEDEV - xine-oss
+ xine-xv are in xine-plugins which is required by xine-ui - gatos
+ is no more, replacing with ati.2 (??) - replace php with php-cgi
+ (??) - replace scanner-gui with xsane and "KDE kdegraphics-kooka"
+ - replace clispp2c with clisp (??) - replace autoconf with
+ autoconf2.1 - replace automake with automake1.4 - switch to
+ gimp2_0
+
+ - everybuddy is now ayttm - gimp-plugin is no more, but adding
+ gimp-help - Epplets is now epplets (since a lot of time) -
+ mandrake-galaxy is now mandrakegalaxy - prelude is now
+ prelude-manager - kdenetwork-kmail is now kdepim-kmail (same for
+ kdepim-korn and kdepim-knode) - many XFree86-* are now
+ xorg-x11-*, others are removed (the old XFree3 servers) -
+ libxfree86-devel is now libxorg-x11-devel -
+ libxfree86-static-devel is now libxorg-x11-static-devel -
+ tight-vnc-doc is now tightvnc-doc - php-manual is now
+ php-manual-{en,fr,...} - sketch is now skencil - libgr-progs is
+ now netpbm - MySQL-devel is now libmysqlXX-devel - replace xkobo
+ with skobo - fix typo for xtraceroute (bad layout for flag 3D)
+
+ - libiw27 instead of libiw26 - libhpojip0 instead of libhpojip
+
+2004-06-08 16:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: add "Active Directory"
+ authentication (alpha code)
+
+2004-06-08 15:54 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/list: Report revisions 1.124, 1.125 and 1.126
+ from HEAD
+
+2004-06-07 22:20 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2004-06-07 13:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: hid is missing (and not needed) on kernel
+ 2.6.7.0.rc2
+
+2004-06-07 12:41 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: init.c, stage1.c: nasty kernel now gives us weird
+ PIDs, so we can't rely on this to detect if we are running on a
+ live box or not. So set testing to 0
+
+2004-06-07 12:35 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, am.po, ar.po, az.po,
+ be.po, bg.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, 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, pl.po, pt.po, pt_BR.po, ro.po, ru.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
+
+2004-06-04 17:09 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/gl.po: updated Galician file
+
+2004-06-04 15:15 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: remove some FIXME comments
+
+2004-06-04 15:12 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/netconnect.pm: switch ONBOOT to on/off for
+ isdn and adsl connections
+
+2004-06-04 13:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (setupBootloader) remove debugging messages
+
+2004-06-04 12:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (setupBootloader__entries) fix typo (Andrea
+ Celli)
+
+2004-06-04 10:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake.sh: run harddrake
+ service earlier
+
+2004-06-03 18:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/patch/patch-rh9-mdk10.pl: only big known bug
+ remaining is mouse configuration
+
+2004-06-03 18:23 Pixel <pixel at mandriva.com>
+
+ * tools/cvslog2changelog.pl: add AUTHOR environment option for my
+ warly reports
+
+2004-06-03 18:20 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: probing.c: use the same technique as ldetect for
+ detecting usb and firewire controllers (based on the pci class)
+
+2004-06-03 17:25 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: add a rule to build bootcdrom.iso (useful for
+ providing an updated stage1)
+
+2004-06-03 17:17 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: if DEBUGSTAGE1 is set, include sash
+
+2004-06-03 17:16 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: have a somewhat more predictable rdz (alas it
+ doesn't really fix the variable size of generated rdz's)
+
+2004-06-03 13:26 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: build iso in /tmp
+
+2004-06-03 13:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: add resolution 1920x1200 called
+ WUXGA (used by Dell Laptops Inspiron 8500, 8600 and Latitude
+ D800) (bugzilla #6795)
+
+2004-06-03 13:14 Pixel <pixel at mandriva.com>
+
+ * move/data/: always.list, boot.list: have kmix in always.list
+
+2004-06-02 19:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: - stop mounting ext3 partitions using type
+ ext2 during install - stop fsck'ing ext3 partitions (it was only
+ done during install, not upgrade)
+
+2004-06-02 17:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: - add descriptions for NFS and SMB (thanks
+ to bugzilla #9940) - don't iterate on %l, better iterate on
+ %types
+
+2004-06-02 16:12 Pixel <pixel at mandriva.com>
+
+ * move/hack: obsolete since make_boot_img handles mandrakemove
+
+2004-06-02 16:00 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: - build data/i18n_*.list if missing - don't copy
+ MDK::Common files (we use the 10.0 package verbatim) - don't put
+ mdk_totem in /etc/skel/Desktop, otherwise the desktop is not
+ created correctly
+
+2004-06-02 15:57 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: - only look move key in fat partitions - search for
+ the usb key partition containing a mandrakemove
+
+2004-06-02 15:55 Pixel <pixel at mandriva.com>
+
+ * move/data/: boot.dirs, boot.list: /etc/gtk-2.0/gtkrc.ta_IN needs
+ the directory /etc/gtk-2.0 to be in main clp, not the boot one
+
+2004-06-02 15:54 Pixel <pixel at mandriva.com>
+
+ * move/data/make_i18n_list: remove en doc (new doc will come fixed,
+ hopefully)
+
+2004-06-02 10:27 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/de.po: updated German file
+
+2004-06-01 23:20 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/am.po: updated Amharic file
+
+2004-06-01 22:17 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nb.po: updated Norwegian po file
+
+2004-06-01 22:02 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Binary ftp/gui fixes from
+ cooker branch.
+
+2004-06-01 22:00 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Really apply gui fix.
+
+2004-06-01 19:06 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: saraiva
+
+2004-06-01 18:05 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: s#ppp/peers/adsl#ppp/peers/ppp0# as
+ we now use ifup-ppp for adsl, it will look for ppp0
+
+2004-06-01 17:50 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: new way to specify how to up
+ connection for pppoe(xDSL) and others(ADSL)
+
+2004-06-01 17:40 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/: drakTermServ, drakbackup: Use array
+ rather than hash per Thierry. Insure ftp transfers are binary,
+ fix gui problem (in 10.0 update also).
+
+2004-06-01 15:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakboot: rollback weird and ugly
+ workaround when pressing cancel on the ask_warn. The real fix is
+ in ugtk2.pm
+
+2004-06-01 15:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: when wizcancel occurs, ugtk2 object is not
+ destroyed (the garbage collector seems to have some pbs taking
+ care of this, but since many callbacks using it are registered,
+ it's no wonder) (fixes pressing "Cancel" on a ->ask_warn in
+ wizard mode)
+
+2004-06-01 14:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/tools.pm: remove debug message
+
+2004-06-01 14:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/tools.pm: (use_windows) space cleanup
+
+2004-06-01 11:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getNet) rollbacl to MDK10.0
+ detection scheme
+
+2004-06-01 10:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-42mdk
+
+2004-06-01 10:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: (lilo_choice) fix error title
+
+2004-06-01 10:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: (set_text): fix "cleanups"
+
+2004-06-01 10:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (set_text) cleanups
+
+2004-06-01 10:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: handle the nfs/smb service disabled
+ (enhancement given by Olivier Blin)
+
+2004-06-01 10:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: mark it as translatable for
+ non alphabetic languages
+
+2004-06-01 10:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: fix "two windows after
+ exception" bug
+
+2004-06-01 10:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: (write_grub_config) do not write
+ partial config file (thus garbaging previous config) if an error
+ occured
+
+2004-06-01 10:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: make LAN wizard more user
+ friendly: move "manual choice" after detected interfaces
+
+2004-06-01 10:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getNet) handle interface w/o ip
+ addresses
+
+2004-05-28 23:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup: merge fix from TRUNK
+
+2004-05-28 23:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: update 10-41mdk's changelog
+
+2004-05-28 23:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix perl Glib/Gtk2 binding requires
+ for mdk10.0
+
+2004-05-28 23:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-41mdk
+
+2004-05-28 23:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: (read_all_conf) read VLAN
+ interfaces too
+
+2004-05-28 22:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix 10-34.2mdk changelog
+ indentation
+
+2004-05-28 22:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: update 10-34.2mdk's changelog
+
+2004-05-28 22:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: merge brown paper bug fix
+ from TRUNK
+
+2004-05-28 22:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: (real_main) fix protocol
+ switching from manual to auto when stepping back
+
+2004-05-28 22:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: (read_all_conf) read ip aliased
+ interfaces too
+
+2004-05-28 17:55 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Typo in tape restore
+ (Federico Belvisi).
+
+2004-05-28 12:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-40mdk
+
+2004-05-28 12:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: update 10-34.2mdk's changelog
+
+2004-05-28 12:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: merge from HEAD:
+ (get_eth_cards) fallback on sysfs in order to get driver and card
+ description when ethtool is not supported (eg: ipw2100 driver for
+ intel centrino)
+
+2004-05-28 12:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (get_eth_cards) fallback on
+ sysfs in order to get driver and card description when ethtool is
+ not supported (eg: ipw2100 driver for intel centrino)
+
+2004-05-28 10:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: any.pm, authentication.pm, detect_devices.pm,
+ drakxtools.spec, keyboard.pm, c/stuff.xs.pl,
+ network/drakfirewall.pm, network/ethernet.pm,
+ standalone/drakTermServ, standalone/drakbackup,
+ standalone/net_monitor: merge fixes from HEAD
+
+2004-05-28 09:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix 10-37mdk's indentation
+
+2004-05-27 20:09 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: - drop old internet service code -
+ only one way to configure/up/down an adsl connection
+
+2004-05-27 19:08 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/netconnect.pm: - call remove_initscript
+ because internet service is dropped - drop write_initscript call
+
+2004-05-27 19:05 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/tools.pm: - kill write_initscript - add
+ remove_initscript
+
+2004-05-27 18:17 Pixel <pixel at mandriva.com>
+
+ * move/move.pm, perl-install/install2.pm,
+ perl-install/install_any.pm, perl-install/install_steps.pm,
+ perl-install/install_steps_interactive.pm,
+ perl-install/Xconfig/card.pm: handle freeDriver which disable
+ using proprietary X driver (esp. for nvidia)
+
+2004-05-27 18:11 Pixel <pixel at mandriva.com>
+
+ * move/make_live_tree_boot: fix checking if we must build nvidia
+ clp
+
+2004-05-27 17:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getNet) ignore loopback device
+
+2004-05-27 17:57 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/am.po: Added Amharic file
+
+2004-05-27 17:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: really chkconfig --add and --del for
+ "diskdrake --fileshare" (thanks to Olivier Blin)
+
+2004-05-27 17:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-39mdk
+
+2004-05-27 17:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: instead of removing package nfs-utils or
+ samba-server (when "diskdrake --fileshare" disables a export
+ kind) (bugzilla #9804)
+
+2004-05-27 16:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: new function isTrueLocalFS() to make a
+ distinction between ext3/reiserfs/... and nfs => allow /home on
+ nfs (bugzilla #7460)
+
+2004-05-27 16:01 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: handle no kernel installed correctly
+
+2004-05-27 13:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fs.pm, fsedit.pm, install_interactive.pm,
+ partition_table.pm: new function isTrueLocalFS() to make a
+ distinction between ext3/reiserfs/... and nfs => allow /home on
+ nfs (bugzilla #7460)
+
+2004-05-27 09:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-38mdk
+
+2004-05-27 09:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: (get_val) reuse
+ c::get_netdevices() and thus skip bogus sit0
+
+2004-05-26 21:24 Daouda Lo <daouda at mandriva.com>
+
+ * docs/HACKING: - perl-XML-Parser is needed at build stage
+
+2004-05-26 20:48 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: keyboard.pm, lang.pm, share/rpmsrate: enabled
+ Latgalian language choice; prepared for Sardian; rpmsrate:
+ Japanese input method is now "uim"
+
+2004-05-26 18:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * move/move.pm: bump copyright
+
+2004-05-26 15:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/: common.pm, crypto.pm, install_any.pm:
+ /etc/mandrake-release is now /etc/mandrakelinux-release
+
+2004-05-26 13:37 Pixel <pixel at mandriva.com>
+
+ * move/move.pm, perl-install/lang.pm: - call handleI18NClp() ASAP -
+ create and use lang2move_clp_name()
+
+2004-05-26 13:25 Pixel <pixel at mandriva.com>
+
+ * move/data/make_i18n_list: some packages are only one locale
+ dependent, but still don't require that locale, handle it using
+ special cases
+
+2004-05-26 12:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: "expert" flag in stage2 is bad and
+ deprecated, removing it!
+
+2004-05-26 11:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getNet) reuse
+ c::get_netdevices()
+
+2004-05-26 11:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: (netdevices) introduce it in order to
+ list network interfaces
+
+2004-05-26 10:46 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/tl.po: updated Filipino file
+
+2004-05-26 09:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getNet) support br (bridging)
+ and tr (UML) interfaces (florin)
+
+2004-05-26 01:33 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: Nepali uses devanagari script
+
+2004-05-26 00:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: eu.po, tg.po: updated Basque and Tajik
+ files
+
+2004-05-25 23:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: keyboard.pm, share/keyboards.tar.bz2: new
+ keyboards; new lang->keyboard correspondences
+
+2004-05-25 17:35 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: don't trust the USB keyboard layout
+ announc when it claims to be "us" layout (mosdt manufacturers
+ just keep that default value while seeling different layouts)
+
+2004-05-25 12:13 Robert Vojta <robert.vojta at mandrake.org>
+
+ * perl-install/network/drakfirewall.pm: - BitTorrent support added
+
+2004-05-25 10:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-05-25 09:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add eth1394 (#9669)
+
+2004-05-25 09:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: update 10-37mdk's changelog
+
+2004-05-25 09:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-37mdk
+
+2004-05-25 09:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (mapIntfToDevice) only try to
+ lookup pci or usb device by bus location if its location is
+ defined (some driver are returning bogus data on ETHTOOL_GDRVINFO
+ command)
+
+2004-05-25 09:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (get_eth_cards) brown paper
+ bug: fix card name lookup when driver does not support GDRVINFO
+ command from ETHTOOL ioctl and there's only one card managed by
+ this driver
+
+2004-05-24 19:49 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Fix dropped .txt files when
+ running mkisofs. (Anthill #799)
+
+2004-05-24 16:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: typo fix
+
+2004-05-24 15:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: (mk_frame) minor cleanup
+
+2004-05-24 15:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: Xconfig/resolution_and_depth.pm,
+ interactive/gtk.pm, standalone/drakTermServ,
+ standalone/drakbackup, standalone/drakboot, standalone/drakbug,
+ standalone/drakconnect, standalone/drakfloppy,
+ standalone/drakperm, standalone/draksec, standalone/draksplash:
+ switch from deprecated OptionMenu into new ComboBox widget
+
+2004-05-24 14:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (build_notebook) simplify
+ pull down menu filling and do not duplicate protocols list
+
+2004-05-24 14:32 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/list: Don't hardcode architecture
+
+2004-05-24 09:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-36mdk
+
+2004-05-24 09:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: still provide compat stuff for OptionMenu
+ (#9826) until all tools are converted
+
+2004-05-21 21:16 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/: drakTermServ, drakbackup: Some new
+ perl_checker fixes.
+
+2004-05-21 00:43 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Add /etc/modprobe* mount
+ points for client hardware config.
+
+2004-05-19 17:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-35mdk
+
+2004-05-19 17:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: adsl.pm, netconnect.pm: forward speedtouch
+ fix (using kernel mode)
+
+2004-05-19 17:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: c/stuff.xs.pl, network/netconnect.pm: forward
+ better LAN vs wireless filtering
+
+2004-05-19 17:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: filter LAN and Wireless cards
+ by explicitely checking whether network interfaces support
+ wireless extensions or not instead of relying on both ethtool
+ support (in order to get the module name) and checking against a
+ whitelist of known wireless awere cards
+
+2004-05-19 17:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: (hasNetDevice,
+ isNetDeviceWirelessAware, getNetDriver) explicitely use system
+ IFNAMSIZ instead of implicitely defining it
+
+2004-05-19 17:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: (isNetDeviceWirelessAware) introduce
+ it in order to detect whether a network interface support
+ wireless extensions or not
+
+2004-05-19 17:10 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/share/list: - Share pango modules between the FT2
+ and Xft backend (named fc in pango 1.4) - pango-modules file is
+ now located in /etc/pango/i386/ - Add Build.pm
+
+2004-05-18 21:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cy.po, es.po, ky.po, pl.po: updated
+ Kyrgyz and Welsh files
+
+2004-05-18 15:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * move/make_live: perl_checker cleanups
+
+2004-05-18 09:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::OptionMenu->new) kill debug message
+
+2004-05-18 08:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::OptionMenu) transparently replace
+ obsolete OptionMenu widget by the new ComboBox widget
+
+2004-05-17 17:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add ipw2100
+
+2004-05-17 15:00 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/netconnect.pm: perl_checker compliance
+
+2004-05-17 14:58 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/netconnect.pm: remove speedtouch and ISDN
+ 'only working under 2.4 kernel' warnings
+
+2004-05-17 14:52 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: prefer collecting data in "install" rule when
+ un_live_tree_boot is done
+
+2004-05-17 14:41 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * tools/Makefile: Clean up perl version checking in the tools
+ makefile.
+
+2004-05-17 14:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: restore the ability to specify the
+ file where the config should be written (since it's used by
+ Xconfig/test.pm)
+
+2004-05-17 14:20 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/list: Fix version of PerlIO::gzip in file list
+
+2004-05-17 14:15 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/Makefile: Remove an obsolete check for XFree86-VGA16
+
+2004-05-17 12:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: install autofs for nis
+ authentication (dixit florin & fcrozat)
+
+2004-05-17 12:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: instead of keeping stage1 (mostly as
+ temporary space but with a fixed size, and for the background
+ init), exit the stage1 giving hand to stage2 in a tmpfs (same as
+ what was done for Mandrakemove)
+
+2004-05-17 12:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: stage2 now builds the full mdkinst, and
+ full_stage2 is stage2 + building mdkinst_stage2
+
+2004-05-17 11:24 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: add some "sudo" where needed
+
+2004-05-17 11:22 Pixel <pixel at mandriva.com>
+
+ * move/tools/fix-fc-cache.pl: don't default to /tmp/live_tree
+
+2004-05-17 08:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-05-17 08:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/icons/drakconnect_step.png: kill unused
+ image
+
+2004-05-16 20:15 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Fixes
+
+2004-05-16 11:27 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Arabic translation
+
+2004-05-15 16:09 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Upadted Spanish messages
+
+2004-05-14 19:04 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: Fixes to use speedtouch kernel
+ driver / drop userspace one (happy modem with both 2.4 and 2.6)
+ - fix modem_run parameters to use kernel driver - change/move
+ pty declaration in /etc/ppp/peers/adsl - plugin pppoatm has to
+ be set and vpi.vci too - new net_cnx_{up/down}, speedtouch.sh
+ seems to be useless now
+
+2004-05-13 23:16 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: hi.po, ky.po, sl.po: fixed "default:LTR"
+ string
+
+2004-05-13 23:02 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: et.po, pt_BR.po: updated Estonian and
+ Brazilian files
+
+2004-05-13 16:19 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: - fix cdrom-changedisk.img (didn't set correctly
+ automatic=method:cdrom nor changedisk) - have a valid
+ .not-enough-room when failing building cdrom-changedisk.img
+
+2004-05-13 16:12 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: write syslinux.cfg before cp'ing the .rdz to catch
+ the "not enough room" case
+
+2004-05-13 15:59 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: probing.c: usb cdrom has a weird size in
+ /proc/partitions, the result is that it is detected as floppy
+
+2004-05-13 15:09 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: handleI18NClp() must be called when
+ ->charsetChanged, ie before the locale is used
+
+2004-05-13 12:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: simplify
+ Xconfig::resolution_and_depth::allowed(): adapt it to the way
+ it's really used
+
+2004-05-13 12:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: $prefered_depth
+ defaults to the greatest depths, no need to set it to 24
+
+2004-05-13 12:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: vmware doesn't like
+ 24bpp (bugzilla #9755)
+
+2004-05-13 10:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fs.pm, fsedit.pm, c/stuff.xs.pl,
+ diskdrake/interactive.pm, standalone/drakupdate_fstab: really
+ handle LABEL=XXX in fstab (as used by redhat) (no xfs labels yet)
+
+2004-05-13 10:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: in manualFstab coming from
+ auto_install.cfg, allow device /dev/XXX instead of simply XXX
+
+2004-05-13 10:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile, perl-install/install2.pm,
+ mdk-stage1/.cvsignore, mdk-stage1/Makefile, mdk-stage1/adsl.c,
+ mdk-stage1/cdrom.c, mdk-stage1/config-stage1.h,
+ mdk-stage1/dhcp.c, mdk-stage1/disk.c, mdk-stage1/init.c,
+ mdk-stage1/log.c, mdk-stage1/network.c, mdk-stage1/stage1.c,
+ mdk-stage1/stage1.h, mdk-stage1/tools.c, mdk-stage1/tools.h,
+ perl-install/share/devices, perl-install/share/symlinks: instead
+ of keeping stage1 (mostly as temporary space but with a fixed
+ size, and for the background init), exit the stage1 giving hand
+ to stage2 in a tmpfs (same as what was done for Mandrakemove)
+
+2004-05-13 10:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: speed-up monitor choosing dialog
+ when {VendorName} is undef (esp. when using "use diagnostics")
+
+2004-05-13 09:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: better error logging when gtkcreate_img or
+ gtkcreate_pixbuf can't find the image
+
+2004-05-12 19:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: fix selecting locales-LANG (it
+ didn't really work, but it doesn't seem needed?)
+
+2004-05-12 15:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: no lang-ltg.png, so disabling ltg
+
+2004-05-12 13:40 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/be.po: updated po file
+
+2004-05-12 13:13 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2004-05-12 13:13 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/advertising/dwd-07.pl: unified two strings
+
+2004-05-12 13:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: use busybox when dont_run_directly_stage2
+
+2004-05-12 13:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: - fix typo - fix last commit which was not
+ using $locale_country as it should in
+ system_locales_to_ourlocale()
+
+2004-05-12 13:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/: keyboard.pm, install_steps_interactive.pm: fix
+ typo
+
+2004-05-12 01:25 Pixel <pixel at mandriva.com>
+
+ * move/: make_live_tree_boot, data/make_i18n_list: - make_i18n_list
+ builds the various i18n_XX.list - make_live_tree_boot now uses
+ them to have a new live_tree_i18n_XX containing non always busy
+ files for lang XX. We now handle all langs
+
+2004-05-12 01:23 Pixel <pixel at mandriva.com>
+
+ * move/make_live: LOCALES"zh" was not set correctly
+
+2004-05-12 01:22 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: - rationalize the Makefile - for now only build
+ the clps for the main langs (for devel speed)
+
+2004-05-12 01:21 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: - don't propose languages which do not have their
+ clp - mount the live_tree_i18n_LANG.clp
+
+2004-05-12 01:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, install_steps.pm,
+ install_steps_interactive.pm, keyboard.pm, printer/main.pm: use
+ lang::analyse_locale_name() and lang::analyse_locale_name()
+
+2004-05-12 01:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: - new function locale_to_main_locale() to
+ replace the typical substr($lang, 0, 2) or $lang =~ /(..)/ - new
+ function analyse_locale_name() to replace various regexps on
+ locale name - use those 2 functions for cleanup - cleanup even
+ more standard_locale()
+
+2004-05-12 01:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: better error logging when gtkcreate_img or
+ gtkcreate_pixbuf can't find the image
+
+2004-05-12 01:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: fix selecting locales-LANG (i didn't
+ really work, but it doesn't seem needed?)
+
+2004-05-11 18:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, 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, pl.po, pt.po, pt_BR.po, ro.po, ru.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
+
+2004-05-11 16:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: remove unused function
+
+2004-05-11 16:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: more cleanup in selectLanguage()
+
+2004-05-11 16:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: selectLanguage(): - simplify @langs
+ generation - use a tree if @langs > 15, not when $::move is set
+
+2004-05-11 16:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: perl_checker compliance
+
+2004-05-11 16:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/test.pm: fix typo
+
+2004-05-11 15:18 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/stage1.c: adapt copyright
+
+2004-05-11 14:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: new update: - fix pam configuration
+ when using winbind (also fixes LDAP and NIS (?))
+
+2004-05-11 14:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/: http.pm, install2.pm, lang.pm, mouse.pm, ugtk2.pm,
+ wizards.pm, .perl_checker, interactive/newt.pm,
+ network/netconnect.pm, printer/detect.pm: perl_checker compliance
+
+2004-05-11 14:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: rewrite a little
+ probeSerialDevices(), the beginning is still very strange
+
+2004-05-11 14:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: fix ugly typo (thanks
+ to perl_checker)
+
+2004-05-11 14:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: fix winbind configuration and do
+ the same for LDAP and NIS (modifs proposed and checked by Vincent
+ Guardiola)
+
+2004-05-11 12:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: do not run XFdrake in automatic
+ mode, it's useless
+
+2004-05-11 08:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-05-10 15:03 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/man/C/man5/drakbackup.conf.5: Man page
+ for drakbackup.conf.
+
+2004-05-10 08:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update breton translation
+
+2004-05-09 00:56 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/scannerdrake: Fixed firmware
+ installation.
+
+2004-05-09 00:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/diskdrake: perl_checker compliance
+
+2004-05-08 23:53 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated partially
+
+2004-05-07 17:06 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: i don't need i18n.dirs, so i don't need the
+ special case for check_dirs
+
+2004-05-07 16:38 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: fix check_dirs
+
+2004-05-07 13:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/main.pm: remove debugging code
+
+2004-05-07 12:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakclock: do saner check for ntp package
+ (Robert Vojta)
+
+2004-05-07 12:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/: main.pm, monitor.pm,
+ resolution_and_depth.pm, various.pm, xfree.pm: you can now
+ configure monitors on heads > 1
+
+2004-05-07 11:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/main.pm: fix an old typo
+
+2004-05-07 10:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: rename monitors() and $monitors
+ to monitors_db() and $monitors_db (preparation for next commit
+ which adds ability to configure each monitor)
+
+2004-05-06 17:02 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: fix build
+
+2004-05-06 16:56 Pixel <pixel at mandriva.com>
+
+ * move/: Makefile, make_live, make_live_tree_boot, move.pm,
+ data/always.list, data/always_i18n.list, data/boot.list,
+ data/nvidia.list, data/totem.list: - install all langs - move
+ default from /tmp/live_tree to /BIG/move/live_tree, and have it
+ written only once
+
+2004-05-06 15:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-05-06 12:45 Pixel <pixel at mandriva.com>
+
+ * move/data/boot.list: remove mozilla plugins (esp for
+ libflashplayer.so which breaks build when we don't have cdcom)
+
+2004-05-06 11:35 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: xfree[34X] are removed
+
+2004-05-06 10:32 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: when XF86Config-4 is missing, use XF86Config
+
+2004-05-06 10:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fs.pm, standalone/drakupdate_fstab: don't
+ prefer_devfs_name when reading /proc/mounts (which uses devfs
+ names)
+
+2004-05-06 09:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: don't succeed automatic
+ configuration (not auto_install) when there is many cards (as
+ requested by Joe Bolin on cooker)
+
+2004-05-05 16:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: open more ports for samba
+
+2004-05-05 15:34 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: preparing for Furlan
+
+2004-05-05 15:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix 10-31mdk's changelog
+
+2004-05-05 15:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not offer to set
+ DOMAINNAME2 since it is never saved nor read (#9580)
+
+2004-05-05 14:38 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/gl.po: updated Galician file
+
+2004-05-04 17:04 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/ethernet.pm: use @cards instead of $#cards
+ as told by master pipi
+
+2004-05-04 16:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/de.po: update
+
+2004-05-04 16:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-34mdk
+
+2004-05-04 16:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix interface destruction
+ wizard
+
+2004-05-04 15:28 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/ethernet.pm: perl_checker fixes
+
+2004-05-04 11:35 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/netconnect.pm: perlchecker fixes
+
+2004-05-03 19:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/: mouse.pm, standalone.pm, Xconfig/FILES,
+ Xconfig/card.pm, Xconfig/default.pm, Xconfig/main.pm,
+ Xconfig/resolution_and_depth.pm, Xconfig/screen.pm,
+ Xconfig/test.pm, Xconfig/various.pm, Xconfig/xfree.pm,
+ Xconfig/xfree3.pm, Xconfig/xfree4.pm, Xconfig/xfreeX.pm: XFree 3
+ is gone!
+
+2004-05-03 18:14 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/de.po: updated German file
+
+2004-05-03 16:29 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/: isdn.pm, netconnect.pm: take ISDN protocol
+ into account for people outside Europe to use it (kind of lost in
+ space before)
+
+2004-05-03 15:00 Pixel <pixel at mandriva.com>
+
+ * advanced.msg.xml, help.msg.xml, make_boot_img: - move boot help
+ messages out of make_boot_img and the various msgboot*.img.bz2 -
+ move them in help.msg.xml and advanced.msg.xml - talk about
+ noapic in help.msg (thanks to switzerland, esp. to gc)
+
+2004-05-03 12:53 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: simplify: isolinux always use boot.msg
+
+2004-05-03 12:49 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: don't use msgboot-graphicallogo.img.bz2 anymore,
+ build it (easy and simpler)
+
+2004-05-03 12:20 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/Makefile: stage1-disk and stage1-medias-usb are dead
+ already
+
+2004-05-03 12:13 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: hd.img and hdcdrom_usb.img are dead already too
+
+2004-05-03 12:10 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: network_usb, network_gigabit and
+ network_gigabit_usb are already dead
+
+2004-05-03 12:00 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: modules.c, stage1.c: blank.img has been removed, so
+ remove special code handling it
+
+2004-05-03 11:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: no need for defensive programming
+
+2004-05-03 11:54 Pixel <pixel at mandriva.com>
+
+ * make_boot_img, perl-install/install2.pm,
+ perl-install/install_steps.pm,
+ perl-install/install_steps_interactive.pm,
+ perl-install/modules.pm: blank.img has been removed, so remove
+ special code handling it
+
+2004-05-03 11:53 Pixel <pixel at mandriva.com>
+
+ * docs/README: quick update, not complete
+
+2004-05-01 14:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fs.pm, fsedit.pm, diskdrake/interactive.pm,
+ standalone/drakupdate_fstab: fix drakupdate_fstab adding twice an
+ entry in fstab, one with the old name, one with the devfs name
+
+2004-04-30 17:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-32mdk
+
+2004-04-30 16:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, detect_devices.pm, devices.pm: - new
+ getSCSI_26() not using /proc/scsi/scsi (since we can't say
+ first Direct-Access entry is sda anymore) - deprecate field
+ {raw_type} - don't fill {device} with sgX for
+ non-(cdrom|hd|floppy) (hopefully not used by anything, except
+ maybe scanners?) - replace scdX with srX (which everybody use)
+
+2004-04-30 11:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone.pm: (version) bump release number
+
+2004-04-30 09:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakclock: time is displayed as HH:MM:SS
+ with RTL languages
+
+2004-04-30 08:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: list SATA controllers in their
+ own category (anthill #741)
+
+2004-04-28 22:00 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nn.po: Updated Nynorsk file
+
+2004-04-28 21:11 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: updating catalan translations of
+ DrakX and drakfax
+
+2004-04-28 18:04 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/isdn.pm: cleaning _last_ 'isdn_' prefix
+
+2004-04-28 17:45 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/harddrake/data.pm: change last isdn_detect_backend()
+ remaining
+
+2004-04-28 16:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * move/tree/: alsa_default.pl, sound.initscript: resync with
+ initscripts (fix sound on many sound cards) (imho, this should
+ not be in move cvs but should be copied at build time from
+ initscripts one)
+
+2004-04-28 14:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: log removed/added hw
+
+2004-04-28 13:44 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/isdn.pm: drop unused ISA and EXPORT
+
+2004-04-28 12:39 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/: network/isdn.pm, network/netconnect.pm,
+ standalone/drakconnect: drop isdn_ fonction names
+
+2004-04-28 12:12 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/netconnect.pm: drop network::isdn->import
+
+2004-04-28 11:50 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ky.po: updated Kyrgyz file
+
+2004-04-28 10:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-04-27 21:16 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: de.po, pt_BR.po: updated Brazilian file
+
+2004-04-27 19:21 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/isdn.pm: no need to up ippp0 in net_cnx_up,
+ it's been up'ed at startup
+
+2004-04-27 14:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * move/make_live: add synaptics for laptops
+
+2004-04-27 14:01 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/: netconnect.pm, tools.pm: try to fix #3793
+ or at least enhance firmware seeking on windows partition (based
+ upon titi's patch)
+
+2004-04-27 13:47 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: more gui layout fixes
+
+2004-04-27 13:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * move/make_live: add ISDN stuff
+
+2004-04-27 12:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/XFdrake: not needed for Lacie, so
+ removing
+
+2004-04-27 11:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/: interactive.pm, removable.pm: revert
+ handling --auto for removable, it is much better done in a
+ separate function (the goal of this --auto is not clear at all,
+ and is better explicitly done)
+
+2004-04-27 08:43 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Arabeyes' Arabic translation
+
+2004-04-26 19:50 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/de.po: updated German translations
+
+2004-04-26 14:39 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: config-stage1.h, stage1.c: rename MandrakeMove to
+ Mandrakemove
+
+2004-04-26 11:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/run_program.pm: create ~/tmp when needed
+
+2004-04-26 11:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: utf8_should_be_needed() must return true if
+ any of the languages chosen is utf8, not only the main one (it
+ also returns true when there are many charsets)
+
+2004-04-25 09:13 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Arabeyes.org's Arabic translation
+
+2004-04-25 08:02 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: update
+
+2004-04-24 20:18 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: update
+
+2004-04-24 00:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nn.po: updated Nynorsk file
+
+2004-04-23 17:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-32mdk
+
+2004-04-23 16:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: remove useless ::prefix
+ references
+
+2004-04-23 16:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (build_notebook) sort ppp
+ auth methods
+
+2004-04-23 16:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (shrink_topwindow) support both 10.0 and
+ cooker
+
+2004-04-23 16:06 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: re-indentation
+
+2004-04-23 15:53 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: use
+ gtkset_border_width(Gtk2::VBox->new, 5) to create a vbox and set
+ a border_width at the same time
+
+2004-04-23 15:43 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: change packing to get a
+ better GUI
+
+2004-04-23 15:04 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/ugtk2.pm: create frame with a border witdth (titi
+ rulez)
+
+2004-04-23 14:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/gl.po: updated Galician files
+
+2004-04-23 14:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: do automatic sound
+ configuration (one can still switch between OSS and ALSA through
+ mcc)
+
+2004-04-23 14:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: handle again timeouts
+
+2004-04-23 14:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: harddrake/data.pm, standalone/service_harddrake:
+ do X11 configuration automagically
+
+2004-04-23 14:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: Xconfig/various.pm, standalone/XFdrake: handle
+ --auto
+
+2004-04-23 14:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: - when automatic flag
+ is set for one hardware class, do not ask for confirmation and
+ just do what is needed - only show "probing in progress" message
+ if we did run an interactive tool
+
+2004-04-23 13:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: (set_removable_configurator) use
+ diskdrake instead of drakupdate_fstab for removable media in
+ automatic mode
+
+2004-04-23 13:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/diskdrake/: interactive.pm, removable.pm: handle
+ --auto when managing removable media
+
+2004-04-23 13:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: set automatic flag for removable
+ media
+
+2004-04-23 11:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * move/make_live: NVIDIA_nforce is no more needed (replaced by
+ snd-alsa8x0 and forcedeth drivers)
+
+2004-04-23 11:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: (probe_category) perl_checker cleanup
+
+2004-04-23 11:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: (remove_alias, remove_alias_regexp,
+ remove_alias_regexp_byname, remove_module, set_options) add more
+ explanations
+
+2004-04-23 00:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sl.po: updated Slovanian file
+
+2004-04-22 17:44 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/modules.pm: fix 'somewhat' broken isdn type and
+ driver name fetching from pcitable (this is no paper-bag)
+
+2004-04-22 13:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: split usb ports from usb
+ controllers (arnaud request)
+
+2004-04-22 11:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: service_harddrake, harddrake2: switch
+ to new harddrake data structure
+
+2004-04-22 11:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: new harddrake data structure
+ (easier to extend)
+
+2004-04-22 10:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: (summary) install
+ alsaconf too for isapnp sound cards (it better handle some isapnp
+ sound cards)
+
+2004-04-22 09:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/v4l.pm: sync tuners list with 2.6.6-rc2
+ too
+
+2004-04-22 09:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/v4l.pm: sync card lists with 2.6.6-rc2
+
+2004-04-22 09:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakxtv: fix tv cards detection
+
+2004-04-20 16:23 Pixel <pixel at mandriva.com>
+
+ * move/data/totem.list: this seems to really fix the alsa pb (?)
+
+2004-04-20 16:23 Pixel <pixel at mandriva.com>
+
+ * move/data/etcfiles: add needed RW files
+
+2004-04-20 16:16 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/: network/tools.pm, standalone/drakconnect: move
+ reread_net_conf to tools.pm
+
+2004-04-20 16:05 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: remove unneeded @all_cards
+ initialisation in reread_net_conf
+
+2004-04-20 14:59 Pixel <pixel at mandriva.com>
+
+ * move/data/totem.list: when using alsa /etc/gnome-vfs-mime-magic
+ is badly needed, why? i don't know :)
+
+2004-04-20 11:40 Pixel <pixel at mandriva.com>
+
+ * move/make_live: add unicorn
+
+2004-04-20 10:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (populate_notebook) fix
+ drakxtools' build
+
+2004-04-20 09:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (build_notebook) do not
+ assume there's not language that want to translate the "dhcp"
+ string as in other code
+
+2004-04-20 09:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-31mdk
+
+2004-04-19 21:35 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Consolidate button_box* code,
+ remaining file_dialogs.
+
+2004-04-19 17:41 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: we need agp modules for DRI (nvidia doesn't care,
+ but ATI does, and others too)
+
+2004-04-19 17:14 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: fix handling directories-to-create
+
+2004-04-19 17:02 Pixel <pixel at mandriva.com>
+
+ * move/: collect-directories-to-create.pl, move.pm: when creating
+ directories, keep rights & uid & gid (esp. for armagetron)
+
+2004-04-19 16:45 Pixel <pixel at mandriva.com>
+
+ * move/make_live: savekdemimetypes.pl needs HOME=/ otherwise it's
+ tmp file fails (it is in ~/tmp)
+
+2004-04-19 16:44 Pixel <pixel at mandriva.com>
+
+ * move/make_live: - nvidia's libglx.so is hardwired to the tls
+ version, change this - if make_live is called more than once,
+ part of removing the tls dirs can fail, but we may still want all
+ of them to be removed
+
+2004-04-19 16:42 Pixel <pixel at mandriva.com>
+
+ * move/data/always_i18n.list: one more .mo needed
+
+2004-04-19 15:43 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: $adsl_modem is optional, moved to
+ $o_adsl_modem
+
+2004-04-19 15:35 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: dropped $::i in foreach
+ loop, use $i instead
+
+2004-04-19 15:23 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - translate strings once and
+ only for the user. don't bother with translated strings
+ internally.. - drop DHCP translation, it's always DHCP
+
+2004-04-19 14:36 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: IPADDR, NETMASK and GATEWAY
+ fields are not sensitive by default in DHCP (broken by #8498 fix)
+
+2004-04-19 14:19 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cy.po, nb.po: updated Welsh and Norwegian
+ files
+
+2004-04-19 11:14 Dam's
+
+ * perl-install/standalone/drakfont: attempt to correct bug #9423
+
+2004-04-18 20:08 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: Unfuzzying and updating
+
+2004-04-18 10:32 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Arabic translation (Arabeyes.org)
+
+2004-04-16 19:28 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Some drives don't return
+ "ATIP info from disk".
+
+2004-04-13 14:14 Pixel <pixel at mandriva.com>
+
+ * kernel/: list_modules.pm, update_kernel: the right place to
+ enumerate modules is list_modules.pm
+
+2004-04-13 14:12 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: for complete build, one need to do "build" before
+ "install"
+
+2004-04-13 14:11 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: rename rule "all" to "default" (it doesn't do all)
+
+2004-04-13 13:44 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: - log errors in /tmp/.kde-errors instead of
+ /dev/tty10 (to be able to grep it, but that means one can't see
+ it if kde doesn't succed except when using option "shell") -
+ adapt to loop instead of chloop
+
+2004-04-13 08:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * move/make_live: pptp-linux sometimes is needed
+
+2004-04-13 08:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * move/make_live: add pppoe plugin too
+
+2004-04-13 08:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * move/make_live: add pppoa plugin for quite a lot of adsl links
+
+2004-04-13 08:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * move/make_live: split nework packages by category
+
+2004-04-13 08:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * move/make_live: adiusbadsl is now eagle-usb
+
+2004-04-11 07:02 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Arabic translation
+
+2004-04-09 23:42 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: eu.po, hi.po: corrected default:LTR
+ entries
+
+2004-04-09 23:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cy.po, uk.po: updated Ukrainian and Welsh
+ files
+
+2004-04-09 15:42 Pixel <pixel at mandriva.com>
+
+ * move/data/always_i18n.list: kwin and kdesktop need kio.mo
+
+2004-04-09 11:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: install_steps.pm, lang.pm: (lang::write_langs)
+ drop prefix parameter
+
+2004-04-09 11:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * move/make_live: remove unused variable
+
+2004-04-09 08:29 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: nn.po, tl.po: updated Nynorsk and
+ Filipino files
+
+2004-04-08 19:34 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po:
+ updates soft/mdkonline/po/da.po soft/wizard_perl/po/da.po
+ gi/perl-install/share/po/da.po
+
+2004-04-08 18:38 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakclock: - test /etc/init.d/ntpd
+ instead of /etc/ntp.conf for ntp installation
+
+2004-04-08 17:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/devices.pm: get rid of the chloop code (not used
+ anymore)
+
+2004-04-08 17:09 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_move_loop: we now simply use loop instead of chloop
+
+2004-04-08 17:08 Pixel <pixel at mandriva.com>
+
+ * move/data/: always.list, boot.dirs, boot.list, nvidia.list,
+ totem.list: adapt to mdk 10.0
+
+2004-04-08 17:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: mount /sys before move::init() since
+ move::init() needs it
+
+2004-04-08 16:58 Pixel <pixel at mandriva.com>
+
+ * move/tools/nfs-accesses: handle option "--already-have=..." alike
+ busy-files-accesses
+
+2004-04-08 16:55 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: also build various subdirs in mdk-stage1 in case
+ it's not done
+
+2004-04-08 16:54 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/lomount.c: - no need for chloop device anymore, my
+ kernel patch applies directly on the default loop module :) -
+ gzloop needs cryptoloop and zlib_inflate (why must i handle this
+ by hand? is my gzloop ugly?...)
+
+2004-04-08 16:52 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: modinfo when running on kernel 2.6 is
+ incompatible with the one on kernel 2.4, so handle both cases
+
+2004-04-08 16:25 Pixel <pixel at mandriva.com>
+
+ * move/make_live: - don't install magicdev nor mdkonline (not
+ useful in mandrakemove) - we were removing /lib/i686, also remove
+ the various tls/ directories - use "kbuildsycoca --global", it
+ works better (the generated ksycoca can be used nicely by
+ boot-time kbuildsycoca's, whereas the
+ /var/tmp/kdecache-root/ksycoca can't)
+
+2004-04-08 09:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: bump glib/gtk+ perl binding
+ requires
+
+2004-04-08 08:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: use Mandrakelinux now
+
+2004-04-08 08:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-30mdk
+
+2004-04-07 23:52 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: defined default font to use in KDE for
+ devanagari and malayalam scripts
+
+2004-04-07 22:41 Dam's
+
+ * perl-install/standalone/drakups: corrected drakups against new
+ libconf 0.32
+
+2004-04-07 00:42 Thomas Backlund <tmb at mandrake.org>
+
+ * perl-install/share/po/fi.po: fully translated, was 3 fuzzy, 3
+ untranslated
+
+2004-04-06 23:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (shrink_topwindow) fix faillure with
+ perl-Gtk+-1.04x (#9411)
+
+2004-04-06 23:11 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Use a scalar with cat_
+ (Pixel suggestion).
+
+2004-04-06 19:58 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Don't move existing
+ dhcpd.conf, add an include for terminal-server instead.
+
+2004-04-06 15:29 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/: list-dis, list-dwd, list-ppp,
+ list-pwp: Don't display commercial advertisement in development
+ version
+
+2004-04-06 13:47 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: eu.po, ky.po: Added Kyrgyz file; updated
+ Basque file
+
+2004-04-06 10:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: typo fix
+
+2004-04-06 00:58 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Remove config-info (new home
+ to be man page). Use ugtk2 cursor wait/normal (share the wheel).
+ Combine/rework restore code.
+
+2004-04-05 16:07 Pixel <pixel at mandriva.com>
+
+ * move/tools/kernel-nfsd.patch: adapt to kernel 2.6
+
+2004-04-05 15:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: allow mounting type devpts
+
+2004-04-05 15:22 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: - devfs in kernel 2.6 doesn't handle /dev/pts
+ anymore, so we must mount it - adapt to 10.0 DrakX -
+ /etc/modprobe.conf handled same as modules.conf (why this special
+ case for them and not other /etc files?) - cleanup and
+ perl_checker fixes
+
+2004-04-05 15:18 Pixel <pixel at mandriva.com>
+
+ * move/data/keyfiles: add /etc/modprobe.conf and
+ /etc/modprobe.preload
+
+2004-04-05 15:18 Pixel <pixel at mandriva.com>
+
+ * move/isolinux/isolinux.cfg: kernel 2.6 is devfs=mount by default,
+ whereas we prefer devfs=nomount for mandrakemove
+
+2004-04-05 15:17 Pixel <pixel at mandriva.com>
+
+ * move/tree/wait4x: Xtest is not in c:: anymore, it is in
+ xf86misc::main::
+
+2004-04-05 15:17 Pixel <pixel at mandriva.com>
+
+ * move/make_live: kernel-smp not useful since we don't boot using
+ it
+
+2004-04-05 15:15 Pixel <pixel at mandriva.com>
+
+ * move/make_live: adapt to kernel 2.6 (and fake having one so that
+ pkg selection defaults to 2.6)
+
+2004-04-05 13:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_any.pm: (setDefaultPackages) despite find
+ and any are semantically equivalent in this context, any will be
+ used there (boolean vs scalar context)
+
+2004-04-05 13:09 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/hi.po: updated Hindi file
+
+2004-04-05 13:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_any.pm: (setDefaultPackages) install
+ alsa-utils if *any* of the present sound card is driven by ALSA
+
+2004-04-05 13:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install gnome-alsamixer and
+ alsa-utils when there's an alsa driver sound card
+ setDefaultPackages
+
+2004-04-05 11:28 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: - move from /usr/bin/stage2 to /usr/lib/stage2 -
+ use the new "./make_boot_img move" (so remove building
+ isolinux/boot.msg) - separate the stage1 + isolinux build
+
+2004-04-05 11:26 Pixel <pixel at mandriva.com>
+
+ * make_boot_img, move/hack_boot_img: - no need forking
+ make_boot_img - also create the isolinux picture (was done in
+ move/Makefile)
+
+2004-04-05 11:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/: authentication.pm, bootloader.pm, fs.pm,
+ fsedit.pm, install2.pm, install_any.pm, install_interactive.pm,
+ install_steps.pm, install_steps_interactive.pm, loopback.pm,
+ lvm.pm, partition_table.pm, raid.pm, swap.pm,
+ diskdrake/hd_gtk.pm, diskdrake/interactive.pm,
+ network/drakfirewall.pm, partition_table/raw.pm: perl now handle
+ cleanly utf8 string in exceptions, no need to die \N("...")
+
+2004-04-05 11:21 Pixel <pixel at mandriva.com>
+
+ * move/: runstage2, data/boot.dirs, data/boot.list: move from
+ /usr/bin/stage2 to /usr/lib/stage2 (cleaner)
+
+2004-04-05 10:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: im-ja has been reported to be more
+ user-friendly than uim
+
+2004-04-05 10:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: log nv<=>nvidia
+ switches
+
+2004-04-05 01:24 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates
+ gi/perl-install/share/po/da.po
+
+2004-04-04 10:19 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Commmitting Arabeyes.org's Arabic
+ translation of the week
+
+2004-04-03 14:57 Antoine Ginies <aginies at mandriva.com>
+
+ * rescue/tree/ka/: gen_modules_conf.pl, hostnames, install.sh,
+ ka-d-client, make_initrd, setup_network.sh, tftpserver: remove
+ file already in cluster/mdkc2 cvs branch
+
+2004-04-02 16:40 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-04-02 16:03 Antoine Ginies <aginies at mandriva.com>
+
+ * rescue/tree/ka/: gen_modules_conf.pl, hostnames, install.sh,
+ ka-d-client, make_initrd, setup_network.sh, tftpserver: first
+ relsease
+
+2004-04-02 15:44 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/Makefile: clean init-move when cleaning
+
+2004-04-02 15:14 Pixel <pixel at mandriva.com>
+
+ * move/isolinux/.cvsignore: we don't provide a cdrom.rdz (not
+ useful, either El Torito "no emulation" works, either it is too
+ late)
+
+2004-04-02 14:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-04-02 10:58 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/nfsmount.c: enable nfs install on old i586 machines
+ (or maybe poor network cards) (bugzilla #9322) (thanks to Michael
+ Riss)
+
+2004-04-02 02:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fa.po, nb.po: updated Farsi and Norwegian
+ files
+
+2004-04-01 19:22 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: br.po, eo.po, fi.po, hr.po, mn.po, sk.po,
+ ta.po: updated Mongol files
+
+2004-04-01 16:30 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po,
+ nn.po, pl.po, pt.po, pt_BR.po, ro.po, ru.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
+
+2004-04-01 12:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: let execl() handle the
+ arg array (this is safer)
+
+2004-04-01 11:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: service_harddrake,
+ service_harddrake_confirm: pass timeout parameter too
+
+2004-04-01 11:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: enable to translate a
+ few more messages
+
+2004-04-01 11:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: translate "XYZ was
+ added/removed" messages
+
+2004-04-01 11:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile.config: list service_harddrake_confirm too
+
+2004-04-01 11:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: drakxtools.spec,
+ standalone/service_harddrake_confirm: move harddrake service
+ confirmation script from spec file into its own file
+
+2004-04-01 11:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: space cleanup
+
+2004-03-31 11:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix drakxtools postuninstall script
+
+2004-03-31 09:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: typo fix
+
+2004-03-30 19:39 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: lang.pm, pixmaps/langs/lang-ltg.png: Added missing
+ choice for Latgalian (it had been forgotten when adding the 10.0
+ new languages)
+
+2004-03-30 15:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-03-30 15:17 Pixel <pixel at mandriva.com>
+
+ * Makefile: add boot.iso to images/MD5SUM (thanks to Frederik
+ Himpe)
+
+2004-03-30 15:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-03-30 14:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: share translation with help.pm
+
+2004-03-30 13:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: fix relative file names (mostly (only?)
+ for debugging)
+
+2004-03-30 11:42 Pixel <pixel at mandriva.com>
+
+ * rescue/list: add /sbin/badblocks
+
+2004-03-30 09:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-03-30 08:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix inverted translations (#8217)
+
+2004-03-29 11:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: typo fix
+
+2004-03-29 11:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-29mdk
+
+2004-03-29 11:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: space "fix"
+
+2004-03-29 11:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: typo fix
+
+2004-03-29 11:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: only alter xfree
+ config if we found an nvidia card
+
+2004-03-29 10:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-03-29 09:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: try several locations
+
+2004-03-29 09:00 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: hi.po, it.po: corrected default:LTR
+ entries
+
+2004-03-29 08:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: check for compressed
+ nvidia modules too
+
+2004-03-29 08:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-28mdk
+
+2004-03-29 08:48 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/it.po: updated Italian file
+
+2004-03-29 08:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: typo fix
+
+2004-03-28 11:55 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Arabeyes.org's translation
+
+2004-03-26 15:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/pkgs.pm: (installTransactionClosure) fix list
+ refreshing (warly)
+
+2004-03-26 15:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix changelog
+
+2004-03-26 14:35 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: - add SMP and BIGMEM for kernel-2.4
+ - aggregate all the kernel-2.4 in one occurence not to raised the
+ "complicated tags" error in install rpmsrate parsing code
+
+2004-03-26 14:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: s/bcm4400/b44/
+
+2004-03-26 14:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_probe_info) fix vpi, vci
+ rereading (speedtouch conf write hexa...)
+
+2004-03-26 12:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: misc space cleanups (thx
+ perl_checko)
+
+2004-03-26 12:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-27mdk
+
+2004-03-26 12:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: warn than speedtouch only
+ works with 2.4.x kernels for now
+
+2004-03-26 12:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_probe_info) fix "manage
+ interface" that broke speedtouch configuration
+
+2004-03-26 12:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: (method_choices) blacklist again
+ Savage, they're broken again :-(
+
+2004-03-26 09:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: bcm4400 is known to not
+ support ETHTOOL
+
+2004-03-26 09:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: speedtouch support is definitvely
+ buggy with 2.6.x kernel for now
+
+2004-03-25 15:58 Warly <warly at mandriva.com>
+
+ * perl-install/share/compssUsers.server: s/PHPgroupware/Kolab
+ server/
+
+2004-03-25 15:21 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: Updated Dutch (nl) translation by
+ Reinout van Schouwen <reinout@cs.vu.nl>
+
+2004-03-24 19:44 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: Unfuzzying
+
+2004-03-24 17:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn.pm: (isdn_write_config_backend) load
+ ISDN driver
+
+2004-03-24 17:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn.pm: up ippp0 interface and delete
+ previous default route
+
+2004-03-24 17:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: (probe_category) set ISDN hisax driver
+ type parameter
+
+2004-03-24 17:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn.pm: (isdn_detect_backend) do not try to
+ get "type" field here, we just have nothing to guess it there
+
+2004-03-24 17:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix ISDN modem selection
+
+2004-03-24 17:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn.pm: (isdn_read_config) do not overwrite
+ current parameters with undefed ones
+
+2004-03-24 16:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: - preferring "p3-smp-64GB" first (for
+ BIGMEM + SMP) - also adding i686-up-4GB - cleanup code
+
+2004-03-24 16:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix extension parsing
+ (vmlinuz-2.6.3-7mdksmp & vmlinuz-2.6.3-7mdkenterprise vs
+ vmlinuz-2.6.3-7mdk-p3-smp-64GB & vmlinuz-2.6.3-7mdk-i686-up-4GB)
+
+2004-03-24 16:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: sorting based on @prefered is nearly
+ unused, remove it
+
+2004-03-24 14:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: when BIGMEM & SMP, use
+ kernel-p3-smp-64GB
+
+2004-03-24 13:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: #5056 really refered to
+ austria, not australia
+
+2004-03-24 13:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: list b44 too
+
+2004-03-24 12:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: meta_class server (PowerPack+)
+ needs category Workstation
+
+2004-03-24 11:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix changelog
+
+2004-03-24 11:39 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/po/fr.po: Update translations
+
+2004-03-24 11:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: one more change
+
+2004-03-24 10:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: switch between nv and
+ nvidia driver if commercial driver isn't installed
+
+2004-03-24 10:29 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Install kdeutils-kwalletmanager by
+ default when KDE is installed
+
+2004-03-24 10:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: one more change in 10-26mdk
+
+2004-03-24 10:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_conf_backend) only disable
+ kernel driver for 2.4.x kernels since latest speedtouch package
+ is totally broken in userland mode now :-(
+
+2004-03-24 02:06 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/hi.po: updated Hindi file
+
+2004-03-23 18:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: add bug reference in 10-25mdk
+ changelog
+
+2004-03-23 18:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: remove doble entries in 10-25mdk
+ changelog
+
+2004-03-23 18:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-26mdk
+
+2004-03-23 18:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (del_intf) enable to delete
+ ADSL and ISDN connections
+
+2004-03-23 18:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix drakconnect config
+ writing when there's only one configured interface (eg: at
+ install time) (#8998)
+
+2004-03-23 18:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakgw: add a new line for lord cat
+
+2004-03-23 17:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: bewan PCI and ethernet ADSL
+ modems work smoothly with 2.6.x kernels
+
+2004-03-23 17:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: for ISDN, do the same warning
+ popup about supported kernels
+
+2004-03-23 17:39 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-03-23 17:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: ga.po, gl.po: update
+
+2004-03-23 16:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/cy.po: update
+
+2004-03-23 15:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: (interactive_mode) fix
+ button layout (prevent button collisions and text truncation when
+ translated)
+
+2004-03-23 15:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: (client_type) fix layout
+ (checbox was using too muche vertical space)
+
+2004-03-23 14:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-03-23 14:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: enable to go in in
+ --testing mode
+
+2004-03-23 13:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/: bootloader.pm, install_any.pm,
+ install_steps_interactive.pm: LSB doesn't need kernel 2.4 anymore
+
+2004-03-23 12:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install ndiswrapper for centrino
+ chipsets
+
+2004-03-23 12:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: replace kernel-enterprise with
+ kernel-i686-up-4GB when BIGMEM
+
+2004-03-23 12:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fs.pm, standalone/diskdrake,
+ standalone/drakupdate_fstab: - do not pass options is_removable
+ to set_default_options() since it is not a global options -
+ replace it with a flag in the part or raw_hd - set is_removable
+ for part from usb drive - ensure usb partitions are not checked
+ at boot time (freq field in fstab)
+
+2004-03-23 11:35 Nicolas Planel <nplanel at mandriva.com>
+
+ * perl-install/any.pm: add nolapic support option (NOn Local APIC)
+
+2004-03-23 11:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakgw: fix drakgw removing
+ MII_NOT_SUPPORTED parameter from ifcfg file (#9076)
+
+2004-03-23 11:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/keyboard.pm: - az, tr and tr_f needs XkbOptions
+ 'caps:shift' - cleanup
+
+2004-03-23 10:00 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ca.po, de.po, et.po, fa.po, hi.po, is.po,
+ it.po, ja.po, mk.po, nn.po, sq.po, sv.po, uk.po: corrected
+ "default:LTR" translations
+
+2004-03-23 08:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakclock: fix packing
+
+2004-03-23 06:02 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: update
+
+2004-03-22 22:29 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/tl.po: updated Filipino file
+
+2004-03-22 17:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: (row_setting_dialog) hide
+ dialog's horizontal separator, because create_okcancel() already
+ creates its own separator (Robert Vojta, #9153)
+
+2004-03-22 17:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: add space around main vbox
+ (Robert Vojta, #9153)
+
+2004-03-22 17:11 Florin Grad <florin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: typo (forgot a space)
+
+2004-03-22 16:53 Florin Grad <florin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: do not write the REDIRECT
+ squid rules if one has only one NIC connected to the net zone
+
+2004-03-22 15:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakclock: Look & feel enhancement in
+ order to have a smoother GUI (Robert Vojta, #9141) : - when not
+ embedded, add 5 pixels border around the whole GUI - add border
+ around frames contents
+
+2004-03-22 15:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakclock: show timezone in drakclock
+ (Robert Vojta, #9141)
+
+2004-03-22 15:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakclock: (get_servers) sort servers
+ (Robert Vojta, #9139)
+
+2004-03-22 14:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: (write_conf) simplify
+
+2004-03-22 11:29 Frederic Crozat <fcrozat at mandriva.com>
+
+ * perl-install/share/po/fr.po: Fix typo
+
+2004-03-22 10:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (isTVcard) typo fix
+
+2004-03-22 10:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: typo fix
+
+2004-03-22 09:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: (parse_file) oops, forgot one
+ /o
+
+2004-03-22 09:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: detect_devices.pm, modules.pm, standalone/drakxtv:
+ fix tv cards managed by cx88 and saa7134 (#9112)
+
+2004-03-22 09:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: fix non first searches (#9115)
+
+2004-03-22 09:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/v4l.pm: fix log message
+
+2004-03-21 22:43 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-03-21 22:13 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: done
+
+2004-03-21 20:34 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nb.po: updated Norwegian file
+
+2004-03-21 11:31 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ar.po: updated Arabic file
+
+2004-03-21 10:14 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Committing Arabeyes.org's Arabic
+ translation
+
+2004-03-21 04:35 Thomas Backlund <tmb at mandrake.org>
+
+ * perl-install/share/po/fi.po: fully translated, was 25 fuzzy, 5
+ untranslated
+
+2004-03-20 15:59 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/fa.po: updated Farsi file
+
+2004-03-20 11:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: move draksplash into drakxtools b/c
+ it needs gtk+ (#7807)
+
+2004-03-20 11:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakxtv: fix error message (#9080)
+
+2004-03-20 11:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakxtv: cleanup
+
+2004-03-20 11:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/v4l.pm: sync with 2.6.3-4mdk
+
+2004-03-20 11:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakxtv: fix loged message (thx
+ perl_checko)
+
+2004-03-20 11:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: oops, that should have been 25mdk
+
+2004-03-20 10:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakxtv: fix #3193: - use right device -
+ offer to set the user to config
+
+2004-03-20 10:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakvpn: icon
+
+2004-03-20 10:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/v4l.pm: reorder modules import
+
+2004-03-20 10:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/v4l.pm: (config) read current
+ configuration (Scott Mazur <scott@littlefish.ca>)
+
+2004-03-20 10:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/v4l.pm: share translation
+
+2004-03-20 09:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/v4l.pm: fix setting options for bttv
+ instead of saa7134 (#5612)
+
+2004-03-20 09:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakxtv: fix saa7134 detection (#5612)
+
+2004-03-20 09:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakxtv: testing mode
+
+2004-03-20 09:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakxtv: reorder modules import
+
+2004-03-20 09:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakxtv: fix wiping out /etc/modules.conf
+ (scott@littlefish.ca)
+
+2004-03-20 09:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakxtv: Defaulted canada-cable to NTSC
+ (Scott Mazur (scott@littlefish.ca)
+
+2004-03-20 04:29 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: updated
+
+2004-03-19 23:12 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fr.po, hr.po, hu.po, id.po, is.po, ko.po,
+ lt.po, ltg.po, lv.po, mn.po, ms.po, mt.po, nl.po, nn.po, pt.po,
+ ro.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po,
+ th.po, tr.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_TW.po: updated
+ po files
+
+2004-03-19 22:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ar.po, az.po, be.po, bg.po, br.po, bs.po,
+ ca.po, da.po, de.po, el.po, eo.po, es.po, fa.po, fi.po, fr.po,
+ ga.po, gl.po, he.po, hi.po, hr.po, ltg.po, mn.po, nn.po, pl.po,
+ pt.po, pt_BR.po, sk.po, sq.po, sv.po, ta.po, tg.po, th.po,
+ zh_TW.po: updated po files
+
+2004-03-19 19:05 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: et.po, hi.po: Updated Estonian file;
+ fixed quote in Hindi file
+
+2004-03-19 17:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-03-19 17:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-24mdk
+
+2004-03-19 17:42 Frederic Crozat <fcrozat at mandriva.com>
+
+ * perl-install/share/rpmsrate: Update GNOME devel packages
+
+2004-03-19 17:16 Warly <warly at mandriva.com>
+
+ * perl-install/standalone/drakboot: add Olivier Blin patches to
+ reread the previous configuration
+
+2004-03-19 17:14 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po,
+ nn.po, pl.po, pt.po, pt_BR.po, ro.po, ru.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
+
+2004-03-19 15:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/drakvpn: disambiguated string
+
+2004-03-19 12:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakvpn: add hint for translators
+ (cooker-i18n request)
+
+2004-03-19 12:17 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated
+
+2004-03-19 10:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: - fix _find_imgfile() - cleanup
+
+2004-03-19 10:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: devfs=mount is the default for
+ kernel 2.6 (what about 2.4 ?), so one need devfs=nomount when
+ devfsd is not installed
+
+2004-03-19 10:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: adapt to devfs (?) naming which
+ breaks compatibility (bugzilla #9029)
+
+2004-03-19 10:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: eagle-usb maintainers ask not
+ to fill dns by default because ppp will return better one through
+ peerdns option
+
+2004-03-19 10:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: dnsX were renamed as
+ dnsServerX+1 long time ago and are managed one step earlier
+
+2004-03-19 09:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: (switch) perl_checker fix
+
+2004-03-19 00:21 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/tl.po: updated Filipino file
+
+2004-03-18 21:42 David Baudens <baudens at mandriva.com>
+
+ * perl-install/: Makefile.drakxtools, drakxtools.spec,
+ standalone/icons/localedrake-16.png,
+ standalone/icons/localedrake-32.png,
+ standalone/icons/localedrake-48.png: Add icons for localedrake
+ menu entry
+
+2004-03-18 19:01 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: move the DRIVER part from INSTALL to
+ SYSTEM fix speedtouch-mgm -> mgmt
+
+2004-03-18 18:37 Marco De Vitis <mdv at spin.it>
+
+ * perl-install/share/po/it.po: successivo -> avanti
+
+2004-03-18 17:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/icons/drakups.png: use mdk icon for
+ drakups
+
+2004-03-18 17:26 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Add kdegraphics-common in GRAPHICS
+ section
+
+2004-03-18 15:22 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: fix bad indentation
+
+2004-03-18 14:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: install alsa-utils if needed
+ (#6288)
+
+2004-03-18 12:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix obvious wrong lookup (at
+ install time, we must check installed root fs instead of /)
+
+2004-03-18 12:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: always offer to restart adsl
+ connections
+
+2004-03-18 11:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: only warn about 2.4.x kernel
+ for bewan modem
+
+2004-03-18 11:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: new helper function may_set_icon that
+ takes care of missing wiz_default_up during install
+
+2004-03-18 11:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/dos.pm: not guessing a geometry when
+ default_ok is no big deal
+
+2004-03-18 11:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: only kill pppoa for sagem modem (eg
+ for bewan, we use pppoa plugin for ppp)
+
+2004-03-18 11:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile.config: reput back drakups
+
+2004-03-18 11:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: fix bewan support by providing an
+ ad-how /etc/ppp/options
+
+2004-03-18 11:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install kernel-2.4.x for pci modems
+ whose binary driver isn't ported on 2.6.x
+
+2004-03-18 10:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: only warn about the fact we
+ need 2.4.x kernel when we're under 2.6.x
+
+2004-03-18 05:00 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: Gnome Low-Saxon translations use "nds_DE",
+ putting it on LANGUAGE
+
+2004-03-17 22:34 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/uk.po: updated Ukrainian file
+
+2004-03-17 20:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/mn.po: updated po files
+
+2004-03-17 19:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-24mdk
+
+2004-03-17 19:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/diskdrake: add "diskdrake
+ --change-geometry=<device>=[<cylinders>,]<heads>,<sectors>" to
+ allow forcing the geometry used in the partition table. This
+ allows helping poor Windows booting using old int13 function 2.
+ This should work when Windows has not been resized.
+
+2004-03-17 19:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: do not alter oss<->alsa drivers
+ mapping table (olivier blin, #8501)
+
+2004-03-17 19:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: When current driver doesn't
+ match current sound card (because sound card has been replaced
+ for example), draksound allows to choose the driver between
+ current driver and its alternatives, but does not propose default
+ driver and alternatives for current sound card. So available
+ drivers don't match current sound card (olivier blin, #8501)
+
+2004-03-17 18:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: fix dm restart
+
+2004-03-17 18:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: remove
+ /etc/asound.state *before* restarting sound service
+
+2004-03-17 18:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_gtk.pm: enlarge steps window (no pb since
+ the window is invisible) (bugzilla #8985)
+
+2004-03-17 17:28 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/zh_TW.po: chinese names for countries
+
+2004-03-17 17:24 Warly <warly at mandriva.com>
+
+ * perl-install/share/logo-mandrake.png: community install logo
+
+2004-03-17 16:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-03-17 16:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: roll-back bogus dadou commit
+
+2004-03-17 16:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix pci modem support: -
+ handle manually installed drivers - removed urpmi sources -
+ faster checking for driver presence
+
+2004-03-17 16:15 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/compssUsers: Update
+
+2004-03-17 16:11 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: s/glade/glade2/
+
+2004-03-17 15:53 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/compssUsers: Update
+
+2004-03-17 15:52 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Fix my mistake (forgot to cvs up
+ before commit)
+
+2004-03-17 15:48 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Update
+
+2004-03-17 15:37 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/po/fr.po: Update advertising translations
+
+2004-03-17 14:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/: partition_table.pm, partition_table/dos.pm,
+ partition_table/raw.pm: add
+ set_best_geometry_for_the_partition_table to use the hd geometry
+ instead of the physical geometry returned by the kernel (since
+ for now i can't have bios geometry on 2.6)
+
+2004-03-17 14:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: misc perl_checker cleanup
+
+2004-03-17 14:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: remove debug statements
+
+2004-03-17 14:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix no information for
+ drivers that do not support ethtool ioctl (eg: sk98lin): try to
+ match the device by interface name and driver name (won't work
+ for several cards managed by the same driver)
+
+2004-03-17 12:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/dos.pm: - sector2CHS() now gives
+ sector number starting at 0 - CHS2rawCHS() takes care of giving
+ sector number starting at 1
+
+2004-03-17 12:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (get_eth_cards) if SIOCETHTOOL
+ ioctl is not supported by driver, try to lookup card by driver in
+ devices list (if there's only one physical card managed by this
+ driver)
+
+2004-03-17 10:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: use std banner
+
+2004-03-17 10:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: drakconnect, drakfont, drakups,
+ harddrake2, logdrake: use new $ugtk2::wm_icon for x11 icon
+
+2004-03-17 10:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (_create_dialog) set x11 icon for dialogs
+ too
+
+2004-03-17 10:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (new) fix x11 icon for Gtk2::Plug
+
+2004-03-17 10:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (_find_imgfile) prevent matching
+ subdirectory (eg: harddrake)
+
+2004-03-17 10:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: add agpgart modules to
+ modprobe.preload if needed
+
+2004-03-17 10:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: show module for system
+ bridges if it's not unknown (aka not managed by kernel core)
+
+2004-03-17 10:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: blacklist agp controllers
+ class (they're still visible in the bridges one)
+
+2004-03-17 10:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: split out agp controllers out of
+ bridges
+
+2004-03-17 10:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: do not pass eth interface and user
+ to adsl-start, they're already provided in pppoe.conf (#2004)
+
+2004-03-17 09:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix SmartLink modem managment
+ (#8959)
+
+2004-03-17 08:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: update wanadoo dns according
+ to
+ http://www.wanadoo.fr/bin/frame2.cgi?u=http%3A//assistance.wanadoo.fr/reponse791.asp
+
+2004-03-17 01:22 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/eu.po: updated Basque file
+
+2004-03-17 00:01 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/it.po: updated Italian file
+
+2004-03-16 21:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: fix typo
+
+2004-03-16 20:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: - add $ugtk2::wm_icon (esp. for
+ park-rpmdrake) - cleanup, correct indentation
+
+2004-03-16 17:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: adsl.pm, netconnect.pm: bewan support
+
+2004-03-16 17:36 David Baudens <baudens at mandriva.com>
+
+ * perl-install/standalone/icons/harddrake2/: cd.png, floppy.png,
+ harddisk.png, hw_mouse.png, hw_network.png, hw_printer.png,
+ ide_hd.png, joystick.png, memory.png, multimedia.png,
+ scanner.png, scsi_hd.png, sound.png, tv.png, unknown.png,
+ video.png: Update images
+
+2004-03-16 17:26 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/pixmaps/langs/: lang-gn.png, lang-ky.png,
+ lang-nds.png, lang-ph.png, lang-tk.png: readding images in binary
+ mode
+
+2004-03-16 17:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/pixmaps/langs/: lang-gn.png, lang-ky.png,
+ lang-nds.png, lang-ph.png, lang-tk.png: removed pixmaps to readd
+ them in binary mode
+
+2004-03-16 17:21 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: changed order of LANGUAGE value for
+ Filipino so monolingual windowmanagers can have translated menus
+
+2004-03-16 17:15 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: lang.pm, pixmaps/langs/lang-gn.png,
+ pixmaps/langs/lang-hy.png, pixmaps/langs/lang-ku.png,
+ pixmaps/langs/lang-ky.png, pixmaps/langs/lang-nds.png,
+ pixmaps/langs/lang-ph.png, pixmaps/langs/lang-tk.png,
+ pixmaps/langs/lang-tt.png: updated and added pictures for
+ language selection list. enabled choice for Filipino (we have
+ quite good translations), Low-Saxon and Kyrgyz.
+
+2004-03-16 16:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakclock: fix server lookup (#8846)
+
+2004-03-16 15:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: only show encapsulation
+ parameter for sagem modem
+
+2004-03-16 15:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_conf_backend) fix adsl stop
+ on pppoa links
+
+2004-03-16 15:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: preselect pppoa for bewan too
+
+2004-03-16 15:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: make it clear these checks
+ are only for pci modems
+
+2004-03-16 15:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: pci modem: only take care of
+ selected one
+
+2004-03-16 15:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: wireless-tools is listed twice!
+
+2004-03-16 15:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: speedtouch was listed two times in
+ the old days!
+
+2004-03-16 15:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install speedtouch firmware too
+
+2004-03-16 15:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: automatically install speedtouch for
+ Alcatel USB ADSL modems
+
+2004-03-16 15:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: automatically install eagle-usb for
+ sagem ADSL modems
+
+2004-03-16 15:34 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/compssUsers.server: Add NETWORKING_FILE
+ support for PowerPackPlus
+
+2004-03-16 14:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (new) set x11 icon for non wizard tools
+
+2004-03-16 13:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (new) set default x11 icon
+
+2004-03-16 13:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: (alert_config) fix wizard when
+ logdrake is embedded
+
+2004-03-16 13:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: (alert_config) fix wizard on
+ second run
+
+2004-03-16 13:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: (alert_config) make it a wizard
+ again (that is, with banner, "previous"/"next" buttons and the
+ like)
+
+2004-03-16 13:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: (interactive_mode) better style
+
+2004-03-16 13:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: (interactive_mode, dialog)
+ let's have nice icon in sub dialogs when embedded too
+
+2004-03-16 13:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: (dialog) make subdialogs be
+ transcient for main window when not embedded
+
+2004-03-16 13:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: drakconnect, drakfont, drakups,
+ harddrake2, logdrake: set x11 ico
+
+2004-03-16 13:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/icons/drakups.png: add drakups icon
+ "Copyright (C) 2004 MGE UPS SYSTEMS / Luc Descotils This graphic
+ is free software; you can redistribute it and/or modify it under
+ the terms of the GNU General Public License as published by the
+ Free Software Foundation; either version 2 of the License, or at
+ your option) any later version..."
+
+2004-03-16 13:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (configure_net) do not offer
+ to alter domain name since this is achievable through FQDN
+
+2004-03-16 12:38 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: clean majors introduced into the CVS
+ by mistake
+
+2004-03-16 12:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: choose wether to use
+ supermount is now based on variable SUPERMOUNT in
+ /etc/sysconfig/dynamic
+
+2004-03-16 12:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: warn that we only support
+ kernel 2.4.x for pci modems
+
+2004-03-16 11:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: remove debug statement
+
+2004-03-16 11:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install kernel-2.4.x for internal
+ ISDN devices
+
+2004-03-16 10:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: for ADSL Bewan and ISDN
+ modem, warn that only 2.4.x kernels are supported
+
+2004-03-16 10:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/modem.pm: (ppp_configure) really fix modem
+ symlink (#7967)
+
+2004-03-16 01:46 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: transl.in progress
+
+2004-03-15 22:00 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Fix misnamed
+ inittab\$\$IP=xxx.xxx.xxx.xxx\$\$.
+
+2004-03-15 18:47 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Replace xsane by scanner-gui (allows
+ to install kooka or xsane)
+
+2004-03-15 18:40 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Readd Audacity (needs to be moved
+ from Contrib to Main; it should be installed by default for all
+ products)
+
+2004-03-15 18:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-03-15 17:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (configure_net) enable to
+ alter hostname
+
+2004-03-15 17:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-23mdk
+
+2004-03-15 16:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (configure_net) fix unlisted
+ first dns server
+
+2004-03-15 16:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: always write scripts like in
+ the old days but when there's no cnx
+
+2004-03-15 16:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: fix explanations in mcc that
+ got broken by #8412 speedup
+
+2004-03-15 15:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: skip "start on boot" step for
+ LAN (already managed by network scripts)
+
+2004-03-15 15:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: perl_checker fix
+
+2004-03-15 14:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: write ether conf later on QA
+ request
+
+2004-03-15 14:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not list anymore wireless
+ cards in LAN connection, only in wireless connections
+
+2004-03-15 14:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: orinoco_plx too is a wireless cards
+ driver
+
+2004-03-15 14:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: orinoco_pci is a wireless driver
+
+2004-03-15 13:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix ADSL modems not listed
+ unless one try to manually pick a network card (#8611): prevent
+ module::interactive from offering to pick a module when there's
+ no network cards
+
+2004-03-15 12:03 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakgw: add ppp+ and ippp+ at the
+ interfaces list
+
+2004-03-15 12:01 Florin Grad <florin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: add ppp+ and ippp+ in the
+ interfaces list
+
+2004-03-15 11:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: (write_interface_conf) fix
+ missing quotes around wireless encryption key (#8887)
+
+2004-03-15 10:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (mapIntfToDevice) do not try to
+ match a physical device when SIOCETHTOOL ioctl is not supported
+
+2004-03-15 10:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (configure_net) fix spacing
+ around DNS/domainname settings table
+
+2004-03-15 10:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (configure_net) write back
+ domain name and dns servers
+
+2004-03-15 10:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (configure_net) fix
+ domainname reading
+
+2004-03-15 10:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (configure_net) fix crash on
+ internet access dialog closing
+
+2004-03-15 10:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (configure_net) update
+ connection status in background (#7800)
+
+2004-03-15 09:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: add --old option in order to
+ see old interface
+
+2004-03-15 09:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakclock: make the ntpdate after
+ stopping the ntpd (manu@agat.net, #8141)
+
+2004-03-15 02:49 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: Updated Dutch (nl) translation by
+ Reinout van Schouwen <reinout@cs.vu.nl>
+
+2004-03-14 21:53 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Weekly Arabeyes' Arabic translation.
+
+2004-03-14 21:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ca.po, cy.po, nn.po: updated Welsh and
+ Nynorsk files
+
+2004-03-14 18:54 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: updating
+
+2004-03-14 11:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/fa.po: updated Farsi file
+
+2004-03-14 10:41 Thomas Backlund <tmb at mandrake.org>
+
+ * perl-install/share/po/fi.po: fully translated, was 10 fuzzy, 1
+ untranslated
+
+2004-03-13 22:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2004-03-13 16:29 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cy.po: Updated Welsh file
+
+2004-03-13 11:20 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/fa.po: updated Farsi file
+
+2004-03-13 09:09 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated translation
+
+2004-03-13 04:11 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/scannerdrake: Let scannerdrake install
+ "scanner-gui" instead of "xsane", so that scanning GUI actually
+ used can be determined by the system environment.
+
+2004-03-13 04:00 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/: printerdrake, scannerdrake:
+ "MandrakeSoft" -> "Mandrakesoft", "Mandrake" -> "Mandrakelinux".
+
+2004-03-13 03:57 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Let printerdrake install
+ "scanner-gui" instead of "xsane" when it sets up an HP
+ multi-function device. "MandrakeSoft" -> "Mandrakesoft",
+ "Mandrake" -> "Mandrakelinux".
+
+2004-03-13 02:28 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: uz.po, uz@Latn.po: updated Uzbek files
+
+2004-03-13 00:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ar.po, be.po, bg.po, br.po, ca.po, el.po,
+ eo.po, es.po, eu.po, ga.po, gl.po, he.po, hr.po, hu.po, id.po,
+ is.po, ko.po, lt.po, ltg.po, lv.po, mn.po, ms.po, mt.po, nn.po,
+ sl.po, sq.po, sr.po, sr@Latn.po, ta.po, th.po, tr.po, uk.po,
+ uz.po, uz@Latn.po, zh_CN.po, zh_TW.po: merged some strings from
+ mcc
+
+2004-03-12 22:09 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: small correction
+
+2004-03-12 19:51 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated
+
+2004-03-12 19:06 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Update for PowerPackPlus
+
+2004-03-12 17:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: eagle was renamed as eagle-usb
+
+2004-03-12 17:14 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nb.po: updated Norwegian file
+
+2004-03-12 16:45 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: improved previous change
+
+2004-03-12 16:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (build_notebook) default
+ protocol is dhcp (eg for unconfigured interfaces), thus
+ preventing ip checks faillure on protocol change on other network
+ interfaces
+
+2004-03-12 15:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: always define KDM fonts dependending on
+ encoding (fix for bug #8714)
+
+2004-03-12 14:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (apply) do not write IPADDR,
+ NETMASK and NETWORK fields in ifcfg-ethX when using DHCP
+
+2004-03-12 14:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (apply) factorize interface
+ hash
+
+2004-03-12 13:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (apply) fix crash
+ (is_dynamic_ip expect a hash of network interaces, not a single
+ interface)
+
+2004-03-12 12:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (configure_net) kill useless
+ code
+
+2004-03-12 12:47 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-03-12 12:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: provide a nice way to go back
+ to summary when interface is already configured (#8002)
+
+2004-03-12 11:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix buttons so that they're
+ labeled as cancel/ok instead of previous/next when warning in
+ network installations
+
+2004-03-12 10:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (configure_net) fix layout
+ by using a table
+
+2004-03-12 10:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: remove a few more parameters
+
+2004-03-12 10:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (configure_net) get rid of
+ mask now we've cleaned up parameters
+
+2004-03-12 10:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: only show dns from
+ resolv.conf for now
+
+2004-03-12 10:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (configure_net) remove some
+ parameters according to specs
+
+2004-03-12 10:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (configure_net) sanitize
+ buttons layout (#8637)
+
+2004-03-12 09:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: (advanced_install) "Install"
+ button is sensitive only if there're some fonts in the font list
+
+2004-03-12 09:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-22mdk
+
+2004-03-12 09:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix writing drakconnect
+ config file at install time (#7478)
+
+2004-03-12 08:23 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: removed audacity (in contrib)
+
+2004-03-11 19:35 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Install extra packages when
+ using wizard too. Key transfer in GUI wasn't reporting errors.
+
+2004-03-11 16:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: list yes/no for autologin in a
+ more intuitive way, that is yes is grouped with user and wm pull
+ down menus (robert.vojta@qcm.cz, anthill #390)
+
+2004-03-11 16:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: fix installing locales-XX for
+ lang=nb which needs locales-no (one needs to use provides)
+
+2004-03-11 16:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/do_pkgs.pm: use pkgs::packagesProviding()
+
+2004-03-11 16:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: nice fix for
+ installing locales-XX corresponding the chosen country (using
+ packagesProviding())
+
+2004-03-11 16:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: - add function packagesProviding() - use it
+
+2004-03-11 16:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: - always generate a precise entry
+ using the precise version - remove the linux-2.4 or linux-2.6
+ entries which don't work together with the precise version entry
+ - still have the "linux" entry
+
+2004-03-11 15:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: tentatively fix lilo with lvm on /
+
+2004-03-11 15:18 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/tl.po: updated Filipino file
+
+2004-03-11 14:03 Florin Grad <florin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: add some tests for the
+ REDIRECT squid rules
+
+2004-03-11 14:00 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakgw: fix the disable, enable functions
+
+2004-03-11 13:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakvpn: remove debug statement
+
+2004-03-11 12:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: workaround code trying
+ to install locales-nb (bugzilla #8287)
+
+2004-03-11 12:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: disallow lvm on / with no /boot until
+ lilo handles it
+
+2004-03-11 12:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: catch cdie's in auto_install
+
+2004-03-11 12:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakvpn: fix previous button on first
+ step (robert.vojta@qcm.cz, anthill #387)
+
+2004-03-11 12:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: (text_append) fix second run
+ (on next filling, we shall not create tags with name of existing
+ ones)
+
+2004-03-11 12:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: (parse_file) fix search :-)
+
+2004-03-11 12:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakgw: fix previous button on first step
+ (robert.vojta@qcm.cz, anthill #386)
+
+2004-03-11 11:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: (log_output) take a color and a
+ font as parameters now
+
+ (log_output__real) splited from log_output(), insert text into
+ textview at once
+
+ (*) use new framework to speedup (#8412)
+
+2004-03-11 11:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: (text_append) introduce it,
+ forked from gtktext_insert()
+
+ unlike the later, it create named tags, thus reducing tagtable
+ size from 30000+ tags to 10-20, thus speedup logdrake in quite a
+ big way.
+
+ it should probably replace gtktext_insert in mdk10.1 since all
+ gtktext_insert users really have quite a few tags (eg: 1 for
+ harddrake2 and rpmdrake)
+
+2004-03-11 11:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (gtktext_insert) if we want anonymous
+ tags, just create anonymous tags instead of creating fake tag
+ names that we just discard after (rand is not guarranted to not
+ return the same number twice...)
+
+2004-03-11 11:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: fix in strict mode
+
+2004-03-11 10:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: (parse_file) speed up it by 20%
+ (#8412) but logcolorize is the top one in profiles
+
+2004-03-11 09:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: workaround anthil bug #369
+
+2004-03-11 08:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * mdk-stage1/probing.c: fix eth[67] detection (gc)
+
+2004-03-11 00:18 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po,
+ nn.po, pl.po, pt.po, pt_BR.po, ro.po, ru.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
+
+2004-03-10 19:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: any.pm, bootloader.pm, crypto.pm, help.pm,
+ install_interactive.pm, install_messages.pm,
+ install_steps_gtk.pm, install_steps_interactive.pm,
+ install_steps_newt.pm, network/drakfirewall.pm,
+ network/netconnect.pm, printer/printerdrake.pm,
+ share/advertising/dis-01.pl, share/advertising/dis-10.pl,
+ share/advertising/dwd-01.pl, share/advertising/dwd-02.pl,
+ share/advertising/dwd-03.pl, share/advertising/dwd-04.pl,
+ share/advertising/dwd-05.pl, share/advertising/dwd-07.pl,
+ share/advertising/dwd-09.pl, share/advertising/ppp-01.pl,
+ share/advertising/ppp-02.pl, share/advertising/ppp-03.pl,
+ share/advertising/ppp-04.pl, share/advertising/ppp-10.pl,
+ share/advertising/pwp-01.pl, share/advertising/pwp-03.pl,
+ share/advertising/pwp-04.pl, share/advertising/pwp-09.pl,
+ standalone/printerdrake, standalone/scannerdrake: spell
+ Mandrakelinux in one word
+
+2004-03-10 19:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, help-de.pot, help-es.pot, help-fr.pot, help-it.pot,
+ help-ru.pot, help-zh_CN.pot, hi.po, hr.po, hu.po, id.po, is.po,
+ it.po, ja.po, ko.po, lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po,
+ mt.po, nb.po, nl.po, nn.po, pl.po, pt.po, pt_BR.po, ro.po, ru.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_TW.po: spell Mandrakelinux in one word
+
+2004-03-10 19:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: (row_setting_dialog) sanitize
+ spacing in frames
+
+2004-03-10 18:24 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: list jp106 keyboard as latin only to
+ avoid the misleading screen about language switching (japanese
+ input doesn't use that method)
+
+2004-03-10 16:58 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: update
+
+2004-03-10 16:50 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/tl.po: Updated Filipino file
+
+2004-03-10 16:06 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakgw: fix the 8669 bug
+
+2004-03-10 14:55 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: update
+
+2004-03-10 11:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * mdk-stage1/probing.c: (get_net_devices) increase max number of
+ detectable net cards from 6 to 10
+
+2004-03-09 19:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: respect upcase letters
+
+2004-03-09 18:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix isdn config step
+
+2004-03-09 18:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: really, really fix ISDN cards
+ detection :-(
+
+2004-03-09 18:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: really adapt to new
+ network::isdn::isdn_detect_backend() API
+
+2004-03-09 17:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn.pm: (read_providers_backend) add
+ prototype in order to please lord perl_checker
+
+2004-03-09 17:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: isdn config step: enable to
+ alter defined but empty fields
+
+2004-03-09 17:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix parameters reading/writin
+ in isdn config step: take parameters from isdn data structure,
+ not cnx one
+
+2004-03-09 17:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix isdn config step by using
+ runtime references
+
+2004-03-09 17:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: special case to handle imm & ppa on
+ kernel 2.6: - need parport_pc - modules insmod always succeed, so
+ need to check /proc/sys/dev/parport/parport0/devices/{imm,ppa}
+
+2004-03-09 16:50 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Reverse trivial translation
+ typo. Change the_time() usage.
+
+2004-03-09 16:28 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Made more clear choices in
+ the first-time dialog of printerdrake.
+
+2004-03-09 16:09 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Fix breakage introduced in
+ config rewrite. All wizard methods should end at config summary.
+
+2004-03-09 16:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/keyboard.pm: keyboard::load() causes some errors on
+ kernel 2.4, ignoring them
+
+2004-03-09 15:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup: fix crash in wizard (#8654)
+ (setVarsInSh use output instead of output_p...)
+
+2004-03-09 15:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: catch exception (bugzilla #8726)
+
+2004-03-09 14:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup: (the_time) simplify
+
+2004-03-09 14:02 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-03-09 11:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: fix boot_conf_path usage
+
+2004-03-09 11:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: rename thm_conf_path as
+ boot_conf_path to prevent confusion with thm_path
+
+2004-03-09 10:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: (write_boot_thm) simplify
+ through mkdir_p()
+
+2004-03-09 10:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: misc perl_checker cleanups
+
+2004-03-09 10:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: fix config file path
+ (directory is now named config, not cfg)
+
+2004-03-09 02:01 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Support for plain tar. Deal
+ with mixture of formats on restore. (#8676) Fix issue with first
+ incremental pass not using base as comparison. Rework most file
+ selections to use the same sub, drop other subs.
+
+2004-03-08 22:31 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po,
+ nn.po, pl.po, pt.po, pt_BR.po, ro.po, ru.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
+
+2004-03-08 18:12 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Fix to prevent saving host
+ passwd when user requests not to (#8700).
+
+2004-03-08 17:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: fix typo
+
+2004-03-08 16:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: in
+ generate_automatic_stage1_params(): - handle FTP via HTTP proxy
+ (bugzilla #8699) - cleanup using a different data-structure
+
+2004-03-08 16:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: a missing module is now an error, that
+ way it won't be in scsi_hostadapters. In load_category(),
+ exception is caught, so no pb when using load_category(). But
+ beware, this may break!
+
+2004-03-08 16:12 Pixel <pixel at mandriva.com>
+
+ * kernel/modules.pl: - update check() for 2.6 - categorize missing
+ modules - cleanup
+
+2004-03-08 15:54 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: UI coherency (#8675).
+
+2004-03-08 15:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: do_pkgs.pm, network/netconnect.pm: rename
+ ensure_is_installed_if_availlable( as
+ ensure_is_installed_if_available()
+
+2004-03-08 15:42 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Fix some missing
+ configuration options (#8654).
+
+2004-03-08 15:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: install unicorn package for
+ bewan modems
+
+2004-03-08 14:47 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Doing a sync with Arabeyes.org's
+ CVS...
+
+ There should be no stat differences anymore.
+
+2004-03-08 12:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix variable interpolation in
+ strings
+
+2004-03-08 11:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: /proc/partitions parsing was broken for
+ scsi cdroms using non-devfs names, and our 2.6 doesn't use devfs
+ names in /proc/partitions... :'-( (bugzilla #8641)
+
+2004-03-08 11:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/devices.pm: nicer debug error message
+
+2004-03-08 11:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::WrappedLabel::new) fix unusing
+ label
+
+2004-03-08 11:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getBewan) fix bewan modem
+ detection
+
+2004-03-08 10:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: (make_boot_frame) fix crash
+ on color switch
+
+2004-03-08 10:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: (mk_frame) - workaround
+ horrible packing by using a table instead of a vbox - do packing
+ of resulted table outside mk_frame() which is much saner
+
+2004-03-08 10:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: fix spacing around commas
+ (sanitizing)
+
+2004-03-08 10:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: gc prefers "obj->method"
+ rather than "method obj" call style
+
+2004-03-08 10:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: use option menu for
+ resolutions list
+
+2004-03-08 10:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: (mk_frame) enable to use
+ either combo boxes or option menus for lists
+
+2004-03-08 10:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: (mk_frame) fix combo boxes
+ filling
+
+2004-03-08 10:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: (which_res_exist)
+ unjonathan-ize
+
+2004-03-08 10:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: (show_prev) only redraw
+ needed part, not whole image
+
+2004-03-08 10:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: (show_prev) fix crash on
+ image drawing
+
+2004-03-08 10:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: (show_prev) fix crash on
+ image scaling
+
+2004-03-08 10:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: fix crash on "preview" button
+
+2004-03-08 10:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: (get_this_thm_res_conf) add
+ prototype to help perl_checker
+
+2004-03-08 10:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: kill unused variables
+
+2004-03-08 10:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: kill perl4 function call
+ style
+
+2004-03-08 10:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: misc perl_checker cleanups
+
+2004-03-08 10:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix missing upercase first letter
+
+2004-03-08 10:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: isdn.pm, netconnect.pm: isdn_read_config()
+ alter its argument, thus there's no need in returning it (which
+ may induce developer in error by believing argument is not
+ overwritten...)
+
+ standalone drakconnect already discard returned value anyway...
+
+2004-03-08 10:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn.pm: kill isdn_get_info() and
+ isdn_get_list() (they were unused since quite a few releases :-()
+
+2004-03-08 10:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn.pm: (isdn_get_cards) introduce it to
+ build a tree bus|card for isdn wizard
+
+2004-03-08 10:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn.pm: (get_info_providers_backend)
+ prevent faillure as soon as translaters catch up
+
+2004-03-08 10:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn.pm: export isdn_read_config()
+
+2004-03-08 10:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn.pm: kill isdn_ask(), isdn_ask_info()
+ and isdn_ask_protocol() since they were merged into wizard (aka
+ ported to new wizard layer)
+
+2004-03-08 09:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: port old ISDN wizard upon new
+ wizard layer
+
+2004-03-08 09:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn_consts.pm: - add "|" separator - remove
+ bus from description (the user has already selected the bus type)
+
+2004-03-08 09:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn.pm: (isdn_get_cards_by_type) splited
+ out of old isdn_ask() func
+
+2004-03-08 09:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn.pm: (get_info_providers_backend) drop
+ file argument and do ISDN db lookup in place
+
+2004-03-08 09:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: isdn.pm, tools.pm:
+ (read_providers_backend) move it from network::tools to
+ network::isdn
+
+2004-03-08 09:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po,
+ nn.po, pl.po, pt.po, pt_BR.po, ro.po, ru.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: be
+ aware of string change due to bewan support
+
+2004-03-08 09:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: adapt to new
+ network::isdn::isdn_detect_backend() API
+
+2004-03-08 09:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn.pm: (isdn_detect_backend) enhance
+ detection: just return a list of devices
+
+2004-03-08 09:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix first_modem() call
+
+2004-03-08 09:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: indent
+
+2004-03-08 09:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: simplify speedtouch firmware
+ installation through newly introduced
+ do_pkg::ensure_is_installed_if_availlable()
+
+2004-03-08 09:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/do_pkgs.pm: (ensure_is_installed_if_availlable)
+ introduce it in order to check if we need to install a package,
+ then install it if it's availlable (eg: for binary drivers not
+ availlable in download edition)
+
+2004-03-08 09:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: wizard: be aware of bewan
+ modems detection
+
+2004-03-08 09:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_detect) detect bewan ADSL
+ modems
+
+2004-03-08 09:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: center labels like before
+
+2004-03-08 09:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::WrappedLabel::new) enable to alter
+ default alignment
+
+2004-03-08 09:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-03-08 09:31 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-03-07 22:27 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates soft/ftw/po/da.po
+ gi/perl-install/share/po/da.po
+
+2004-03-07 14:53 Thomas Backlund <tmb at mandrake.org>
+
+ * perl-install/share/po/fi.po: finnish translations at 100%
+ again...
+
+2004-03-07 12:58 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-03-07 11:54 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ar.po: updated po file
+
+2004-03-07 05:56 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Committing Arabeyes.org's Arabic
+ translation of the week...
+
+2004-03-06 15:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po,
+ nn.po, pl.po, pt.po, pt_BR.po, ro.po, ru.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
+
+2004-03-06 06:06 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: update
+
+2004-03-05 13:05 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-03-05 11:20 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates
+ gi/perl-install/share/po/da.po
+
+2004-03-05 10:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: replacing automatic=method:disk with
+ $param instead of adding $param (since $param already contains
+ automatic=met:disk)
+
+2004-03-05 10:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: no entry in fstab for zips (now cleanly done
+ by hotplug)
+
+2004-03-05 10:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: fix warning
+
+2004-03-05 09:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: (write_resolv_conf) only remove
+ /etc/resolv.conf if it's really a link (prevent no resolv.conf
+ rewriting when it was empty eg b/c link was dead)
+
+2004-03-05 09:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: share/po/DrakX.pot, share/po/af.po,
+ share/po/ar.po, standalone/drakTermServ, share/po/az.po,
+ share/po/be.po, share/po/bg.po, share/po/br.po, share/po/bs.po,
+ share/po/ca.po, share/po/cs.po, share/po/cy.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/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/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/pl.po, share/po/pt.po,
+ share/po/pt_BR.po, share/po/ro.po, share/po/ru.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
+
+2004-03-05 04:11 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: cups.pm, printerdrake.pm: Let URIs listed
+ by "lpinfo -v" be shown in the dialog for entering a URI
+ manually.
+
+2004-03-04 23:42 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates
+ gi/perl-install/share/po/da.po
+
+2004-03-04 23:25 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: Updates
+ gi/perl-install/share/po/da.po
+
+2004-03-04 22:07 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: Updates
+ gi/perl-install/share/po/da.po
+
+2004-03-04 21:54 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ca.po, et.po, nn.po: updated Estonian
+ file
+
+2004-03-04 20:24 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: Unfuzzying
+
+2004-03-04 18:05 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nb.po: updated Norwegian file
+
+2004-03-04 17:48 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/tl.po: updated po file
+
+2004-03-04 17:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: (wait_msg) show up some
+ translated title
+
+2004-03-04 15:45 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po,
+ nn.po, pl.po, pt.po, pt_BR.po, ro.po, ru.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
+
+2004-03-04 15:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: enable exception managment even at install
+ time (installer set $::no_ugtk_init)
+
+2004-03-04 14:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix crash on modem
+ configuration in installer (standalone drakconnect didn't had the
+ bug because it has already loaded the network::modem package at
+ this stage)
+
+2004-03-04 14:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: oops, fix commit
+
+2004-03-04 14:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps.pm,
+ install_steps_interactive.pm: fix & cleanup generating replay &
+ auto_install images (thanks to David Eastcott)
+
+2004-03-04 13:55 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/init.c: unmounting /sys is not needed (useful to have
+ one less line displayed after "unmounting filesystems...")
+
+2004-03-04 12:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakgw: reput back strict pragma
+
+2004-03-04 12:03 Florin Grad <florin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: use the name of the network
+ interface instead of the label
+
+2004-03-04 11:50 Florin Grad <florin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: remove an obsolete comparison
+ in the read function
+
+2004-03-04 11:43 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakgw: really enable the proxy squid,
+ fix the proxy REDIRECT shorewall rule, fis the shorewall
+ interfaces configuration
+
+2004-03-04 11:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakgw: list network card name rather
+ than just ethX in device list
+
+2004-03-04 10:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_steps.pm: (hasNetwork) do not refuse to up
+ the network when in dhcp (bad oem patch)
+
+2004-03-04 01:29 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: Updated Dutch (nl) translation by
+ Reinout van Schouwen <reinout@cs.vu.nl>
+
+2004-03-04 01:25 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Don't destroy "fat" client
+ inittab.
+
+2004-03-04 00:48 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Default kernel version, add
+ gdm user if needed, autologin warning. Copy server X keyboard
+ config to client. Default thin client setup. Change banner
+ method as other drak tools.
+
+2004-03-04 00:23 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: Updated Dutch (nl) translation by
+ Reinout van Schouwen <reinout@cs.vu.nl>
+
+2004-03-03 20:58 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: 2 entries
+
+2004-03-03 18:27 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: et.po, is.po, nn.po: updated pot files
+
+2004-03-03 16:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-21mdk
+
+2004-03-03 16:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: add vpi/vci parameters for
+ australia ISPs (#5056)
+
+2004-03-03 15:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: move set_loop() from formatMount_part to
+ real_format_part to fix Format with encrypted files/devices
+
+2004-03-03 15:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/: devices.pm, fs.pm: one now need cryptoloop and aes
+ when using encryption (kernel 2.6)
+
+2004-03-03 14:32 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm: remove sata_sil (broken in kernel)
+
+2004-03-03 14:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-20mdk
+
+2004-03-03 13:30 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm: add sata_sil (bugzilla #8579)
+
+2004-03-03 13:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: mount /sys in case it is useful (and it
+ is for get_usb_storage_info_26())
+
+2004-03-03 13:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: sysfs now exists!
+
+2004-03-03 12:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: fix get_usb_storage_info() on
+ kernel 2.6
+
+2004-03-03 12:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: -
+ device_name_to_entry() will not fail anymore so that removing a
+ device works - log calls to drakupdate_fstab - use "find" instead
+ of "grep" where possible
+
+2004-03-03 10:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/crypto.pm: - community updates are not in a
+ per-version directory either - cooker & community urls do contain
+ .../RPMS at the end whereas updates directory do not, handle this
+
+2004-03-03 10:09 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: tell to have a look at
+ http://qa.mandrakesoft.com/hd_grub.cgi
+
+2004-03-03 09:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: hide dns settings by default
+ when using dhcp
+
+2004-03-03 01:48 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Use preferred conf file
+ read/write method. More code reduction/cleaning.
+
+2004-03-03 01:19 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: If an HP multi-function
+ device was configured manually, extract the model name from the
+ HPOJ device entry name.
+
+2004-03-03 01:18 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: Let HPOJ device entry be created
+ with the correct printer model name.
+
+2004-03-03 00:53 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: Fixed HPOJ configuration when
+ manually setting up a device.
+
+2004-03-02 21:54 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated
+
+2004-03-02 20:13 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: removed lib in PRINTER automatically
+ included via dependencies add major to libsnmp and libsane-hpoj
+ because there are not required by any packages and clean_rpmsrate
+ does not update lib only (only -devel)
+
+2004-03-02 18:28 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: updating
+
+2004-03-02 16:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-19mdk: last but not least
+
+2004-03-02 16:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (setupBootloader__general) fix wizard title
+ now that drakboot --boot is a wizard like tool
+
+2004-03-02 16:51 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Sometimes option default
+ settings in the printer options dialog were missing (e. g.
+ "Dithering Pixels Per Inch" in "pcl3" driver). Fixed.
+
+2004-03-02 16:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: bump version number
+
+2004-03-02 16:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn.pm: fix doble ISDN detection (#6535)
+
+2004-03-02 16:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, standalone/drakboot: drakboot --boot is
+ now a wizard
+
+2004-03-02 16:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/crypto.pm: cooker updates are not in a per-version
+ directory
+
+2004-03-02 16:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-19mdk
+
+2004-03-02 16:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: small fix when clicking on an
+ empty tree (when allow_empty_list)
+
+2004-03-02 16:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: type "ext2:vfat" must not
+ be the same as 0
+
+2004-03-02 15:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/modem.pm: fix modem symlink (#7967)
+
+2004-03-02 15:42 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nb.po: updated Norwegian file
+
+2004-03-02 14:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-18mdk
+
+2004-03-02 14:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-03-02 14:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po,
+ nn.po, pl.po, pt.po, pt_BR.po, ro.po, ru.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
+
+2004-03-02 14:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: (read) default to lilo if grub config
+ file isn't there (workaround buggy detectloader only checking
+ MBR)
+
+2004-03-02 14:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: sync dhcp client with ifup
+ one
+
+2004-03-02 14:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: preselect first availlable
+ dhcp client
+
+2004-03-02 14:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: bugzilla #8133 says "VT8751
+ [ProSavageDDR P4M266] VGA Controller" (0x5333, 0x8d04) has no pb
+ with graphical lilo. So only keeping the restriction for (0x5333,
+ 0x8d03), hoping that's what fpons wanted.
+
+2004-03-02 14:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: stricter pci modem matching
+ (purely cosmetic but sanity is always good)
+
+2004-03-02 14:26 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/network/shorewall.pm: rewrote string to avoid
+ duplication
+
+2004-03-02 14:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix pci modem type matching
+
+2004-03-02 13:56 Thomas Backlund <tmb at mandrake.org>
+
+ * perl-install/share/po/fi.po: Finnish tranlsation 100% again
+
+2004-03-02 13:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: better error message on exceptions
+
+2004-03-02 13:05 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/tl.po: updated Filipino file
+
+2004-03-02 12:26 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po,
+ nn.po, pl.po, pt.po, pt_BR.po, ro.po, ru.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
+
+2004-03-02 11:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: if the default bootloader entry is
+ invalid, choose another one
+
+2004-03-02 11:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_gtk.pm: fix potential error
+
+2004-03-02 11:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_gtk.pm, share/list: add SecurityPolicy to
+ remove "error opening security policy file" warning
+
+2004-03-02 09:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-17mdk
+
+2004-03-02 09:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: fix wizard icon
+
+2004-03-02 09:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: fix icon name change
+
+2004-03-02 01:36 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: Updated Dutch (nl) translation by
+ Reinout van Schouwen <reinout@cs.vu.nl>
+
+2004-03-01 20:56 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated translation
+
+2004-03-01 20:50 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: nb.po, nn.po, uz.po, uz@Latn.po: updated
+ Norwegian and Uzbek files
+
+2004-03-01 16:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-16mdk
+
+2004-03-01 15:57 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Fixed bug #8483: No
+ "ptal:/..." in manual device URI list.
+
+2004-03-01 15:47 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: scanner.pm, standalone/scannerdrake: Fixed bug
+ #7242: Firmware was not found by "gt68xx" SANE backend.
+
+2004-03-01 15:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: remove existing xxx=ide-scsi on
+ upgrades
+
+2004-03-01 15:08 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/gimp.pm: Do not configure the GIMP-Print
+ plug-in on more than 50 users (bug #6423).
+
+2004-03-01 14:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_steps.pm: (upNetwork) log up try and
+ faillures
+
+2004-03-01 14:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: fix typo
+
+2004-03-01 14:05 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: Fixed bug of installer crashing
+ when an HP multi-function device is detected and set up.
+
+2004-03-01 13:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getBewan) fix detection
+
+2004-03-01 13:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: perl_checker cleanups
+
+2004-03-01 12:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: use "default.png" instead of (missing)
+ "man.png" which resulted to defaulting to parrot (ic-bird.png)
+
+2004-03-01 12:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/icons/harddrake2/: isdn.png,
+ keyboard.png, modem.png, tape.png, webcam.png: update
+
+2004-03-01 12:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix bootproto filling
+ (#8498)
+
+2004-03-01 11:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: simplify
+
+2004-03-01 11:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/: crypto.pm, install_steps_interactive.pm: do not
+ use $o in crypto.pm, pass {distro_type} to mirrors() and
+ bestMirror() instead
+
+2004-03-01 11:14 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/pt_BR.po: updated Brazilian file
+
+2004-03-01 10:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: we don't need .pod files during install
+ (but why aren't glib & gtk files not listed in share/list ??)
+
+2004-03-01 10:40 Pixel <pixel at mandriva.com>
+
+ * rescue/list, tools/Makefile: adapt to perl packages rebuilt
+
+2004-03-01 10:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-15mdk
+
+2004-03-01 09:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-03-01 09:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: typo fix
+
+2004-03-01 09:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: sanitize main explanation text
+ (resizable, weight, margin, ...)
+
+2004-03-01 09:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: prevent pull-down menus to fill
+ availlable space in packtables
+
+2004-03-01 09:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: wrap and left align main options
+ labels
+
+2004-03-01 09:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: do not left align main
+ explanation text
+
+2004-03-01 09:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_packtable) wrap labels by default
+
+2004-03-01 09:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::WrappedLabel::new) left align
+ labels by default
+
+2004-03-01 09:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: do not crash when
+ detector failled (eg: when mouse detection failled because of
+ unhandled exception on module exception b/c of unresolved
+ symbolds b/c of gcc-3.4)
+
+2004-03-01 08:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix item description (#8507)
+
+2004-03-01 04:36 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: Removed spurious quotes ('"') from
+ HPOJ config file.
+
+2004-03-01 04:25 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Support for new HP
+ multi-function devices and for special needs of Lexmark X125
+ printer.
+
+2004-03-01 00:05 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: Updated Dutch (nl) translation
+ (small change to test)
+
+2004-02-29 23:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nb.po: updated Norwegian file
+
+2004-02-29 21:02 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ar.po: updated po file
+
+2004-02-29 14:23 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Committing Arabeyes.org's Arabic
+ translation for the past week :-)
+
+2004-02-29 01:32 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: updated
+
+2004-02-28 20:10 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/hi.po: updated Hindi po file
+
+2004-02-28 18:35 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/bs.po: updated Bosnian file
+
+2004-02-28 15:59 Guillaume Cottenceau
+
+ * perl-install/lang.pm: load_mo: first perform a lookup on mo's for
+ all possible langs, will prevent from downloading each time
+ another time the mo file (fr_FR comes first, is not here,
+ everything including fr gets removed, fr_FR is non-existent, and
+ then fr is downloaded again)
+
+2004-02-28 15:36 Guillaume Cottenceau
+
+ * tools/make_mdkinst_stage2: add a few more inodes to the second
+ stage ramdisk, got bitten by a sucking no space left on device :/
+ will also print available inodes when creating ramdisk so that we
+ can see if our computing was quite good
+
+2004-02-28 15:29 Guillaume Cottenceau
+
+ * perl-install/install_any.pm: log reason why getAndSaveFile can't
+ opening dest file for writing
+
+2004-02-28 13:22 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: it.po, tl.po: Updated Italian and
+ Filipino files
+
+2004-02-28 12:04 Guillaume Cottenceau
+
+ * perl-install/share/list: rpmtools and perl-URPM have been rebuilt
+ for perl 5.8.3
+
+2004-02-27 22:26 Thomas Backlund <tmb at mandrake.org>
+
+ * perl-install/share/po/fi.po: fully translated again...
+
+2004-02-27 20:57 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nb.po: updated Norwegian file
+
+2004-02-27 19:55 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: Try to have some find of better
+ handling for PRINTER flag
+
+2004-02-27 19:17 Warly <warly at mandriva.com>
+
+ * perl-install/crypto.pm: add $o in global vars.
+
+2004-02-27 18:34 Warly <warly at mandriva.com>
+
+ * perl-install/: crypto.pm, install2.pm: add distro_type variable
+ to select correct updates mirror type
+
+2004-02-27 18:17 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: unfuzzying
+
+2004-02-27 17:17 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: update
+
+2004-02-27 17:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po,
+ nn.po, pl.po, pt.po, pt_BR.po, ro.po, ru.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
+
+2004-02-27 16:48 Florin Grad <florin at mandriva.com>
+
+ * perl-install/network/: drakfirewall.pm, shorewall.pm: remove the
+ masq zone and add policies, rules only if there is an interface
+ in loc
+
+2004-02-27 16:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: note that isdn configuration
+ has not yet be ported upon new wizard layer
+
+2004-02-27 16:00 Guillaume Cottenceau
+
+ * mdk-stage1/disk.c: when in automatic=disk mode but no partition
+ is given, fall back on non automatic mode evidently
+
+2004-02-27 15:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-14mdk
+
+2004-02-27 15:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: (in_ifconfig) better check
+ ifconfig is executable before running it (-e is not enough)
+
+2004-02-27 15:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix crash when modem was not
+ found
+
+2004-02-27 15:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: a few new translated strings
+
+2004-02-27 15:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakvpn: translate some fields
+
+2004-02-27 14:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: typo fix
+
+2004-02-27 14:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-02-27 14:10 Thomas Backlund <tmb at mandrake.org>
+
+ * perl-install/share/po/fi.po: fully translated again
+
+2004-02-27 14:05 David Baudens <baudens at mandriva.com>
+
+ * perl-install/: pixmaps/about-printerdrake.png, pixmaps/about.png,
+ standalone/printerdrake: Better layout for PrinterDrake about
+ dialog box
+
+2004-02-27 12:44 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-02-27 12:17 David Baudens <baudens at mandriva.com>
+
+ * perl-install/pixmaps/refresh.png: Udpate icon to not display a
+ cuted icon
+
+2004-02-27 11:58 Guillaume Cottenceau
+
+ * perl-install/share/po/fr.po: update
+
+2004-02-27 11:07 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: af.po, et.po: updated Afrikaans and
+ Estonian files
+
+2004-02-27 09:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (set_back_pixmap) export it
+
+2004-02-27 02:24 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Fix tape backup/restore
+ (#8284)
+
+2004-02-27 01:08 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po,
+ nn.po, pl.po, pt.po, pt_BR.po, ro.po, ru.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 po files
+
+2004-02-26 21:10 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated translation
+
+2004-02-26 19:24 Warly <warly at mandriva.com>
+
+ * perl-install/pkgs.pm: We need the PRINTER flag
+
+2004-02-26 17:38 Guillaume Cottenceau
+
+ * perl-install/: install_any.pm, standalone/drakautoinst: support
+ two-floppies boot style for replay_install disk as well (not nice
+ at all..)
+
+2004-02-26 17:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: remove bogus empty line
+
+2004-02-26 17:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: update 10-13mdk changelog
+
+2004-02-26 17:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-13mdk
+
+2004-02-26 17:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: - never delete up/down
+ scripts - only write internet service if start at boot requested
+
+2004-02-26 17:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::Banner::new) add o_otions ref hash
+ parameter, thus enabling to override text position (eg: for mcc
+ about dialog)
+
+2004-02-26 17:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (set_back_pixmap) split it out of
+ Gtk2::Banner::set_pixmap
+
+2004-02-26 15:42 Guillaume Cottenceau
+
+ * perl-install/install_any.pm: hd.img doesn't exist anymore, using
+ hd_grub.img
+
+2004-02-26 15:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::Banner::new) create only *one*
+ expose event handler
+
+2004-02-26 15:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::Banner::set_pixmap) stop expose
+ event propagation so that shadows do not accumulate (thus
+ resulting in darker alpha-channel)
+
+2004-02-26 12:08 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: ask_browse_tree_info_given_widgets: allow
+ for an initial selection if necessary (through toggle_nodes)
+
+2004-02-26 11:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-12mdk
+
+2004-02-26 11:19 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: he.po, tl.po: Added Filipino file;
+ updated Hebrew file
+
+2004-02-26 11:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_conf_backend) install needed
+ packages
+
+2004-02-26 10:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: skip apply_setting step for
+ now since anyway we've already written most config files... (btw,
+ now installer also write cnx type as side effect)
+
+2004-02-26 10:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: reverse debug stuff that
+ should never have been commited
+
+2004-02-26 10:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: typo fix: only write ether
+ config for lan...
+
+2004-02-26 04:10 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: data.pm, main.pm: Fixes for HPOJ setup
+ during installation.
+
+2004-02-26 00:45 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: defined GTK_IM_MODULE values for CJK
+ languages; so xim is used by default for languages for which we
+ don't ship good enough native gtk2 input methods.
+
+2004-02-25 22:11 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Really filter symlinked
+ kernels. nohup the dm restart.
+
+2004-02-25 21:15 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Don't let any kernel
+ symlinks be visible for making NBIs.
+
+2004-02-25 20:53 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Use ATAPI:/dev/hdX for both
+ 2.4/2.6 compatibility.
+
+2004-02-25 18:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: (harddrake-ui package) requires
+ sane-backends so that scanner detection works smoothly (#8305)
+
+2004-02-25 17:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-11mdk
+
+2004-02-25 17:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: when sound card is
+ added/removed, delete current sound levels so that sound service
+ reset it to sg sane
+
+2004-02-25 17:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: look at sound cards changes on
+ bootstrapping
+
+2004-02-25 17:07 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/compssUsers.server: compssUsers for 10.0
+ PowerPackPlus
+
+2004-02-25 16:59 Guillaume Cottenceau
+
+ * mdk-stage1/rescue-gui.c: give us more chance to get bootloader
+ write actually commited to disk before reboot
+
+2004-02-25 16:44 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/he.po: updated Hebrew file
+
+2004-02-25 16:24 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/: compssUsers, compssUsers.powerpack: Don't
+ install Webmin by default in Download and PowerPack
+
+2004-02-25 15:51 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/compssUsers.powerpack: compssUsers for 10.0
+ PowerPack
+
+2004-02-25 15:35 Erwan Velu <erwan at mandriva.com>
+
+ * mdk-stage1/disk.c: Patch from gc to allow booting a MandrakeMove
+ on a Harddrive using the automatic settings.
+
+2004-02-25 15:33 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/compssUsers: compssUsers for 10.0 Download
+
+2004-02-25 13:00 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-02-25 10:26 Warly <warly at mandriva.com>
+
+ * perl-install/pkgs.pm: revert my suckinessed / added to prefix
+
+2004-02-25 09:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm, perl-install/harddrake/data.pm: handle
+ webcams managed by pwc driver
+
+2004-02-25 09:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-10mdk
+
+2004-02-25 09:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-02-25 04:41 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: update
+
+2004-02-25 01:11 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix forgotten $::prefix
+ (could I say typo fix ?)
+
+2004-02-25 01:09 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/modem.pm: - allow writting to another kppprc
+ file - replace new kppp option values
+
+2004-02-25 01:07 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - RTC Modem page shown and
+ pretty okayish - use '/root/.kde/share/config/kppprc' for any
+ local change
+
+2004-02-25 00:43 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Rework CD recording for ATA
+ device setup.
+
+2004-02-24 22:26 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: some more unfuzzyin
+
+2004-02-24 22:00 Thomas Backlund <tmb at mandrake.org>
+
+ * perl-install/share/po/fi.po: 100% translated, was 54 fuzzy, 49
+ untranslated
+
+2004-02-24 21:14 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2004-02-24 20:46 Warly <warly at mandriva.com>
+
+ * perl-install/share/: compssUsers, compssUsers.desktop,
+ compssUsers.server, rpmsrate: Separate printing-related packages
+ from INSTALL to create a new separated PRINTER group and
+ pre-select them if OFFICE compssUser group is selected
+
+2004-02-24 20:40 Warly <warly at mandriva.com>
+
+ * perl-install/pkgs.pm: add PRINTER alongside with INSTALL not to
+ duplicate printer related packages into OFFICE
+
+2004-02-24 19:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix changelog
+
+2004-02-24 19:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/tr.po: updated Turkish file
+
+2004-02-24 19:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-9mdk
+
+2004-02-24 19:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-8mdk
+
+2004-02-24 19:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_conf_backend) alter both
+ /etc/analog/adiusbadsl.conf and /etc/eagle-usb/eagle-usb.conf too
+ when configuring sagemXXX
+
+2004-02-24 18:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po,
+ nn.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po,
+ sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po,
+ uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot
+ file; added Latgalian file
+
+2004-02-24 18:19 Warly <warly at mandriva.com>
+
+ * isolinux-graphic-simple.bmp, make_boot_img: add new simpler
+ isolinux image for floppy change make_boot_image to update floppy
+ boot.msg at make time
+
+2004-02-24 16:47 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: update
+
+2004-02-24 15:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, nn.po,
+ pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: merge in typo fixes
+ from tille
+
+2004-02-24 15:17 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Committing Arabeyes.org's Arabic
+ translation
+
+2004-02-24 15:06 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: printer/printerdrake.pm, standalone/scannerdrake:
+ UI text fixes.
+
+2004-02-24 14:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: set default protocol to
+ pppoa for various ISPs
+
+2004-02-24 14:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: update 9telecom entry (Benot
+ Audouard)
+
+2004-02-24 14:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: add encapsulation method for
+ tiscali 512k offer in france
+
+2004-02-24 14:45 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ja.po: updated Japanese file
+
+2004-02-24 14:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: fix wrongly inverted
+ encapsulation methods for free isp cnx offers
+
+2004-02-24 14:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: use spanish caracters in
+ spanish isp name (Benot Audouard)
+
+2004-02-24 14:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: fix url (Benoît Audouard)
+
+2004-02-24 14:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: typo fix
+
+2004-02-24 14:40 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ms.po: updated Malay file
+
+2004-02-24 14:29 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Update
+
+2004-02-24 14:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix module lookup for pcmcia
+ cards
+
+2004-02-24 12:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: typo fix (fcrozat)
+
+2004-02-24 11:57 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/po/fr.po: Fix typo
+
+2004-02-24 11:50 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/po/fr.po: Fix typos
+
+2004-02-24 04:04 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: mknbi-set always wants a
+ kernel version now.
+
+2004-02-24 03:36 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Deal with conflicts with
+ msec > 3 and exporting / (use no_root_squash). Always pass a
+ kernel to mkinitrd-net. (Both part of #8216) Add --restart option
+ for terminal-server.
+
+2004-02-24 03:01 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/scannerdrake: Ask user before installing
+ packages.
+
+2004-02-24 03:00 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Give clear warning/error
+ messages if a package installation fails. Let printer model in
+ first-time dialog also be shown if there is no description field
+ in the device ID of the printer.
+
+2004-02-24 01:10 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ca.po, et.po: updated Estonian file
+
+2004-02-23 23:58 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: Some unfuzzying
+
+2004-02-23 21:34 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-02-23 20:18 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, nn.po,
+ pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2004-02-23 19:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-02-23 18:37 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2004-02-23 18:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: misc perl_checker cleanups
+
+2004-02-23 17:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: diskdrake/hd_gtk.pm, diskdrake/interactive.pm,
+ share/po/DrakX.pot, share/po/af.po, share/po/ar.po,
+ share/po/az.po, share/po/be.po, share/po/bg.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/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/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/pl.po, share/po/pt.po,
+ share/po/pt_BR.po, share/po/ro.po, share/po/ru.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/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 fixes
+ (Reinout van Schouwen)
+
+2004-02-23 17:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-7mdk
+
+2004-02-23 16:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: - always write up/down
+ scripts - only write initscript when starting at boot was choosen
+ (instead of writing it in restart path...)
+
+2004-02-23 16:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: ethernet.pm, netconnect.pm: write ethX
+ aliases and ifup/ifdown scripts when configuring a LAN connection
+
+2004-02-23 16:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (del_intf) keep ethX aliases
+ b/c eg removing eth0 will results in eth1 to be renumbered on
+ next boot...
+
+2004-02-23 16:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (del_intf) down the network
+ interface when deleting it
+
+2004-02-23 16:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (del_intf) when no network
+ configuration is configured, just report it
+
+2004-02-23 16:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (del_intf) only list
+ configured interfaces when offering to delete them
+
+2004-02-23 13:50 Guillaume Cottenceau
+
+ * rescue/tree/etc/issue: 10.0
+
+2004-02-23 12:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-6mdk
+
+2004-02-23 12:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: fix adsl scripts (especially with
+ sagem8xx modems)
+
+2004-02-23 12:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: add missing space
+
+2004-02-23 11:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-5mdk
+
+2004-02-23 11:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix ability to set ip
+ parameters broken by localizing bootproto
+
+2004-02-23 10:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix french translation (upcase
+ label)
+
+2004-02-23 10:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_conf_backend) speedtouch
+ config need vpi/vci as decimal numbers whereas sagem8xx wants
+ hexa numbers
+
+2004-02-23 10:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: rollback bogus damien
+ change, here vpi/vci parameters are in hexa, not decimal
+
+2004-02-23 09:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: do not tag some ata raid
+ controllers as unknown hw
+
+2004-02-23 09:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-4mdk
+
+2004-02-23 09:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: handle unknown hardware:
+ enable one to manually load a driver like expert mode in old
+ pre-10.0 wizard
+
+2004-02-23 09:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules/interactive.pm:
+ (load_category__prompt_for_more) do not list probed category in
+ detected hardware list
+
+2004-02-23 09:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules/interactive.pm:
+ (load_category__prompt_for_more) show quotes around detected
+ hardware in order to more easily see thems
+
+2004-02-23 09:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (conf_network_card_backend)
+ update its doc now that it has been splited in get_eth_cards()
+ and conf_network_card_backend()
+
+2004-02-23 09:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: enable one to manually choose
+ the serial port to use while configuring modem
+
+2004-02-23 09:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix unreachable steps
+
+2004-02-23 09:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: handle and translate
+ BOOTPROTO
+
+2004-02-23 09:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: read ppp auth method
+
+2004-02-23 09:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/modem.pm: (ppp_read_conf) really default to
+ dynamic dns, gateway and ip (really fix #7705)
+
+2004-02-23 09:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/modem.pm: misc perl_checker cleanups
+
+2004-02-23 09:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: read ppp config earlier and
+ prevent provider choice to overwrite it (but if user select a
+ *new* provider)
+
+2004-02-23 09:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: initialize modem data
+ structure at one point only for serial/PCI modems
+
+2004-02-23 09:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: modem.pm, netconnect.pm: split kppp config
+ reading into network::modem::ppp_read_conf() in order to be
+ shared with manage interface
+
+2004-02-23 09:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: handle new PAP/CHAP method
+
+2004-02-23 09:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix untranslated strings
+
+2004-02-23 09:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix french translation (upcase
+ label)
+
+2004-02-23 09:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (setupBootloader__entries) fix entry editing
+ layout
+
+2004-02-23 09:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix choosing betweeen '' and
+ 'adsl connections when configuring adsl (due to write_cnx_scripts
+ vivificating data structure)
+
+2004-02-23 09:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: do not complain about
+ gateway format when it's not set
+
+2004-02-22 21:07 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated translation
+
+2004-02-22 20:59 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nn.po: updated Nynorsk file
+
+2004-02-22 18:51 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: fix vci number for Belgium
+ and France
+
+2004-02-22 03:14 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cy.po, nn.po: Added Nynorsk file
+
+2004-02-21 17:37 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Verify user has selected a
+ cron interval and media [Bugzilla 8138]
+
+2004-02-21 14:01 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-02-21 10:08 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: et.po, it.po: updated Estonian and
+ Italian files
+
+2004-02-21 09:43 Guillaume Cottenceau
+
+ * make_boot_img: tentatively fix progress bar too wide (#8150)
+ blind fix, please someone can test after next build :)
+
+2004-02-21 08:21 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: update
+
+2004-02-21 01:41 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: More code reduction.
+
+2004-02-20 21:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po,
+ pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2004-02-20 20:28 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: QA - tweak wizard setup.
+
+2004-02-20 20:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-02-20 20:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-3mdk
+
+2004-02-20 20:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: when one refuse to install
+ firmware *now*, she won't be able to select a provider, thus vci
+ and vpi parameters won't be filled
+
+2004-02-20 19:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: remove useless "next" field
+ (since post already handle it)
+
+2004-02-20 19:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: fix title when run from mcc
+ (#8111)
+
+2004-02-20 19:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getBewan) introduce it in order
+ to detect Bewan ADSL modems (both PCI and USB ones)
+
+2004-02-20 19:12 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: Some updates and unfuzzying
+
+2004-02-20 19:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-2mdk
+
+2004-02-20 19:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: fix "current" checkbox vs
+ "group" and "user" pull-down menus
+
+2004-02-20 18:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: enable to refuse network
+ restarting
+
+2004-02-20 18:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getSagem) lookup sagem8xx modems
+ by module rather than relying on strings manually added to
+ ldetect-lst
+
+2004-02-20 18:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not detect lan interfaces
+ when configuring modems
+
+2004-02-20 17:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po,
+ pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2004-02-20 17:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (add_intf) no need to handle
+ errors, it's done by callee now in order to share exception
+ handling with installer
+
+2004-02-20 17:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not horribly die at
+ install time on error
+
+2004-02-20 17:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: really fix previous button on
+ first step: we want it at install time
+
+2004-02-20 16:59 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: keep provider vpi/vci settings when
+ exist
+
+2004-02-20 16:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: (update_for_renumbered_partitions): -
+ handle no grub config - skip modifications when dev2grub fail
+ (since the device not in device.map means the device is currently
+ unused for booting)
+
+2004-02-20 15:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: remove debug statement
+
+2004-02-20 15:45 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: uim-anthy works ok in on-the-spot mode with
+ KDE
+
+2004-02-20 15:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: aliase Free non dégroupé
+ 1024/256 on "Free non dégroupé 512/128" (#7615)
+
+2004-02-20 15:25 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Shrink code per Thierry.
+
+2004-02-20 15:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/: modules.pm, install_steps.pm: alias agpgart should
+ be only for 2.6, since code doesn't allow this easily, adding the
+ agp module to modprobe.preload
+
+2004-02-20 15:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-1mdk
+
+2004-02-20 14:48 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: update
+
+2004-02-20 14:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: fix writing aliases (fix broken
+ speedtouch)
+
+2004-02-20 12:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: add umask=0022 capability, and use it for
+ security level 3
+
+2004-02-20 11:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/: compssUsers, compssUsers.server: Gnome is no
+ good, GNOME is good
+
+2004-02-20 11:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: fix warning LSB chosen
+ implies kernel 2.4
+
+2004-02-20 09:53 Guillaume Cottenceau
+
+ * perl-install/: install_gtk.pm, install_steps_gtk.pm, ugtk2.pm,
+ interactive/gtk.pm: don't force buttons a size related to
+ $::windowwidth since this is no more used to size the main window
+ (fixes missing Next button in vgahi), use a global
+ $::real_windowwidth for sizings related to the main window
+
+2004-02-20 09:08 Guillaume Cottenceau
+
+ * mdk-stage1/Makefile: 10.0
+
+2004-02-20 08:59 Guillaume Cottenceau
+
+ * perl-install/install_steps_gtk.pm: allow to specify the Xnest
+ wanted resolution with --vga
+
+2004-02-20 04:06 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Gnome icon order. Drop an
+ unused button box.
+
+2004-02-20 01:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-0.21mdk
+
+2004-02-20 00:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: since no PCMCIA cards support
+ link status notification, ifplugd should be disabled for all
+ pcmcia cards by default => let blacklist them (#8031)
+
+2004-02-20 00:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-02-20 00:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakvpn: fix string
+
+2004-02-19 22:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/: ugtk2.pm, interactive/gtk.pm: use
+ $ugtk2::current_window in place of @interactive::objects (which
+ was unused and broken) => fix XSetInputFocus (bugzilla #8046 and
+ #8053)
+
+2004-02-19 21:35 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated
+
+2004-02-19 20:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: mk.po, mn.po, ms.po, mt.po, nb.po, nl.po,
+ pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2004-02-19 20:26 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, lv.po: updated pot file
+
+2004-02-19 20:22 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fa.po, fi.po, fr.po, ga.po, gl.po, he.po,
+ hi.po, hr.po, hu.po: updated pot file
+
+2004-02-19 20:09 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: value of XIM is the xim identifier, not the
+ xim program name
+
+2004-02-19 19:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakvpn: consolidate strings
+
+2004-02-19 19:48 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/po/fr.po: Update
+
+2004-02-19 19:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: we don't need warp_text since we have
+ WrappedLabel
+
+2004-02-19 19:04 Pixel <pixel at mandriva.com>
+
+ * tools/make_mdkinst_stage2: catch kernel 2.6 loop bug
+
+2004-02-19 18:51 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: Today's work
+
+2004-02-19 18:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/XFdrake: no more global icon in XFdrake
+
+2004-02-19 18:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: the text we give to set_markup
+ should not contain raw "&" (occurs for "Any PS/2 & USB mice")
+
+2004-02-19 18:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: only show "previous" button
+ on first step in install; in standalone mode, we already have the
+ "cancel" button
+
+2004-02-19 18:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: better logging
+
+2004-02-19 17:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: don't have a big scrolled window
+ that can be around a local scrolled window. ensure instead many
+ local scrolled windows
+
+2004-02-19 17:49 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/netconnect.pm: put a Previous button on the
+ first page
+
+2004-02-19 17:34 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/po/fr.po: Revert my mistake
+
+2004-02-19 17:31 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/dwd-01.pl: Add missing string
+
+2004-02-19 17:15 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/drakvpn: fixed typos
+
+2004-02-19 16:17 Warly <warly at mandriva.com>
+
+ * perl-install/standalone/drakboot: Apply Olivier Blin patch to fix
+ theme displaying under console
+
+2004-02-19 15:14 Guillaume Cottenceau
+
+ * perl-install/http.pm: well, value is not dropped anymore perl
+ checko
+
+2004-02-19 15:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-0.20mdk
+
+2004-02-19 15:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: standalone/drakvpn, share/po/DrakX.pot,
+ share/po/af.po, share/po/ar.po, share/po/az.po, share/po/be.po,
+ share/po/bg.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/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/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/pl.po,
+ share/po/pt.po, share/po/pt_BR.po, share/po/ro.po,
+ share/po/ru.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/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
+
+2004-02-19 14:59 Guillaume Cottenceau
+
+ * perl-install/http.pm: - don't resolv host, it breaks virtual
+ servers configs - log when we don't receive a 200
+
+2004-02-19 14:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: fix _ask_file (tested in wizard, normal
+ and embedded)
+
+2004-02-19 14:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/main.pm: (set_usermode) do not die when run
+ with --testing as user
+
+2004-02-19 14:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: switch japanese from kinput2 to uim input
+ method
+
+2004-02-19 14:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: uim won't work without uim-applet
+
+2004-02-19 14:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: fix titi sucks (Advanced and Help were
+ broken)
+
+2004-02-19 12:35 Guillaume Cottenceau
+
+ * perl-install/install_steps.pm: add utf8 key to locale config if
+ not already present, so that auto install behave as before
+ (pixel)
+
+2004-02-19 12:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: - kimdaba must be flagged KDE -
+ lower some packages rates for my tests
+
+2004-02-19 11:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: kdenlive must be flagged KDE
+
+2004-02-19 01:32 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakvpn: add plenty of help files, add
+ anonymous support for sainfo
+
+2004-02-19 01:32 Florin Grad <florin at mandriva.com>
+
+ * perl-install/network/ipsec.pm: add plenty of help explanations,
+ add anonymous support in sainfo
+
+2004-02-19 01:05 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Fix issue with multisession
+ CDs (Anthill #349)
+
+2004-02-19 00:46 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: QA - Encourage user to finish
+ configuring media before leaving wizard.
+
+2004-02-18 23:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: (quit_global) do not die in
+ exit path when not run as root
+
+2004-02-18 23:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: reindent button packing
+
+2004-02-18 23:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: sanitize buttons layout when
+ embedded
+
+2004-02-18 22:48 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated
+
+2004-02-18 19:58 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/po/fr.po: Advertisements: update translations
+ for download
+
+2004-02-18 18:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-0.19mdk
+
+2004-02-18 18:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not use ifplugd on
+ wireless connections by default
+
+2004-02-18 18:34 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - add adsl_atboot() to check
+ at boot status - use it instead of chk_internet()
+
+2004-02-18 18:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix "network needs to be
+ restarted" step
+
+2004-02-18 18:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not overwrite current
+ wireless parameters with default values
+
+2004-02-18 18:08 Guillaume Cottenceau
+
+ * perl-install/: any.pm, install_steps.pm, lang.pm: selectlanguage:
+ utf8 flag status is updated when user selects more/less
+ languages; when user touches it, update is disabled, allowing
+ andrej to have an en_GB + ru_RU install without utf8
+
+2004-02-18 18:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: move some wireless options as
+ advanced ones
+
+2004-02-18 17:48 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-02-18 17:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: HACK: set LD_ASSUME_KERNEL so that rpm
+ doesn't try to use tls (which we don't have at install) otherwise
+ it causes *weird* problems in __db*. When LD_ASSUME_KERNEL is
+ set, no __db* are used, and so no such pbs.
+
+2004-02-18 17:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, partition_table.pm: type 0x17 *can* be
+ ntfs, assuming it is when we don't care much, and check if it is
+ ntfs otherwise
+
+2004-02-18 17:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: share/po/DrakX.pot, share/po/af.po,
+ share/po/ar.po, share/po/az.po, standalone/drakvpn,
+ share/po/be.po, share/po/bg.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/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/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/pl.po, share/po/pt.po, share/po/pt_BR.po,
+ share/po/ro.po, share/po/ru.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/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
+
+2004-02-18 16:45 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Rework backupignore behavior
+ (Anthill #306).
+
+2004-02-18 16:34 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: drop $netc->{internet_cnx} test,
+ unnedeed
+
+2004-02-18 16:30 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix adsl at boot, better and
+ more clean
+
+2004-02-18 16:13 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Install Google's search bar when KDE
+ is installed
+
+2004-02-18 15:54 Guillaume Cottenceau
+
+ * perl-install/install_any.pm: ok, ok, perl checker roulaize
+
+2004-02-18 15:37 Guillaume Cottenceau
+
+ * perl-install/install_any.pm: better match
+
+2004-02-18 15:36 Guillaume Cottenceau
+
+ * perl-install/install_any.pm: tentatively fix #7792 (seems like
+ line number don't match #7792, but this one I'm fixing was
+ obviously wrong, at least)
+
+2004-02-18 15:31 Guillaume Cottenceau
+
+ * tools/: shift_all.pl, shift_img.c: these files I needed when
+ pablo gave me lang-*.png images because they were not aligned..
+ commiting in case
+
+2004-02-18 14:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: force apply button to be
+ right aligned
+
+2004-02-18 14:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_okcancel) enable to specify that
+ some buttons must be at right
+
+2004-02-18 12:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: gdm is an important gnome
+ application, make it 5 (for my tests)
+
+2004-02-18 12:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/diskdrake: set useSupermount to magicdev
+ (so that it doesn't use supermount from cdroms)
+
+2004-02-18 12:17 Guillaume Cottenceau
+
+ * perl-install/modules.pm: don't log insmod errors on tty5, rather
+ on tty3+ddebug.log as normal log
+
+2004-02-18 11:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: when cancel is pressed, fix
+ re-selecting unselected packages (callback_choices unneeded, cf
+ rpmdrake)
+
+2004-02-18 11:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: small cleanup
+
+2004-02-18 11:22 Frederic Crozat <fcrozat at mandriva.com>
+
+ * perl-install/share/rpmsrate: Pull xine-arts when choosing video
+ AND KDE
+
+2004-02-18 11:18 Guillaume Cottenceau
+
+ * perl-install/install_any.pm: allow using ext2 or vfat floppies
+ for kickstart=floppy so that when you do an auto install based on
+ network.img and network_drivers.img, you can put your
+ auto_inst.cfg.pl on network_drivers.img and rock n roll
+
+2004-02-18 11:18 Guillaume Cottenceau
+
+ * perl-install/share/: advertising/dwd-09.pl, po/DrakX.pot,
+ po/af.po, po/ar.po, po/az.po, po/be.po, po/bg.po, po/bs.po,
+ po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/el.po,
+ po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po,
+ po/fr.po, po/ga.po, po/gl.po, po/he.po, po/hi.po, po/hr.po,
+ po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po,
+ po/lt.po, po/lv.po, po/mk.po, po/mn.po, po/ms.po, po/mt.po,
+ po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po,
+ po/ru.po, po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/sr@Latn.po,
+ po/sv.po, po/ta.po, po/tg.po, po/th.po, po/tr.po, po/uk.po,
+ po/uz.po, po/uz@Latn.po, po/vi.po, po/wa.po, po/zh_CN.po,
+ po/zh_TW.po: fix wording of advertisement thx to austin
+
+2004-02-18 10:58 Guillaume Cottenceau
+
+ * mdk-stage1/modules.c: support automatic installs even when
+ needing the additional drivers floppy
+
+2004-02-17 22:32 Guillaume Cottenceau
+
+ * mdk-stage1/: modules.c, modules.h, stage1.c: support 2.6
+ insmoding for expert third party modules and loading named
+ modules
+
+2004-02-17 22:11 Guillaume Cottenceau
+
+ * perl-install/Xconfig/card.pm: well we reverted to 4.3
+
+2004-02-17 20:59 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: today's updates
+
+2004-02-17 19:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: log one more stuff into 10-0.18mdk
+
+2004-02-17 19:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: enforce gnome button order everywhere
+ (interface team request)
+
+2004-02-17 19:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix changelog
+
+2004-02-17 18:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-0.18mdk
+
+2004-02-17 18:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/icons/wiz_default_up.png: new default
+ icon for wizards
+
+2004-02-17 18:25 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - add chk_config() to test
+ internet service state - adsl onboot using chk_config()
+
+2004-02-17 18:11 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: manage interfaces don't want to
+ break cnx_scripts
+
+2004-02-17 17:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add support for atmel_cs too
+
+2004-02-17 15:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: really fix doble blanked ISDN
+ detection
+
+2004-02-17 15:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: sort lan protocols
+
+2004-02-17 15:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix changelog
+
+2004-02-17 14:58 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm: Fixed problem that not used
+ parallel ports were detected as printers.
+
+2004-02-17 14:57 Guillaume Cottenceau
+
+ * mdk-stage1/: frontend-common.c, newt-frontend.c, stage1.c,
+ stdio-frontend.c: when available, always load usb interface, as
+ soon as possible, should help usb mouse detection in stage2 which
+ otherwise timeouts
+
+2004-02-17 14:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: detection defaults on automatic choices
+
+2004-02-17 14:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: fix mouse detect() on kernel 2.4
+
+2004-02-17 13:51 Florin Grad <florin at mandriva.com>
+
+ * perl-install/network/ipsec.pm: one can now start from scratch
+ with ipsec.conf
+
+2004-02-17 13:50 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakvpn: one can now start an ipsec.conf
+ file from scratch
+
+2004-02-17 13:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakvpn: (ask_info3) really use
+ parameters...
+
+2004-02-17 12:58 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-02-17 12:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-0.17mdk
+
+2004-02-17 12:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-02-17 12:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakvpn: consolidate strings
+
+2004-02-17 12:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/Changelog: kill no more used file
+
+2004-02-17 12:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: drakfont, icons/drakfont.620x57.png,
+ icons/drakfont.png: switch drakfont to new banner style
+
+2004-02-17 12:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/newt.pm: don't have a scroll inside a
+ scroll which causes display pbs.
+
+ alas it doesn't fix the "Tab" navigation when having a global
+ scroll + a Listbox. You have to use the right arrow to exit the
+ Listbox
+
+2004-02-17 11:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: remove bad entries after reading
+ existing conf file
+
+2004-02-17 11:00 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2004-02-17 09:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: log where the bootloader is installed
+
+2004-02-17 03:56 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Added warnings to clearly
+ tell the user when there is no network access. Removed printer
+ list button whenthere is no network also in expert mode.
+
+2004-02-17 03:27 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po,
+ pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2004-02-17 01:00 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakvpn: add the ask_info3 function
+
+2004-02-17 01:00 Florin Grad <florin at mandriva.com>
+
+ * perl-install/network/ipsec.pm: fix the ";" mark in the Security
+ Policies Section
+
+2004-02-17 00:44 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Nothing special
+
+2004-02-17 00:37 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Partially updated file
+
+2004-02-17 00:36 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm: Recognize parallel printers also
+ when they miss the "CLASS:PRINTER;" in their device ID string
+ (ex: Brother HL-720, bug #7753).
+
+2004-02-17 00:00 Guillaume Cottenceau
+
+ * mdk-stage1/url.c: fix buggy redhat code exhausted only in -Os
+ which corrupted memory and gave wrong results for download file
+ size in FTP/HTTP installs
+
+2004-02-16 23:31 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po,
+ pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2004-02-16 23:06 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: standalone/drakboot, standalone/drakvpn,
+ network/netconnect.pm: typo fixes
+
+2004-02-16 19:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakautoinst: typo fix
+
+2004-02-16 18:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakvpn: (ask_info2) list valid values in
+ a pull-down menu
+
+2004-02-16 18:55 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: Today's worjk
+
+2004-02-16 18:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakvpn: (ask_info2) introduce it in
+ order to share one more step
+
+2004-02-16 18:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakvpn: (ask_info) introduce it in order
+ to share some code
+
+2004-02-16 18:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakvpn: PFS group only accept 3 distinct
+ values
+
+2004-02-16 18:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakvpn: more user friendly labels
+
+2004-02-16 18:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakvpn: do not list twice the same
+ elements in list...
+
+2004-02-16 18:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakvpn: try to have better names
+
+2004-02-16 18:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakvpn: do not put " = " in translated
+ messages
+
+2004-02-16 18:07 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: move check_field's
+ ask_warn() to save_notebook()
+
+2004-02-16 18:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/: authentication.pm, install_steps_interactive.pm:
+ keep current authentication kind, even if not completly accepted
+
+2004-02-16 18:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakvpn: add hints
+
+2004-02-16 17:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix automatically found
+ "...2" dns when network is done
+
+2004-02-16 17:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: drakautoinst, drakgw, drakpxe, drakvpn:
+ do not abuse global namespace
+
+2004-02-16 17:46 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: check gateway entry
+
+2004-02-16 17:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: (setRootPassword) do
+ not reset auth method when pressing "previous" in next step
+
+2004-02-16 17:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/authentication.pm: (to_kind) try harder to find out
+ if some auth method already had been choosed
+
+2004-02-16 17:12 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: add "memtest" in isolinux (as advised by Thomas
+ Backlund)
+
+2004-02-16 17:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm:
+ network::shorewall::read without silent is nasty, since it
+ doesn't only read, it prompts the user. So each time the summary
+ updates the data, it prompts (when you have more than one card
+ and no firewall configured)
+
+2004-02-16 17:06 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakvpn: do not test the translated
+ chains anymore
+
+2004-02-16 16:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: show a more precise error
+ messages when no wireless cards were found
+
+2004-02-16 15:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-02-16 14:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: eagle was renamed as
+ eagle-usb
+
+2004-02-16 14:36 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po,
+ pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2004-02-16 14:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/network/ipsec.pm: removed N() around of a
+ non-translatable string
+
+2004-02-16 13:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: minor poulpe cleanup
+
+2004-02-16 13:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: beautify string
+
+2004-02-16 13:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: explain about DNS (#7908)
+
+2004-02-16 13:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakclock: let's look better when
+ embedded
+
+2004-02-16 12:55 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-02-16 11:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: during install, "Ok" is on the right, like
+ gnome not kde
+
+2004-02-16 11:49 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/compssUsers.server: Select Groupware by
+ default
+
+2004-02-16 11:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/advertising/Makefile: get the list of files
+ needed from list-PRODUCT
+
+2004-02-16 11:41 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/list: Removed on Pixel's request
+ (will use list-dwd instead)
+
+2004-02-16 11:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: add in %pkgs::preferred the kernel-source
+ corresponding to the preferred kernel
+
+2004-02-16 11:20 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Add kolab-server in GROUPWARE
+
+2004-02-15 22:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-0.16mdk
+
+2004-02-15 22:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: typo fix :-)
+
+2004-02-15 14:25 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: more updates
+
+2004-02-15 10:48 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Committing Arabeyes.org's Arabic
+ translation
+
+2004-02-14 21:37 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/nb.po: Updates
+ gi/perl-install/share/po/nb.po
+
+2004-02-14 20:59 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm: Recognize also "SN:" as serial
+ number field in printer ID string (HP PhotoSmart 7760, bug
+ #6534).
+
+2004-02-14 20:56 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Made printerdrake handling
+ even very weird printer ID strings, as the one of the Brother
+ HL-720 with empty manufacturer and description fields (Bug
+ #7753).
+
+2004-02-14 18:01 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-02-14 13:34 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: Small updates to catalan
+ translations
+
+2004-02-14 10:43 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: Updates soft/wizard_perl/po/da.po
+ gi/perl-install/share/po/da.po
+
+2004-02-14 06:21 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/nb.po: Updates. I could just as well update
+ the Norwegian version as I wanted to use this as base for my
+ Danish translation. gi/perl-install/share/po/nb.po
+
+2004-02-14 05:29 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: data.pm, detect.pm, main.pm: Let
+ printerdrake load the "usblp" instead of the "printer" kernel
+ module if kernel 2.6.x is used.
+
+2004-02-14 04:49 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: Updates soft/control-center/po/da.po
+ soft/drakfax/po/da.po soft/ftw/po/da.po soft/mdkonline/po/da.po
+ soft/rfbdrake/po/da.po soft/rpmdrake/po/da.po soft/urpmi/po/da.po
+ gi/perl-install/share/po/da.po
+
+2004-02-14 04:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-0.15mdk
+
+2004-02-14 03:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: fix ISDN detection (#6535)
+
+2004-02-14 03:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn.pm: (isdn_detect_backend) try harder to
+ detect ISDN devices
+
+2004-02-14 03:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: break devices loop into two
+ pass: - first detect devices into each class - then process them
+ for later display
+
+2004-02-14 03:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: filter out devices to prevent
+ them to appear several times in device tree (#4906)
+
+2004-02-14 03:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix automatically found
+ "...2" dns
+
+2004-02-14 02:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/tools.pm: fix crash on canceling "already
+ configured net device" configuration (#7679)
+
+2004-02-14 02:48 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: FTP restore failure feedback.
+ Allow multiple catalog/file restore selection.
+
+2004-02-14 00:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: by default do not start
+ connection at boot for modems (#7705)
+
+2004-02-14 00:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/wizards.pm: enable default value to be dynamically
+ computed
+
+2004-02-14 00:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/wizards.pm: enable to pass untranslated defaut to
+ yes/no or ok/cancel like questions by translating value at
+ runtime
+
+2004-02-14 00:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/wizards.pm: default to next/finish when no field is
+ present
+
+2004-02-14 00:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/wizards.pm: add 'default' field in order to be able
+ to enforce default answer for yes/no like questions or when data
+ does not conatains any fields (needed for last #7705 bit)
+
+2004-02-14 00:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/wizards.pm: missing #7593 bit
+
+2004-02-14 00:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/wizards.pm: use interactive->ask_okcancel in order
+ to not have spurious field in text mode (#7593)
+
+2004-02-13 20:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: do not try setting transcient hint when
+ embedded
+
+2004-02-13 19:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: use center-on-parent for popped windows
+
+2004-02-13 19:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list: perl-MDK-Common has been rebuilt
+
+2004-02-13 19:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules/interactive.pm: don't have a wait_message
+ above another empty wait_message when probing hardware
+
+2004-02-13 19:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-0.14mdk
+
+2004-02-13 18:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: add a warning when
+ choosing security level > 2 and having a windows partition (since
+ in that case we won't have umask=0) (bugzilla #4731)
+
+2004-02-13 18:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: in boolean context, "any" is better
+ than "find"
+
+2004-02-13 18:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix reading grub config (esp. when
+ /boot is a separate partition) (nb for titi: join($xx, $yy) is
+ *not* useful)
+
+2004-02-13 18:28 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: forgotten modem page, to be
+ traduced, not yet usable (please don't hurt me)
+
+2004-02-13 18:13 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/po/fr.po: Fix </b> in advertiesment #5
+
+2004-02-13 17:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_scrolled_window) add relief for
+ TreeViews too (interface team request)
+
+2004-02-13 17:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-02-13 17:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/: bootloader.pm, diskdrake/interactive.pm: try hard
+ to update_bootloader_for_renumbered_partitions()
+
+2004-02-13 17:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-02-13 17:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakvpn: verbs must be upcased on
+ buttons!!!
+
+2004-02-13 17:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, modules.pm: - have usb-storage as a
+ scsi_hostadapter by default - remove it if unneeded for normal
+ boot (cf comment in the code)
+
+2004-02-13 16:46 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po,
+ pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2004-02-13 16:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: create read_grub_device_map()
+
+2004-02-13 15:45 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/advertising/dwd-09.pl: USE ASCII OR UTF-8
+ ONLY; **DON'T** USE ISO-8859-1!
+
+2004-02-13 15:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: network/netconnect.pm, standalone/drakconnect: new
+ banner icons
+
+2004-02-13 15:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm: no need for this
+
+2004-02-13 15:32 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/init.c: sleep 10 only when debugging
+
+2004-02-13 15:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: remove useless comment
+
+2004-02-13 15:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-0.13mdk
+
+2004-02-13 15:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: pixmaps/printerdrake.png, printer/printerdrake.pm,
+ standalone/drakconnect, standalone/drakgw, standalone/drakpxe,
+ standalone/drakvpn, standalone/icons/drakconnect.png,
+ standalone/icons/drakfirewall.png, standalone/icons/drakgw.png,
+ standalone/icons/drakvpn.png, standalone/icons/logdrake.png,
+ standalone/icons/printerdrake.png,
+ standalone/icons/scannerdrake.png,
+ standalone/icons/wiz_drakconnect.png,
+ standalone/icons/wiz_drakgw.png,
+ standalone/icons/wiz_drakvpn.png,
+ standalone/icons/wiz_firewall.png,
+ standalone/icons/wiz_logdrake.png,
+ standalone/icons/wiz_printerdrake.png,
+ standalone/icons/wiz_scannerdrake.png: new banner icons
+
+2004-02-13 15:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: handle wireless modules
+
+2004-02-13 15:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive.pm: (vnew) do not complaint about being
+ run as root when --testing was passed
+
+2004-02-13 14:58 Guillaume Cottenceau
+
+ * perl-install/modules.pm: fix deps problem because of 2.4/2.6
+ mappings, better support 2.4 and 2.6 alltogether by keeping 2.4
+ names in modules.conf
+
+2004-02-13 14:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (new) simplify WizardTable
+
+2004-02-13 13:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::Banner->new) fix default banner
+ size
+
+2004-02-13 13:51 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/: drweb.pl, drweb.png, list,
+ list-dis, list-dwd, list-ppp, list-pwp: - Add DRWeb's
+ advertisement - Add list for each version
+
+2004-02-13 13:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: offer_to_connect: fix
+ indentation
+
+2004-02-13 13:32 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/netconnect.pm: - do not flush
+ /etc/sysconfig/drakconnect with an empty hash - move
+ $offer_to_connect after %adsl_devices declaration (fix typo?)
+
+2004-02-13 12:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (new) use new Gtk2::Banner object for
+ banner
+
+2004-02-13 12:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile.config: add drakvpn
+
+2004-02-13 12:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: remove uneeded variable
+
+2004-02-13 11:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::Banner) move that widget from mcc
+ into ugtk2 so that all tools can reuise it for their banners
+
+2004-02-13 11:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: do not force black color for
+ fields values, this badly conflict with inverted accessibility
+ themes
+
+2004-02-13 11:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: remove statusbar on interface
+ team request
+
+2004-02-13 11:07 Warly <warly at mandriva.com>
+
+ * isolinux-graphic.bmp, make_boot_img: new syslinyx logo
+
+2004-02-13 06:55 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - nice ethernet names back
+
+2004-02-13 06:46 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - fix adsl via ethernet bug
+ - fix apply settings bug - fix and shrink sub apply - drop $gui
+ and $config - add new hash style $p
+
+2004-02-13 06:38 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/netconnect.pm: s/$config/$p/ for drakconnect
+ conf file
+
+2004-02-13 02:43 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Fix QA reports of crash on
+ file search, failure to report ftp error.
+
+2004-02-13 01:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: only look for local printers (do
+ not perform heavy network probe)
+
+2004-02-13 00:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakclock: (DrawPointAt) simplify
+ draw_points call
+
+2004-02-13 00:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: in get_kernels_and_labels(): - change
+ internal data structure - change regexp matching kernel names
+ (was broken for 2.4.25-0.pre7.3mdk) - default to kernel 2.4 when
+ lsb is installed
+
+2004-02-12 23:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (new) simplify banner rendering, make it
+ cpu lighter
+
+2004-02-12 23:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: ask isp for ip and gateway by
+ default (#7705)
+
+2004-02-12 21:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/: do_pkgs.pm, install_any.pm, pkgs.pm: change return
+ type of pkgs::packages2kernels()
+
+2004-02-12 21:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: warn that selecting
+ LSB means having 2.4 by default
+
+2004-02-12 21:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: add kernel-2.4* in group LSB
+
+2004-02-12 21:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: handle case where rpm can't be
+ found (eg: XFree86-SVGA for xfree3) (part of bugzilla #7786)
+
+2004-02-12 19:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-02-12 18:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix changelog
+
+2004-02-12 18:40 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakvpn: hopefuly better interface
+
+2004-02-12 17:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: fix driver blacklist
+
+2004-02-12 17:31 Guillaume Cottenceau
+
+ * mdk-stage1/Makefile.common: linux/fd.h is too broken to compile
+ with -W :(
+
+2004-02-12 17:14 Guillaume Cottenceau
+
+ * mdk-stage1/: modules.c, stage1.c, tools.c: try to detect regular
+ floppy drives
+
+2004-02-12 17:13 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix ethernet and adsl
+ conflict in menu
+
+2004-02-12 16:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-0.12mdk
+
+2004-02-12 16:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do use the actual user's
+ answer
+
+2004-02-12 16:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: preselect right protocol for
+ ethernet though connections
+
+2004-02-12 16:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix step linking with
+ ask_connect_now and restart steps: - fix check for restart step -
+ only offer to connect now for ppp connections
+
+2004-02-12 16:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix module retrieving when
+ configuring an adsl connection over ethernet
+
+2004-02-12 15:48 Guillaume Cottenceau
+
+ * perl-install/install2.pm: i810fb on 2.6 needs intel-agp module,
+ doesn't like hwcur and xcon parameters
+
+2004-02-12 15:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: - install ldap packages *before*
+ doing ldapsearch - pam*.so modules do not have /lib/security/
+ prefix anymore
+
+2004-02-12 14:58 Nicolas Planel <nplanel at mandriva.com>
+
+ * kernel/list_modules.pm: s/airo_mpi/airo/
+
+2004-02-12 14:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/icons/wiz_drakvpn.png: re-adding with -kb
+
+2004-02-12 14:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/icons/wiz_drakvpn.png: removing for
+ re-adding with -kb
+
+2004-02-12 14:06 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/dwd-09.pl: Update text to reflect
+ reality
+
+2004-02-12 13:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/devices.pm: add input/mice
+
+2004-02-12 13:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: add rule dont_run_directly_stage2
+
+2004-02-12 12:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-0.11mdk
+
+2004-02-12 12:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: sort ADSL protocols according
+ to locale
+
+2004-02-12 12:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix adsk over ethernet
+ through dhcp protocol
+
+2004-02-12 12:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: simplify adsl protocol
+ choosing through format callback
+
+2004-02-12 12:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: more cleanup
+
+2004-02-12 12:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: new 'Universal|Any PS/2 & USB mice' mouse
+ name usable with kernel 2.6
+
+2004-02-12 12:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: detect more webcams
+
+2004-02-12 11:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add at76c503-rfmd module for wireless
+ cards
+
+2004-02-12 11:42 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/: dis-04.pl, dis-05.pl, dis-07.pl,
+ dis-10.pl, dis-11.pl, ppp-04.pl, ppp-07.pl, ppp-09.pl, ppp-10.pl,
+ ppp-11.pl, pwp-04.pl, pwp-08.pl, pwp-09.pl, pwp-10.pl: Final
+ versions for MDK 10.0
+
+2004-02-12 11:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: rename mouseconfig() with detect_serial()
+ which is what it really does!
+
+2004-02-12 11:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: create probe_wacom_devices() and cleanup
+
+2004-02-12 11:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/: mouse.pm: cleanup
+
+2004-02-12 11:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: remove deprecated comment
+
+2004-02-12 11:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: always use fast_mouse_probe (probing
+ serial is now mostly deprecated, and it is *re-done* by
+ drakconnect, so no need to do it soon)
+
+2004-02-12 11:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: cleanup wacom detection
+
+2004-02-12 11:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: replace unless with if
+
+2004-02-12 10:16 Guillaume Cottenceau
+
+ * make_boot_img: meuh
+
+2004-02-12 10:15 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: re-add cdrom-changedisk.img
+
+2004-02-12 02:51 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Restore title banner.
+
+2004-02-12 02:47 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Address some QA issues with
+ restores. Cleanup screen layout in restore screen. Restore
+ title banner.
+
+2004-02-11 22:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cy.po: updated Welsh file
+
+2004-02-11 22:01 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2004-02-11 21:42 Pixel <pixel at mandriva.com>
+
+ * tools/hd_grub.cgi: adding hdd .. hdh
+
+2004-02-11 17:21 Pixel <pixel at mandriva.com>
+
+ * tools/hd_grub.cgi: initial version
+
+2004-02-11 16:54 Guillaume Cottenceau
+
+ * mdk-stage1/probing.c: be sure to load usb-storage after SCSI
+ adapters, so that they are in same order than reboot, so that
+ naming is the same
+
+2004-02-11 16:46 Guillaume Cottenceau
+
+ * mdk-stage1/probing.c: don't insmod usb-storage the soonest, we
+ can end up mixing scsi devices orders at reboot time, do it only
+ when needed
+
+2004-02-11 15:58 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakvpn: typo errors
+
+2004-02-11 15:53 Florin Grad <florin at mandriva.com>
+
+ * perl-install/: standalone/drakvpn, network/ipsec.pm: fix the
+ perl_checker errors
+
+2004-02-11 15:33 Florin Grad <florin at mandriva.com>
+
+ * perl-install/network/ipsec.pm: remove debugging print commands
+
+2004-02-11 15:31 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakvpn: remote debugging print commands
+
+2004-02-11 15:22 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Rearrange main buttons
+ (jmdault - http://advx.org/docs/ice3.png)
+
+2004-02-11 13:42 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: adapt hd_grub default menu.lst to have messages
+ alike stage1
+
+2004-02-11 13:39 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-02-11 12:58 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/icons/wiz_drakvpn.png: first shy attempt
+
+2004-02-11 12:51 Florin Grad <florin at mandriva.com>
+
+ * perl-install/: standalone/drakvpn, network/ipsec.pm: first shy
+ attempt
+
+2004-02-11 12:49 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: Add smb4k to replace LinNeighborhood
+ (Buchan Milnes suggestion), decrease LinNeighborhood to 3.
+
+2004-02-11 11:26 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: raise mc from 3 to 4 in FILE_TOOLS
+
+2004-02-11 02:22 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2004-02-11 02:10 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Disable title banner for now
+ (same as Bugzilla 7564, just not reported yet).
+
+2004-02-11 02:07 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Disable title banner for
+ now (Bugzilla 7564). Don't assume eth0, rework subnet/netmask
+ for hosts.allow (jmdault).
+
+2004-02-10 21:55 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-02-10 20:41 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-02-10 19:14 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - isdn and modem are fetched
+ from $intf - drop useless @all_cards - 'ath' and 'wlan' cards fix
+
+2004-02-10 18:28 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: Updates, unfuzzying and spell
+ checking
+
+2004-02-10 18:11 Pixel <pixel at mandriva.com>
+
+ * kernel/modules.pl: don't remove missing modules ataraid hptraid
+ silraid pdcraid
+
+2004-02-10 18:09 Pixel <pixel at mandriva.com>
+
+ * tools/serial_probe/serial.c: fix serial probe not detecting
+ legacy mice
+
+2004-02-10 18:08 Guillaume Cottenceau
+
+ * mdk-stage1/: tools.c, tools.h: floppy_device returns first floppy
+ device, look for medias first in case of usb floppies (maybe ide
+ floppies also? never tested) then regular floppy drive
+
+2004-02-10 18:06 Guillaume Cottenceau
+
+ * mdk-stage1/mount.c: in network mode we need to create nodes as
+ well because of usb floppies support
+
+2004-02-10 18:05 Guillaume Cottenceau
+
+ * mdk-stage1/: modules.c, stage1.c: use floppy_device rather than
+ /dev/fd0 because we now support usb floppies as well
+
+2004-02-10 18:04 Guillaume Cottenceau
+
+ * mdk-stage1/probing.c: fake usb floppies detection by looking at
+ blocks size of scsi disk devices, 1048575 is for 2.4 and 1440 for
+ 2.6
+
+2004-02-10 18:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/msec.pm: (apply_checks) reindent
+
+2004-02-10 18:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/msec.pm: (apply_checks) fix unable to save
+ checks when config file is empty (aka substInFile does not
+ support using print in that case)
+
+2004-02-10 18:03 Guillaume Cottenceau
+
+ * kernel/modules.pl: disk/raw and disk/usb added in network.img to
+ support usb floppies when loading second floppy
+
+2004-02-10 18:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, detect_devices.pm, install_steps.pm: no
+ need to fake scsi for ide anymore (hopefully!)
+
+2004-02-10 17:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/keymaps.tar.bz2: update
+
+2004-02-10 17:01 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po,
+ pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2004-02-10 16:34 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Use logdrake mail method,
+ allow definition of SMTP server. (Arnaud de Lorbeau)
+
+2004-02-10 16:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/services.pm: for install, a service is on if there
+ is at least one runlevel for which the service is on (esp. for
+ service "dm") (bugzilla #7146)
+
+2004-02-10 15:25 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/: dis-04.pl, dis-09.pl, dis-11.pl,
+ ppp-09.pl, ppp-11.pl, pwp-04.pl, pwp-05.pl, pwp-06.pl: Update
+
+2004-02-10 14:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not allow to step forward
+ if no network card was found (workaround #7672). we'd better be
+ able to manually add an unsupported network card though.
+
+2004-02-10 14:33 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2004-02-10 13:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/keyboard.pm: rewrite & cleanup. Now works with
+ kernel 2.6, don't know exactly why...
+
+2004-02-10 13:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: we don't KTYP anymore, but we need
+ K_NOSUCHMAP
+
+2004-02-10 13:33 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/dwd-06.pl: Update
+
+2004-02-10 13:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: add unpack_with_refs()
+
+2004-02-10 13:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-0.10mdk
+
+2004-02-10 13:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-02-10 12:41 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/: dwd-02.pl, dwd-06.pl, dwd-09.pl:
+ Update
+
+2004-02-10 12:40 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - add 'ath' and 'wlan' to
+ ethernet kind - use regexp once
+
+2004-02-10 11:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po,
+ pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2004-02-10 11:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: better code for detecting if the window is
+ hidden or not (fixes embedded drakconnect wizard should be popped
+ window) (bugzilla #7246)
+
+2004-02-10 11:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: have modal windows
+
+2004-02-10 11:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: prefer BoardName to
+ card_name
+
+2004-02-10 10:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: remove many warnings about unitialised
+ value (causing a bug in diagnostics.pm?)
+
+2004-02-10 10:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: remove postfix from naughtyServers (fix
+ titi)
+
+2004-02-10 03:08 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Undo some of the breakage,
+ format is still wrong :(
+
+2004-02-10 02:52 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: update
+
+2004-02-10 01:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/pkgs.pm: warn when installing postfix server (#7102)
+
+2004-02-10 01:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/pkgs.pm: fix not warning about apache2 servers
+ (#7559)
+
+2004-02-10 01:20 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Remove confusing "On hard
+ drive" checkbox from wizard (Arnaud de Lorbeau)
+
+2004-02-10 01:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (mapIntfToDevice) match pci
+ function too (not that important since we do not know of any
+ ethernet pci card that export two functions on the pci bug but
+ anyway it's saner)
+
+ note that we do not match for pci domain since ldetect does not
+ report it
+
+2004-02-10 01:09 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Fix failure to disable user
+ cron job. Code reduction.
+
+2004-02-09 23:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-0.9mdk
+
+2004-02-09 23:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix unability to select
+ gateway (#7585)
+
+2004-02-09 23:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: (appli_choice) fix crash on
+ option toggling (#7248)
+
+2004-02-09 22:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getNet) detect athX interfaces
+ too (maybe should we inverse this func logic and blacklist ppp
+ and the like interfaces ...)
+
+2004-02-09 18:26 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Thierry compliance. Doesn't
+ work anymore and fails perl_checker now :P
+
+2004-02-09 18:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-0.8mdk
+
+2004-02-09 18:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix empty list in "multiple
+ internet_connexions" step
+
+2004-02-09 18:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix unwritten ethernet
+ interface config
+
+2004-02-09 18:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (ether_conf) rename it as
+ write_ether_conf()
+
+2004-02-09 17:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (mapIntfToDevice) fix pci/usb
+ ethernet devices matching
+
+2004-02-09 17:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: sort ethX interfaces in list
+
+2004-02-09 16:56 Guillaume Cottenceau
+
+ * perl-install/Xconfig/resolution_and_depth.pm: RIVA128 fails
+ miserably when using 16bpp
+
+2004-02-09 15:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: blacklist bogus forcedeth
+ driver for network hotplugging, enable ifplugd support for all
+ other drivers even at install time (#7389)
+
+2004-02-09 15:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: use modal windows during
+ install
+
+2004-02-09 15:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: remove show_all that breaks when there are
+ some hidden windows
+
+2004-02-09 15:54 Guillaume Cottenceau
+
+ * perl-install/install_gtk.pm: resurrect 9.2 code for setting
+ background. i was said to remove it for move because default
+ colour is already mandrake colour but obviously it isn't.
+
+2004-02-09 15:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: fix typo
+
+2004-02-09 15:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: some eide Lite-on drivers are
+ reported with different casse
+
+2004-02-09 14:48 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-02-09 14:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps.pm, install_steps_interactive.pm,
+ Xconfig/card.pm, standalone/XFdrake: handle allowNVIDIA_rpms &
+ allowATI_rpms directly in Xconfig::card::install_server
+
+2004-02-09 14:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: allow set_modal for popped windows at
+ install
+
+2004-02-09 14:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/.cvsignore: my test file is now t.pl
+
+2004-02-09 13:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: fix typo
+
+2004-02-09 11:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: force XF4 on all archs
+
+2004-02-09 09:02 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: update
+
+2004-02-08 18:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Makefile.config, Makefile.drakxtools, common.pm,
+ drakxtools.spec, install_steps_gtk.pm, mouse.pm, Xconfig/test.pm,
+ c/stuff.xs.pl, xf86misc/.cvsignore, xf86misc/Makefile,
+ xf86misc/Makefile.PL, xf86misc/main.pm, xf86misc/main.xs: move
+ Xtest() and setMouseLive() out of c/stuff to xf86misc::main so
+ that we can use them (esp. setMouseLive) in standalone without
+ making drakxtools-newt require xfree libs
+
+2004-02-08 18:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/Newt/.cvsignore: simplify
+
+2004-02-08 14:29 Pixel <pixel at mandriva.com>
+
+ * move/move.pm, perl-install/install_steps_interactive.pm: adapt to
+ change allowing checking nvidia/ati proprietary driver
+ availability only when needed
+
+2004-02-08 11:50 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Committing Arabeyes.org Arabic
+ translation
+
+2004-02-08 07:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-02-08 04:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: XFdrake can run w/o gtk+ toolkit
+
+2004-02-08 04:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-0.7mdk
+
+2004-02-08 03:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-02-08 02:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: Xconfig/card.pm, standalone/XFdrake: make XFdrake
+ startup be instantenous for non nv|ati cards (allowNVIDIA_rpms
+ and allowATI_rpms tests used to cost us 99% of the long startup
+ time of XFdrake:-()
+
+2004-02-07 21:02 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po,
+ pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2004-02-07 18:30 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/logdrake: English typo and disambiguation
+ of some strings
+
+2004-02-07 06:46 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po,
+ pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2004-02-07 01:42 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: PXE image support,
+ researched by Venantius Kumar.
+
+2004-02-06 23:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-0.6mdk
+
+2004-02-06 21:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/shorewall.pm: handle range (bugzilla #7172)
+
+2004-02-06 21:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: move drakbug, drakclock, drakperm,
+ drakTermServ, net_monitor in drakxtools too since they require
+ ugtk2. move their aliases (soft links) their too.
+
+2004-02-06 21:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/mousedrake: use ->create_okcancel instead
+ of doing it by hand (hopefully it will ensure better choice of
+ Ok/Cancel vs Cancel/Ok without breaking anything...)
+
+2004-02-06 21:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: draksec needs gtk, no must not be
+ in drakxtools-newt (bugzilla #7413)
+
+2004-02-06 21:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: - ensure ModelName comes from
+ the ddc probe when choosing "Plug'n Play" - only "Plug'n Play"
+ instead of "Plug'n Play (<ModelName>)" when current monitor is
+ not plug'n play
+
+2004-02-06 20:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: (fileshare_config): quite different way of
+ handling it, asking first if user wants sharing or not, then
+ asking which protocol (when users wants sharing). Removing or
+ installing the server package handling the protocols (smb or
+ nfs).
+
+2004-02-06 20:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: handle better bootloader per entries video
+ mode
+
+2004-02-06 20:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, bootloader.pm: special way to remove
+ mem=<memsize>
+
+2004-02-06 20:06 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/help.pm: Changed Newt/Previous strings to remove
+ arrows
+
+2004-02-06 19:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: remove defaulting global vga mode to normal
+
+2004-02-06 19:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: fix old typo: complete callback was not
+ called
+
+2004-02-06 19:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: drop bootloader main options "Compact" and
+ "Video mode"
+
+2004-02-06 19:38 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-02-06 18:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/mousedrake: - no special testing mouse in
+ embedded - use mouse::change_mouse_live()
+
+2004-02-06 18:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: use mouse::change_mouse_live()
+
+2004-02-06 18:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: - add change_mouse_live() - use /dev/mouse
+ in XF86Config to allow changing protocol in standalone
+
+2004-02-06 18:06 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Update for Discovery
+
+2004-02-06 17:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksound: advertize alsaconf too since
+ sndconfig failled for cards only managed by ALSA (#7456)
+
+2004-02-06 17:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/msec.pm: fix draksec not saving options
+ when config file do not exists :-(
+
+2004-02-06 17:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-02-06 16:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: workaround gtk limitation
+ #133489
+
+2004-02-06 16:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: (alert_config) do not complain
+ when removing non existing cron entry (aka when one run twice the
+ disable path)
+
+2004-02-06 16:36 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, help-it.pot, help-zh_CN.pot, help_xml2pm.pl, hi.po, hr.po,
+ hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po, mk.po,
+ mn.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po,
+ tg.po, th.po, tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po,
+ zh_CN.po, zh_TW.po: updated pot file
+
+2004-02-06 16:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: workaround gtk limitation
+ #133489
+
+2004-02-06 16:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: help perl_checker regarding
+ comments for translators
+
+2004-02-06 16:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-0.5mdk
+
+2004-02-06 16:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (new) remove unused flush()
+
+2004-02-06 16:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (new) fix pixel breaking non wizard
+ embedded case while cleaning :-(
+
+2004-02-06 15:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: please perl_checker
+
+2004-02-06 15:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: following quintela's lilo change,
+ allowing lilo labels up to 31 characters
+
+2004-02-06 14:16 Warly <warly at mandriva.com>
+
+ * perl-install/standalone/drakboot: Warn if the user is not in
+ framebuffer mode, but allow to see the installed theme. Do not
+ perform autologin config in splash mode Better parsing of current
+ resolution from detect-resolution
+
+2004-02-06 13:51 Guillaume Cottenceau
+
+ * mdk-stage1/url.c: log server http response
+
+2004-02-06 13:39 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: shrink_topwindow: add (force gtk to
+ recompute size of topwindow, when some child widgets got
+ destroyed or shrinked)
+
+2004-02-06 13:21 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - do only one regexp on
+ $interface - more readable repack
+
+2004-02-06 13:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-0.4mdk
+
+2004-02-06 13:11 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - add sub check_field -
+ check IPs - delete BOOTPROTO when not needed
+
+2004-02-06 12:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-02-06 12:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: wireless step: add an hint
+ for translators
+
+2004-02-06 12:35 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/: dwd-02.pl, dwd-04.pl, dwd-05.pl,
+ dwd-06.pl, dwd-07.pl, dwd-08.pl, dwd-09.pl: Update
+
+2004-02-06 12:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: split wireless step into two
+ steps since there way too much options
+
+2004-02-06 12:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix layout in drakconnect
+
+2004-02-06 12:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix wireless settings
+ (references being made too early)
+
+2004-02-06 12:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: (main) try first to match a
+ pcmcia device before trying to match pci/usb when looking for
+ module (#7431)
+
+2004-02-06 12:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/: help.pm, share/po/help-de.pot,
+ share/po/help-es.pot, share/po/help-fr.pot, share/po/help-it.pot,
+ share/po/help-ru.pot, share/po/help-zh_CN.pot: update from xml
+
+2004-02-06 12:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/help_xml2pm.pl: - handle zh_CN.po - handle
+ tags <phrase> and <hardware>
+
+2004-02-06 11:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: don't test X config if using driver
+ vmware (bugzilla #5346)
+
+2004-02-06 02:11 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Provide more detailed info on
+ files backed up/ignored. <Anthill #306> Cleanup some of the
+ redundant code in the actual backup routines.
+
+2004-02-05 23:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (get_eth_cards) try first to
+ match a pcmcia device before trying to match pci/usb ones when
+ looking for real device's name (#7401)
+
+2004-02-05 22:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: typo fix (spoted by Per Øyvind
+ Karlsen)
+
+2004-02-05 21:52 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cs.po: updated Czech file
+
+2004-02-05 21:25 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sl.po: updated Slovenian file
+
+2004-02-05 21:20 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: ichanged console uz keyboard to uz.uni
+
+2004-02-05 21:01 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2004-02-05 20:19 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po,
+ pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2004-02-05 18:55 Guillaume Cottenceau
+
+ * perl-install/standalone/drakconnect: Informations doesn't exist
+ in english, use Information instead (no need to update the POs,
+ they already contain Information elsewhere)
+
+2004-02-05 18:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: enable one to not enter
+ optional parameters (aka relax checks on valid values for bitrate
+ and frequency) (#7432)
+
+2004-02-05 16:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: upcase protocol name
+
+2004-02-05 16:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-02-05 15:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: another typo fix regarding firewall
+
+2004-02-05 15:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: typo fixes (cosmic flo)
+
+2004-02-05 15:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/dav.pm: remove "Quit" icon
+
+2004-02-05 14:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakboot: write fstab for /tmp using
+ tmpfs when "clean /tmp" is chosen
+
+2004-02-05 14:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: fix ugly typo (occuring when removing "clean
+ /tmp", ie not often, especially since drakboot didn't write
+ fstab)
+
+2004-02-05 14:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/: main.pm, parse.pm, xfree.pm, xfreeX.pm: -
+ add ->prepare_write to allow comparing raw_X's - ensure
+ "config_changed" is returned only if the config file really
+ changed
+
+2004-02-05 13:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: simplify _create_window() prototype
+
+2004-02-05 12:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (new) add a border too when embedded
+
+2004-02-05 11:50 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2004-02-05 11:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: since we use WrappedLabel, it's
+ better not to warp_text()
+
+2004-02-05 11:27 Guillaume Cottenceau
+
+ * perl-install/any.pm: this part of code is already executed only
+ in $::isInstall
+
+2004-02-05 11:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: install_steps is a do_pkgs, so add
+ "use do_pkgs"
+
+2004-02-05 11:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: allow 24bpp for DRI
+ (since all drivers now support it: we had mga tdfx r128 radeon,
+ and i810 also works (tested on a i865))
+
+2004-02-05 02:17 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/zh_CN.po: updated Chinese file
+
+2004-02-05 00:50 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: lang.pm, pixmaps/langs/lang-uz.png,
+ pixmaps/langs/lang-uz@Latn.png: more locale fixes; and changed
+ images for Uzbek to default to cyrillic
+
+2004-02-05 00:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: use protocol "ExplorerPS/2" instead of
+ "auto" for kernel 2.6
+
+ (not statisfying since people booting with kernel 2.4 will not
+ get a working mouse, but at least we can test if this really
+ works nicely for 2.6)
+
+2004-02-05 00:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: rename $ugtk2::force_center
+ used at install with $ugtk2::force_center_at_pos the boolean
+ $ugtk2::force_center value used standalone is kept as before
+
+2004-02-05 00:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/icons/wiz_default_left.png: remove $draw2
+ (in ugtk2.pm) and wiz_default_left.png which are unused
+
+2004-02-05 00:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/: standalone.pm, standalone/harddrake2: $::noBorder
+ is deprecated (it was the same as !$::isInstall)
+
+2004-02-05 00:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: - rename $ugtk2::force_center used at
+ install with $ugtk2::force_center_at_pos the boolean
+ $ugtk2::force_center value used standalone is kept as before
+
+ - deprecate $::noBorder (it was the same as !$::isInstall) -
+ deprecate $ugtk2::force_position (unused AFAIK)
+
+ - _create_window() now returns the created window, it doesn't
+ assign {rwindow} nor {window} anymore. It doesn't handle a
+ Frame for the window (it is now directly done by ugtk2->new
+ which is the only function using _create_window())
+
+ - deprecate option no_interactive_objects (unused AFAIK)
+
+ - {rwindow} is a VBox for both isWizard and isEmbedded (when
+ isEmbedded, a HBox was created, replacing the create VBox)
+
+ - call ->set_title on $::WizardWindow so that the title is
+ honored in non embedded wizard
+
+ - remove $draw2 and wiz_default_left.png which are unused
+
+ - remove ->set_uposition on $::WizardWindow for install. This is
+ not needed anymore since force_center_at_pos now works on
+ $::WizardWindow
+
+ - hoist $::WizardTable creation
+
+ - explicitly set the size of the window during install. The
+ chosen value is the same as before +9 pixels for the height
+ (the size needs to be fixed since the advertising images must
+ fit)
+
+ - remove the callbacks on expose_event and delete_event for non
+ embedded wizard. they are the same as the one in
+ _create_window() (except for the delete_event which explicitly
+ destroy the window, is that ok??)
+
+ more questions: - ->set_title on a plug may break, it needs
+ testing - flush() just after Gtk2::Plug->new, is it needed?
+ (since there is another flush())
+
+2004-02-05 00:19 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: a bit of locales corrections
+
+2004-02-04 23:48 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po,
+ pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2004-02-04 23:31 Guillaume Cottenceau
+
+ * docs/README: update netauto doc
+
+2004-02-04 21:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: replace 4.3 with 4.4 (XFree
+ version) (bugzilla #7378)
+
+2004-02-04 21:50 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm: we don't have modules ataraid hptraid
+ silraid pdcraid for 2.6
+
+2004-02-04 18:07 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/drakxtools.spec: - don't be afraid, this is not the
+ doc package but just perl module needed by drakhelp.
+
+2004-02-04 17:51 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/share/rpmsrate: - new mandrake-doc* names
+
+2004-02-04 17:10 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: compact declaration
+
+2004-02-04 17:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/lvm.pm: create /dev/mapper/control (needed when you
+ don't have devfs)
+
+2004-02-04 16:48 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: ethernet cards get via
+ get_eth_cards()
+
+2004-02-04 16:45 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/: network/ethernet.pm, network/netconnect.pm,
+ standalone/drakconnect: - add
+ network::ethernet::get_eth_cards_names - kill duplicated code
+
+2004-02-04 16:05 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/: network/netconnect.pm, standalone/drakconnect:
+ drop Storable and use Dumper (queen & pipi rulez)
+
+2004-02-04 15:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/lvm.pm: - replace PE_size with extent_size and get
+ it (fix illegal division by 0) - fix getting the output of pvs
+ vgs lvs commands (chomp_ is not enough because of spaces at the
+ end) - fix get_lvs() (and use lvs instead of vgdisplay)
+
+2004-02-04 15:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: - don't display start
+ sector and cylinders used for LVs - display "Number of logical
+ extents" of LVs
+
+2004-02-04 14:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm: ->ask_from_entry and
+ ->ask_from_entries are better with focus_first
+
+2004-02-04 14:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: (gtk_TextView_get_log): handle errors
+
+2004-02-04 13:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_gtk.pm: we now use XF4 during install, so we
+ can support ExplorerPS/2 (XF3 didn't know it)
+
+2004-02-04 13:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/do_pkgs.pm: (ensure_is_installed): file to test if
+ the package is installed is optional. But in that case, you have
+ to check if it is installed first.
+
+2004-02-04 12:51 Guillaume Cottenceau
+
+ * perl-install/standalone.pm:
+ http://www.gnu.org/prep/standards_18.html says --help and
+ --version are printed on standard output
+
+2004-02-04 12:27 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: typo fix...
+
+2004-02-04 12:10 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/timezone.pm: - less arguments in ntp_server, $prefix
+ no more passed to function args
+
+2004-02-03 17:39 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Maintain
+ /etc/passwd$$CLIENT$$ so mdkkdm has a valid userlist.
+
+2004-02-03 17:35 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/: network/netconnect.pm, standalone/drakconnect: -
+ fix adsl_conf_backend call - store and retreive network
+ interfaces via $config file
+
+2004-02-03 17:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix translator that ignore shortcut
+ hints
+
+2004-02-03 17:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules/interactive.pm: (config_window) do not even
+ try to hint the user about the parameter format on a 2.6.x kernel
+
+2004-02-03 17:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules/parameters.pm: (parameters) fix modinfo
+ parsing (format had been altered between modutils and
+ module-init-tools :-()
+
+2004-02-03 17:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: fix typo
+
+2004-02-03 16:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: fix typo
+
+2004-02-03 15:50 Guillaume Cottenceau
+
+ * mdk-stage1/modules.c: differentiate no floppy disk in driver or
+ ext2 fs
+
+2004-02-03 14:10 Guillaume Cottenceau
+
+ * mdk-stage1/dhcp.c: document when netauto is not provided and
+ bootfile DHCP server param is given
+
+2004-02-03 12:21 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-02-03 11:59 Guillaume Cottenceau
+
+ * mdk-stage1/doc/TECH-INFOS: more doc on DHCP server response conf
+
+2004-02-03 10:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: perl_checker fix
+
+2004-02-02 19:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone.pm: update drakfont help message
+
+2004-02-02 19:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone.pm: bump copyright
+
+2004-02-02 19:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone.pm: --help: documente new drakboot and
+ drakconnect parameters
+
+2004-02-02 19:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: make installer look smoother in
+ french
+
+2004-02-02 19:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: do not pass extra empty
+ invisible label (really cosmetic)
+
+2004-02-02 19:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: ugtk2.pm, interactive/gtk.pm: use wrapped labels
+ in various places
+
+2004-02-02 19:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix drakboot layout when localized
+ in french
+
+2004-02-02 19:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: fix drakboot layout: use checkboxes own
+ labels rather than packing extra labels
+
+2004-02-02 19:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: kill warning
+
+2004-02-02 19:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: only list wireless capabale
+ cards when one choose wireless cnx
+
+2004-02-02 19:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: remove unneeded next fields
+
+2004-02-02 19:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-02-02 18:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-0.3mdk
+
+2004-02-02 18:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: make cron script be able to use
+ either local smtp server or a remote one (arnaud)
+
+2004-02-02 18:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: add "remove cron entry" on
+ arnaud request
+
+2004-02-02 18:29 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/: dis-07.pl, dis-09.pl: Update
+
+2004-02-02 18:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/tools.pm: (is_wireless_intf) kill it since
+ it's no more usefull.
+
+ rationale: rather than duplicating modules list in
+ kernel/list_modules.pm and network/tools.pm (with usual sync
+ bugs), it's quite much easier to maintain one single list of
+ wireless modules in list_modules.pm
+
+2004-02-02 18:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: split out wireless
+ connections out of lan ones so that users are less confused
+
+2004-02-02 18:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: split out wireless modules in their own
+ category
+
+2004-02-02 17:57 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/: dis-01.pl, dis-02.pl, dis-03.pl,
+ dis-04.pl, dis-05.pl, dis-06.pl, dis-07.pl, dis-08.pl, dis-09.pl,
+ dis-10.pl, dis-11.pl, dwd-02.pl, dwd-03.pl, dwd-04.pl, dwd-05.pl,
+ dwd-06.pl, dwd-07.pl, dwd-08.pl, dwd-09.pl, ppp-01.pl, ppp-02.pl,
+ ppp-03.pl, ppp-04.pl, ppp-05.pl, ppp-06.pl, ppp-07.pl, ppp-08.pl,
+ ppp-09.pl, pwp-01.pl, pwp-02.pl, pwp-03.pl, pwp-04.pl, pwp-05.pl,
+ pwp-06.pl, pwp-07.pl, pwp-08.pl, pwp-09.pl, pwp-10.pl: Update
+
+2004-02-02 17:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po,
+ pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Cyrl.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated
+ pot file; changed Uzbek to default to cyrillic
+
+2004-02-02 17:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-0.2mdk
+
+2004-02-02 17:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix preselecting ppoa for
+ speedtouch modem
+
+2004-02-02 17:02 Nicolas Planel <nplanel at mandriva.com>
+
+ * kernel/list_modules.pm: add vt_ar5k Atheros wireless cards
+
+2004-02-02 17:00 Nicolas Planel <nplanel at mandriva.com>
+
+ * kernel/list_modules.pm: add divas isdn cards
+
+2004-02-02 16:58 Nicolas Planel <nplanel at mandriva.com>
+
+ * kernel/list_modules.pm: add airo_mpi wireless cards
+
+2004-02-02 16:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: remove debug message
+
+2004-02-02 16:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: add some packages for adsl
+
+2004-02-02 15:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10-0.1mdk
+
+2004-02-02 15:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: fix adsl modem detection
+
+2004-02-02 15:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_detect) fix modem detection
+ so that harddrake get full device meta data rather than plain
+ presence boolean
+
+2004-02-02 15:29 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/advertising/: dis-10.pl, pwp-09.pl: unified
+ phrases that are the same, to ease translating
+
+2004-02-02 15:06 Nicolas Planel <nplanel at mandriva.com>
+
+ * kernel/list_modules.pm: add prism54 wireless cards support
+
+2004-02-02 14:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: fix reading stage1 network
+ configuration
+
+2004-02-02 14:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: netconnect.pm, tools.pm: remove pseudo
+ global variables use from use_floppy()
+
+2004-02-02 14:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: adsl.pm, netconnect.pm: remove pseudo
+ global variables use from adsl_conf_backend()
+
+2004-02-02 14:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: this module does not need
+ anymore pseudo global variables
+
+2004-02-02 13:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: fix typo creating agpgart alias
+
+2004-02-02 13:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/: detect_devices.pm, install_steps.pm: - no ide-scsi
+ emulation for ide ZIPs - no ide-scsi emulation for cd burners
+ when kernel 2.6
+
+2004-02-02 13:23 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-02-02 13:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: handle new aureal drivers
+
+2004-02-02 12:47 Nicolas Planel <nplanel at mandriva.com>
+
+ * kernel/list_modules.pm: add aureal sound cards support
+
+2004-02-02 12:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-28mdk
+
+2004-02-02 12:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (get_eth_cards) handle not
+ loaded drivers
+
+2004-02-02 11:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: only install uim and anthil on cjk
+ boxes
+
+2004-02-01 11:31 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/de.po: updated German file
+
+2004-02-01 11:28 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: changed font names to match real font name
+ capitalization
+
+2004-02-01 11:26 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Committing Arabeyes.org's Arabic
+ translation.
+
+2004-01-31 21:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: add sources url
+
+2004-01-31 20:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: enable to set hostname even
+ when using DHCP (#7230)
+
+2004-01-31 02:24 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates soft/ftw/po/da.po
+ soft/initscripts/po/da.po soft/menudrake/po/da.po
+ soft/urpmi/po/da.po soft/wizard_perl/po/da.po
+ gi/perl-install/share/po/da.po
+
+2004-01-31 00:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: add anthy/uim better cjk input
+ methods
+
+2004-01-30 18:19 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/dwd-09.pl: Fix typo
+
+2004-01-30 18:19 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: add magicdev in SYSTEM for KDE or
+ GNOME
+
+2004-01-30 18:10 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/: dis-06.pl, dis-10.pl, dwd-01.pl,
+ dwd-02.pl, dwd-03.pl, dwd-04.pl, dwd-05.pl, dwd-06.pl, dwd-07.pl,
+ dwd-08.pl, dwd-09.pl, ppp-01.pl, ppp-02.pl, ppp-03.pl, ppp-04.pl,
+ ppp-05.pl, ppp-06.pl, ppp-07.pl, ppp-08.pl, ppp-09.pl, ppp-10.pl,
+ ppp-11.pl: Update
+
+2004-01-30 17:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-01-30 17:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/advertising/dwd-07.pl: share string with
+ dis-10.pl ppp-10.pl and pwp-09.pl
+
+2004-01-30 16:44 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nb.po: updated Norwegian file
+
+2004-01-30 16:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: add help method ->iter_each_children for
+ Gtk2::TreeModel
+
+2004-01-30 16:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: log one more change in -27mdk
+
+2004-01-30 16:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not offer to select dhcp
+ client when configuring static interfaces
+
+2004-01-30 16:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-27mdk
+
+2004-01-30 16:03 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: hack :( if ' ' is at the beginning of a
+ text section, don't forget it, substitute with an unbreakable
+ space because gtk allocates too much space otherwise
+
+2004-01-30 16:02 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - remove not needed
+ $security - clean dumb foreach repetition (one foreach to rule
+ them all)
+
+2004-01-30 16:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix crash on module lookup
+ when ifcfg-<intf> file is missing on disk (not yet configured
+ interface case)
+
+2004-01-30 16:01 Guillaume Cottenceau
+
+ * perl-install/install_messages.pm: bump up to 100errata
+
+2004-01-30 15:26 Nicolas Planel <nplanel at mandriva.com>
+
+ * kernel/list_modules.pm, perl-install/install_steps.pm: add/fix
+ various/agpgart section
+
+2004-01-30 15:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps.pm, modules.pm: xxx-agp is not
+ loaded at install, so when_load() is not the right place
+
+2004-01-30 14:15 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: add rpm-rebuilder and lm_sensors
+
+2004-01-30 13:10 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: add dvd+rw-tools in BURNER
+
+2004-01-30 12:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: the multiplication must be done with
+ type "long long" otherwise it overflows at 4GB
+
+2004-01-30 12:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table.pm: - tell kernel to remove the
+ extended partition - true/false is better than yes/no in log
+ message
+
+2004-01-30 12:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (conf_network_card_backend)
+ make type and interface arguments mandatory
+
+2004-01-30 12:02 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - show gateway in ethernet
+ only - hide gateway Entry in dhcp mode
+
+2004-01-30 12:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: perl_checker cleanups
+
+2004-01-30 11:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table.pm: enhance log message "tell kernel
+ ..."
+
+2004-01-30 11:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: force availlability of speedtouch
+ and eagle packages at install time
+
+2004-01-30 11:08 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: et.po, fi.po: updated Estonian and
+ Finnish files
+
+2004-01-30 00:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix changelog
+
+2004-01-30 00:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: kppp provider db reading:
+ blacklist spurious .directory entries
+
+2004-01-30 00:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: kill dead code
+
+2004-01-30 00:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-01-29 23:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: prevent the installer from
+ going back to proxy configuration (!!!) when pressinth the
+ previous button on first step of network config wizard :-)
+
+2004-01-29 23:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: cleanups enabled b/c of path
+ sharing between standalone tool and installer
+
+2004-01-29 23:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: replace iocharset= with nls= for ntfs (as
+ instructed by Thomas Backlund, thanks)
+
+2004-01-29 23:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: adsl.pm, ethernet.pm, isdn.pm,
+ netconnect.pm: convert some write_cnx_script() callers into
+ set_cnx_script() ones
+
+2004-01-29 23:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/tools.pm: (set_cnx_script) split it out of
+ write_cnx_script()
+
+ rationale:functions whose behavior is totally altered by
+ arguments number are insane should just be splited and their
+ callers be fixed
+
+2004-01-29 23:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (conf_network_card_backend)
+ insert a bug notice
+
+2004-01-29 23:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (conf_network_card_backend)
+ remove compat stuff since callers were cleaned up
+
+2004-01-29 23:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: network/netconnect.pm, network/network.pm,
+ standalone/drakconnect: replace conf_network_card_backend()
+ "detect" calls by get_eth_cards() ones
+
+2004-01-29 23:18 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po,
+ pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2004-01-29 22:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-26mdk
+
+2004-01-29 22:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-24mdk was never released
+
+2004-01-29 20:30 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: help-fr.pot, help-ru.pot: converted
+ help-*.pot files to utf-8 too (they MUST be of same encoding as
+ po files)
+
+2004-01-29 19:36 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: beautify ethernet cards name
+
+2004-01-29 19:08 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Configure clients with
+ defined IPs to set hostname so gnome works.
+
+2004-01-29 18:52 Guillaume Cottenceau
+
+ * perl-install/: install_steps_gtk.pm, ugtk2.pm,
+ share/advertising/dwd-01.pl, share/advertising/dwd-02.pl,
+ share/advertising/dwd-03.pl: advertising: - support leftish and
+ centered text - support arbitrary bold text with ml-like syntax
+ <b>foo</b> in strings - simplify get_text_coord and unexport it,
+ no one else than wrap_paragraph uses it nowadays
+
+2004-01-29 18:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-25mdk
+
+2004-01-29 18:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: help cperl-mode parsing this
+ file (drawback: perl_checker won't be happy)
+
+2004-01-29 18:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: simplify
+
+2004-01-29 18:01 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: shrink
+
+2004-01-29 17:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/help.pm: add help for newly introduced
+ MAIL_EMPTY_CONTENT item
+
+2004-01-29 17:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/help.pm: notify that timeout is in seconds
+
+2004-01-29 17:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/msec.pm: fix parsing of default values for
+ multi argument msec functions
+
+2004-01-29 17:07 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix modem login fetching
+
+2004-01-29 17:04 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - use nice interfaces name
+ (e.g. ethernet0 rather than eth0) - fix adsl loading and saving
+ calls
+
+2004-01-29 17:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix interface config file
+ writing
+
+2004-01-29 16:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix DHCP client installation
+
+2004-01-29 16:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: do not force page switch
+
+2004-01-29 16:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix static/dhcp step
+ branching
+
+2004-01-29 15:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-24mdk
+
+2004-01-29 15:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix ethernet network card
+ list
+
+2004-01-29 12:14 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-01-29 11:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: typo fix
+
+2004-01-29 11:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-23mdk
+
+2004-01-29 11:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix encapsulation pull down
+ menu filling
+
+2004-01-29 11:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: enable to alter
+ encapsulation, vci and vpi parameters in advanced mode
+
+2004-01-29 11:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: write cnx scripts for cable
+ connection too
+
+2004-01-29 11:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: fix encapsulation parameter
+
+2004-01-29 11:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: fix VPI parameter setting
+
+2004-01-29 11:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_conf_backend) fix disconnect
+ script
+
+2004-01-29 11:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_conf_backend) fix ppp's pty
+ server
+
+2004-01-28 19:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_probe_info) minor cleanups
+
+2004-01-28 19:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_conf_backend) new
+ configuration stuff
+
+2004-01-28 19:08 Nicolas Planel <nplanel at mandriva.com>
+
+ * kernel/list_modules.pm: support more sata controller sata_svw
+ ata_piix sata_promise
+
+2004-01-28 17:50 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: sucky toggled fix (queen
+ fix)
+
+2004-01-28 17:30 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - move radio buttons to
+ $gui->{intf_radio} - fix authentication menu wrongly used for
+ isdn
+
+2004-01-28 15:42 Guillaume Cottenceau
+
+ * mdk-stage1/: dns.c, network.c: allow having no DNS by only using
+ the ip callback once, see DNS == IP as a special case, don't do
+ DNS calls when no DNS is configured to avoid timeouts
+
+2004-01-28 14:36 David Baudens <baudens at mandriva.com>
+
+ * perl-install/pixmaps/: about.png, nosplash_thumb.png,
+ printerdrake.png, slpash-drakeprint-2.png: Update
+
+2004-01-28 13:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: removed useless variable
+
+2004-01-28 12:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: create
+ add_modify_remove_sensitive() and use it so that "Modify" and
+ "Remove" are non sensitive when the initial list is empty
+
+2004-01-28 12:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: modem.pm, netconnect.pm: simplify code
+ through format callback (thus enabling to centralize translatable
+ strings, thus reducing error risk)
+
+2004-01-27 20:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: - add gtk_new_TextView_get_log() and
+ gtk_TextView_get_log() which allow running a command in
+ background and get the filtered output in a TextView - add
+ Gtk2::OptionMenu::new_with_strings() which is a simple
+ combination of ->new, ->set_popdown_strings and ->set_text
+
+2004-01-27 19:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: typo fix
+
+2004-01-27 19:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: rollback debug stuff :-(
+
+2004-01-27 18:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: typo fix
+
+2004-01-27 18:06 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po,
+ lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po,
+ pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po,
+ sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po, uz@Cyrl.po,
+ vi.po, wa.po, zh_CN.po, zh_TW.po: fix typo s#Network name#Network
+ name#
+
+2004-01-27 18:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: get encapsulation default
+ value from provider db and offer to configure it
+
+2004-01-27 18:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: - add Retevision spanish
+ provider - add encapsulation default value
+
+2004-01-27 17:47 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix typo s/Netwok name
+ (ESSID)/Network name (ESSID)/
+
+2004-01-27 17:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-01-27 17:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: typo fix
+
+2004-01-27 17:16 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - fix Information page - use
+ mapIntfToDevice to get infos
+
+2004-01-27 17:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: adiusbadsl package was
+ renamed as eagle
+
+2004-01-27 16:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: default protocol for
+ speedtouch is pppoa
+
+2004-01-27 16:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not try to install "auto"
+ package
+
+2004-01-27 16:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: install needed packages w/o
+ second thoughs
+
+2004-01-27 16:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: remove extra argument
+
+2004-01-27 12:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add a step in order to select
+ a provider from kppp database
+
+2004-01-27 12:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: kill dead code
+
+2004-01-27 12:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_probe_info) vpi and vci
+ parameters are independant
+
+2004-01-27 12:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: configure adsl account
+
+2004-01-27 12:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: (isdn account step) -
+ directly use needed variables - kill uneeded fields
+
+2004-01-27 12:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: adsl_consts.pm, netconnect.pm: preset
+ domainname for a few known providers
+
+2004-01-27 12:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: typo fix
+
+2004-01-27 00:28 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Remove unused sub.
+
+2004-01-26 23:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: reuse values got from
+ provider db
+
+2004-01-26 23:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: rename dns fields as they're
+ named in netc structure
+
+2004-01-26 23:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (mapIntfToDevice) actually use
+ given interface rather than hardcoded "eth0"
+
+2004-01-26 23:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: cleanups
+
+2004-01-26 23:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: display nice "ethX: card
+ description" rather than raw interface name when selecting an
+ ethernet interface
+
+2004-01-26 22:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (get_eth_cards) - split it out
+ of conf_network_card_backend() (which still call it for
+ compatibility for now but sincefunctions whose behavior is
+ totally altered by arguments are insane should just be splited,
+ caller will be fixed then this compatibily call removed) - add
+ a third string in returned tuples (physical net device
+ description)
+
+2004-01-26 22:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (mapIntfToDevice) introduce it
+ in order to map a network interface to a pci/usb/... device
+
+2004-01-26 19:38 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Another cron issue reported
+ on Anthill.
+
+2004-01-26 18:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: reput back my changes that
+ poulpy gratuitously rollbacked because: - he hadn't update
+ network/*pm but only update standalone/drakconnect - he happilly
+ followed what perl_checker instrumentate him w/o any second
+ thoughs
+
+ next time damien, do not listen gc when he's explaining how he
+ resolves conflicts the first time he used cvs :-(
+
+2004-01-26 18:25 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - fix sucky fix
+
+2004-01-26 18:17 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - fix missing parameters -
+ add kind and protocol to $config - fix various issues from
+ $config changes
+
+2004-01-26 18:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: perl_checker was wrong
+
+2004-01-26 18:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: network/netconnect.pm, network/tools.pm,
+ standalone/drakconnect, standalone/net_monitor: get rid of global
+ variables regarding connect/disconnect scripts
+
+2004-01-26 17:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: (stop_internet)
+ init_globals()'s prefix parameter is dead
+
+2004-01-26 17:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: adsl.pm, ethernet.pm, isdn.pm,
+ netconnect.pm, network.pm, tools.pm: get rid of pseudo global
+ $prefix, just reuse global $::prefix :-)
+
+2004-01-26 17:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: kill unused down_it() and
+ up_it() functions
+
+2004-01-26 17:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix the cleanup
+
+2004-01-26 16:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: remove useless parenthessis
+
+2004-01-26 16:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: - pack add_modify_remove widget
+ growable - no need to size it
+
+2004-01-26 16:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: make wizard be faster when
+ trying to install speedtouch_mgmt and when firmware is already
+ present
+
+2004-01-26 16:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: share provider db for all usb
+ modems (vpi/vci parameters are need for most modem/protocol
+ combinaisons and anyway it's ok to guess the protocol and dns
+ servers for the end user)
+
+2004-01-26 16:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: new function
+ add_modify_remove_action()
+
+2004-01-26 16:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: fix typo
+
+2004-01-26 16:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list: perl Gtk2 has been rebuilt
+
+2004-01-26 16:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: add gtk_set_treelist
+
+2004-01-26 15:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: - let be faster when trying
+ to install already installed packages - fix next step name when
+ installing kppp
+
+2004-01-26 14:35 Guillaume Cottenceau
+
+ * mdk-stage1/modules.c: don't forget to umount additional drivers
+ floppy after successful copy of modules.mar (gc sux)
+
+2004-01-26 11:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/keyboard.pm: don't use ioctl KDSKBENT with kernel
+ 2.6, until fixed...
+
+2004-01-26 11:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakclock: (Repaint) help perl_checker in
+ checking time_to_rad() arguments
+
+2004-01-26 11:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakclock: (spinned) do not pass extra
+ arguments to time_to_rad()
+
+2004-01-26 10:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakclock: reindent gtkpack calls
+
+2004-01-26 10:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakclock: rename adj_* variables as adj*
+ in order to help cperl-mode parsing this file
+
+2004-01-26 03:14 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: Updates soft/control-center/po/da.po
+ soft/GtkMdkWidgets/po/da.po soft/mdkhtmlbrowser/po/da.po
+ soft/menudrake/po/da.po soft/rfbdrake/po/da.po
+ gi/perl-install/share/po/da.po
+
+2004-01-26 01:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: (getNetDriver) introduce getHwIDs()
+ alias that return pci/usb/... hw addr (or "N/A" for some isapnp
+ cards due to lack of support from drivers)
+
+2004-01-26 00:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: kill unused dhcp_hostname
+ step
+
+2004-01-26 00:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix again adsl type setting
+ :-(
+
+2004-01-25 23:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-01-25 23:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: modem connection: install
+ kppp
+
+2004-01-25 22:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: set adsl protocol to use
+ according to provider database when using a sagem 800 modem
+
+2004-01-25 22:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: modem connection: default to
+ pap/chap authentification method (should work for most people)
+
+2004-01-25 22:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: minor update
+
+2004-01-25 22:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: typo fix
+
+2004-01-25 22:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: typo fix
+
+2004-01-25 18:14 Youcef Rabah Rahal <rahal at arabeyes.org>
+
+ * perl-install/share/po/ar.po: Committing Arabeyes.org translation.
+
+2004-01-25 00:37 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: updated
+
+2004-01-24 17:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: s/ppptp/pptp/
+
+2004-01-24 17:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: factorize lan module search
+ for adsl through ethernet
+
+2004-01-24 16:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: make adsl device choose
+ somewhat readable (detabable though
+
+2004-01-24 16:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix adsl device setting :-(
+
+2004-01-24 16:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: kill unreachable code
+
+2004-01-24 16:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: kill unused variable
+
+2004-01-24 16:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: cleanup
+
+2004-01-23 20:42 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: perl_checker: assigned, but
+ not read
+
+2004-01-23 19:59 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: More perl_checker fixes.
+ Remove another unused sub. Fix broken sys, other restore.
+
+2004-01-23 19:58 Guillaume Cottenceau
+
+ * perl-install/modules.pm: don't miss the hook with 2.6 usb kernels
+ (might explain fredl problem with usb keyboard)
+
+2004-01-23 19:45 Guillaume Cottenceau
+
+ * rescue/tree/sbin/modprobe: support 2.4 and 2.6
+
+2004-01-23 19:35 Guillaume Cottenceau
+
+ * rescue/list: lsmod.old and rmmod.old also needed
+
+2004-01-23 19:33 Guillaume Cottenceau
+
+ * rescue/tree/bin/insmod: autoprobe? what's that?
+
+2004-01-23 18:53 Guillaume Cottenceau
+
+ * mdk-stage1/nfsmount.c: since dietlibc always reports null strings
+ for RPC errors, at least provide something useful instead
+
+2004-01-23 18:19 Guillaume Cottenceau
+
+ * docs/HACKING: wrong, "make" in kernel by hand is not even needed
+
+2004-01-23 18:04 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/: dis-01.png, dis-02.png,
+ dis-03.png, dis-04.png, dis-05.png, dis-06.png, dis-07.png,
+ dis-08.png, dis-09.png, dis-10.png, dis-11.png, dwd-01.png,
+ dwd-02.png, dwd-03.png, dwd-04.png, dwd-05.png, dwd-06.png,
+ dwd-07.png, dwd-08.png, dwd-09.png, ppp-01.png, ppp-02.png,
+ ppp-03.png, ppp-04.png, ppp-05.png, ppp-06.png, ppp-07.png,
+ ppp-08.png, ppp-09.png, ppp-10.png, ppp-11.png, pwp-01.png,
+ pwp-02.png, pwp-03.png, pwp-04.png, pwp-05.png, pwp-06.png,
+ pwp-07.png, pwp-08.png, pwp-09.png, pwp-10.png: Update
+
+2004-01-23 17:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix adsl connection type
+ retrieving
+
+2004-01-23 17:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix interface name when doing
+ adsl over an ethernet card
+
+2004-01-23 17:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: sort ADSL connection types
+
+2004-01-23 16:58 Guillaume Cottenceau
+
+ * docs/HACKING: update
+
+2004-01-23 16:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: offer to configure sagem800
+ (needed because of unfriendly vpi/vci parameters)
+
+2004-01-23 16:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: provider database needed in
+ oder to not arbitrary set obfuscated vpi and vci parameters
+
+2004-01-23 16:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_probe_info) make it aware of
+ the fact we now see the adsl modem and protocol separatly
+
+2004-01-23 15:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: remove debug message
+
+2004-01-23 15:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-01-23 14:59 Guillaume Cottenceau
+
+ * perl-install/standalone/printerdrake: "use USER" is unecessary
+ and probably comes from copy-pasting userdrake's GUI
+
+2004-01-23 14:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: checking {notFormatted} must never be done
+ alone, one must check {isFormatted} first!
+
+2004-01-23 14:35 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Rework timestamp for backup
+ files to please perl_checker.
+
+2004-01-23 14:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (ask_fromW) enable TreeView to
+ take all availlable space
+
+2004-01-23 14:01 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian po file
+
+2004-01-23 12:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: minor update
+
+2004-01-23 11:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-01-23 11:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: (search_dir_font) kill unused
+ variable
+
+2004-01-23 01:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po,
+ pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: upfdated pot file
+
+2004-01-23 00:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix doble "IP address"
+ entries
+
+2004-01-23 00:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: typo fix
+
+2004-01-23 00:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: config some stuff about adsl
+ protocol
+
+2004-01-23 00:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: kill debug statement
+
+2004-01-23 00:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: factorize out adsl protocols'
+ translations
+
+2004-01-22 23:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: get rid of uselesss
+ net_device variabl
+
+2004-01-22 23:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: code simplification due to
+ previous assertion
+
+2004-01-22 23:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: ensure struct XXX and o_XXX
+ parameters always reference the same hashes
+
+2004-01-22 23:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/: advertising/dwd-03.pl, po/DrakX.pot,
+ po/af.po, po/ar.po, po/az.po, po/be.po, po/bg.po, po/br.po,
+ po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po,
+ po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po,
+ po/fi.po, po/fr.po, po/ga.po, po/gl.po, po/he.po, po/hi.po,
+ po/hr.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po,
+ po/ko.po, po/lt.po, po/lv.po, po/mk.po, po/mn.po, po/ms.po,
+ po/mt.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po,
+ po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sq.po, po/sr.po,
+ po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/th.po, po/tr.po,
+ po/uk.po, po/uz.po, po/uz@Cyrl.po, po/vi.po, po/wa.po,
+ po/zh_CN.po, po/zh_TW.po: s/(Mandrake Linux is one) (the most
+ widely used)/\1 of \2/
+
+2004-01-22 22:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: help perl_checker
+
+2004-01-22 22:20 Guillaume Cottenceau
+
+ * mdk-stage1/probing.c: moving forward our story with nice kernel
+ guys, now they decided to remove the trailing space at the end of
+ "Attached devices:" of /proc/scsi/scsi, probably that they had
+ nothing more interesting to do this day
+
+2004-01-22 21:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: draksound doesn't write the
+ sound alias b/c of wrong comparison with the default driver, thus
+ not configuring not yet configured cards (#6988)
+
+2004-01-22 21:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: XFdrake, diskdrake, drakTermServ,
+ drakautoinst, drakbackup, drakboot, drakbug, drakconnect,
+ drakedm, drakfirewall, drakfloppy, drakfont, drakgw, drakhelp,
+ drakproxy, drakpxe, draksec, draksound, drakupdate_fstab,
+ drakxtv, fileshareset, logdrake, net_monitor, printerdrake,
+ scannerdrake: update copyright notices
+
+2004-01-22 21:42 Pixel <pixel at mandriva.com>
+
+ * Makefile: upload images/boot.iso
+
+2004-01-22 21:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (ask_fromW) gc prefers ->isa()
+
+2004-01-22 21:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: remove never implemented
+ --strong option
+
+2004-01-22 20:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: perl_checker cleanups
+
+2004-01-22 19:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: perl_checker cleanups
+
+2004-01-22 19:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: minor cleanups
+
+2004-01-22 19:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: perl_checker cleanups
+
+2004-01-22 19:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (gtkadd_widget) introduce it for size
+ groups
+
+2004-01-22 19:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (ask_fromW) enable properly
+ setted checkbuttons (aka those who correctly use text instead of
+ label) to take all the place they need, thus preventing spurious
+ horizontal scrolling bar to show up
+
+2004-01-22 18:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: when configuring an ethernet
+ card, skip the protocol choice step for any cnx type different
+ than lan (eg: for cable and adsl connections)
+
+2004-01-22 18:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules/interactive.pm: help perl_checker
+
+2004-01-22 18:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/stdio.pm: $def_n is unused
+
+2004-01-22 18:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: remove unused variable
+
+2004-01-22 18:14 Guillaume Cottenceau
+
+ * mdk-stage1/modules.c: better do 2.4->2.6 compat module alias as
+ soon as possible to display correct stuff in logs and simplify
+ code
+
+2004-01-22 18:09 Guillaume Cottenceau
+
+ * mdk-stage1/: adsl.c, cdrom.c, disk.c, lomount.c, modules.c,
+ modules.h, mount.c, network.c, probing.c, stage1.c,
+ pcmcia_/cardmgr.c: until we haven't loaded the usb interface and
+ the keyboard usb driver, we can't allow asking for additional
+ drivers floppy, so need another parameter to my_insmod to
+ indicate in which situation we are
+
+2004-01-22 17:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: fix button label
+
+2004-01-22 17:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - fix untraslated strings -
+ upcase tcp/ip
+
+2004-01-22 17:37 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - remove _radio suffix -
+ prevent undefined value to be get_texted
+
+2004-01-22 17:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: rollback debug stuff :-(
+
+2004-01-22 17:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_conf_backend) kill
+ interactive code (was merged into adsl wizard)
+
+2004-01-22 17:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/tools.pm: (copy_firmware) kill it (was
+ merged into add intf wizard
+
+2004-01-22 17:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: handle speedtouch firmware if
+ needed
+
+2004-01-22 17:05 Guillaume Cottenceau
+
+ * mdk-stage1/modules.c: when checking for modules already loaded,
+ be sure to check for the real name
+
+2004-01-22 16:53 Guillaume Cottenceau
+
+ * mdk-stage1/modules.c: ensure insmod will try to access correct
+ filename according to 2.4->2.6 compat mapping
+
+2004-01-22 16:52 Guillaume Cottenceau
+
+ * mdk-stage1/modules.c: really display filename when "error
+ reading" a file to insmod in 2.6
+
+2004-01-22 16:42 Guillaume Cottenceau
+
+ * mdk-stage1/Makefile: stage1-network-usb is deprecated
+
+2004-01-22 16:31 Guillaume Cottenceau
+
+ * tools/cvslog2changelog.pl: clean up users
+
+2004-01-22 16:30 Guillaume Cottenceau
+
+ * tools/cvslog2changelog.pl: add planou
+
+2004-01-22 16:30 Pixel <pixel at mandriva.com>
+
+ * Makefile: fix typo
+
+2004-01-22 16:28 Guillaume Cottenceau
+
+ * kernel/modules.pl: fs/network should be unneeded in network.img
+ and network.img is close to full up already, move it to the
+ drivers floppy
+
+2004-01-22 16:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: do not mix before and after
+ firmware upload usb ids
+
+2004-01-22 16:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: detect ECI like modems and
+ warn we cannot support them (hence less pressure on our support
+ services)
+
+2004-01-22 16:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_detect) detect ECI modems
+
+2004-01-22 16:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix typo fix
+
+2004-01-22 16:15 Guillaume Cottenceau
+
+ * kernel/modules.pl: revive network.img, use an additional
+ network_drivers.img, put back many discarded modules
+
+2004-01-22 16:13 Guillaume Cottenceau
+
+ * make_boot_img: we always have a remaining img mounted after
+ building images, can't see why, i think it's better to umount
+
+2004-01-22 16:12 Guillaume Cottenceau
+
+ * make_boot_img: revive network.img and allow a drivers second
+ floppy to be used with
+
+2004-01-22 16:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getECI) introduce it in order to
+ detect eci like usb modems
+
+2004-01-22 15:56 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - further s/cnx/intf/ -
+ remove old code
+
+2004-01-22 15:40 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: prefer kernel 2.6
+
+2004-01-22 15:36 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: fix removing cdrom-changeloop.img
+
+2004-01-22 15:28 Pixel <pixel at mandriva.com>
+
+ * kernel/check_mar.pl: update
+
+2004-01-22 15:21 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: handle 2 boot kernels in distro
+
+2004-01-22 15:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: typo fix :-(
+
+2004-01-22 15:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: tag speedtouch and eci
+ connections as to be restarted as in old wizard
+
+2004-01-22 15:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: rename old end adsl step
+
+2004-01-22 15:11 Warly <warly at mandriva.com>
+
+ * make_boot_img: new progress bar layout
+
+2004-01-22 14:40 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: do not test $intf but $gui,
+ poulpy sux
+
+2004-01-22 14:39 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: drop cdrom-changedisk (was used on CD2, but not
+ useful, dixit support team)
+
+2004-01-22 14:37 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix isdn modem page
+
+2004-01-22 14:37 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: build boot.iso
+
+2004-01-22 14:33 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: factorise gui set_text
+
+2004-01-22 14:21 Pixel <pixel at mandriva.com>
+
+ * Makefile, make_boot_img: - Makefile doesn't know anymore which
+ .img are built it's better that way since make_boot_img rules
+ were not clean (isolinux was built when building all.rdz, ...)
+ - make_boot_img cleanup, perl_checker compatible...
+
+2004-01-22 14:19 Pixel <pixel at mandriva.com>
+
+ * tools/Makefile: rpmtools and perl-URPM are still 5.8.2
+
+2004-01-22 13:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: install needed package
+ depending of modem
+
+2004-01-22 13:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: rollback
+
+2004-01-22 13:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add static configuration for
+ sagem800 spanish users
+
+2004-01-22 13:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: hide too big label (which is
+ useless because of above text) but keep it for translation b/c of
+ further reusage
+
+2004-01-22 12:29 Guillaume Cottenceau
+
+ * mdk-stage1/modules.c: nice kernel guys like to change modules
+ names for no reasons when they have a break
+
+2004-01-22 12:28 Guillaume Cottenceau
+
+ * kernel/list_modules.pm: need also usb 1.x adapters drivers of 2.6
+ name style
+
+2004-01-22 12:15 Pixel <pixel at mandriva.com>
+
+ * kernel/modules.pl: - return the list of rdz (eg: cdrom, all,
+ pcmcia) - drop rdz network* and hd*
+
+2004-01-22 12:14 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: use the list of modules (eg: cdrom, all,
+ pcmcia) given by modules.pl
+
+2004-01-22 12:14 Pixel <pixel at mandriva.com>
+
+ * kernel/check_mar.pl: check cdrom & all instead of network & hd
+
+2004-01-22 12:12 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - drop detection, will use
+ interface scheme ($config) - use $interface_kind
+
+2004-01-22 11:54 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: drop now unused code
+
+2004-01-22 11:51 Guillaume Cottenceau
+
+ * perl-install/modules.pm: nice kernel guys spend their free time
+ renaming modules for fun
+
+2004-01-22 11:51 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix broken MII_NOT_SUPPORTED
+ and HWADDR
+
+2004-01-22 11:43 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: add dns3 entry
+
+2004-01-22 11:43 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: the rpm passed as parameter can now be a
+ relative file or an absolute file
+
+2004-01-22 11:24 Guillaume Cottenceau
+
+ * mdk-stage1/doc/TECH-INFOS: disk will also need the directory
+
+2004-01-22 03:56 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: updated
+
+2004-01-21 23:43 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/scannerdrake: Updated title bar texts of
+ error pop-ups.
+
+2004-01-21 23:36 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: Added title bar
+ texts for error and warning pop-ups.
+
+2004-01-21 22:49 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: scanner.pm, printer/main.pm,
+ printer/printerdrake.pm, standalone/printerdrake,
+ standalone/scannerdrake: Removed occurences of "Mandrake" from
+ translateable strings.
+
+2004-01-21 19:39 Guillaume Cottenceau
+
+ * perl-install/network/netconnect.pm: perl checker fixes
+
+2004-01-21 19:37 Guillaume Cottenceau
+
+ * perl-install/modules.pm: misc change: more readable way of
+ setting usb-interface alias
+
+2004-01-21 19:11 Guillaume Cottenceau
+
+ * mdk-stage1/: modules.c, modules.h, stage1.c: add capability to
+ use an additional drivers floppy
+
+2004-01-21 18:55 Nicolas Planel <nplanel at mandriva.com>
+
+ * kernel/list_modules.pm, perl-install/modules.pm: add *-agp module
+ support
+
+2004-01-21 18:54 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: retreive vpi and vci from config
+ file for speedtouch
+
+2004-01-21 18:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: really use the same path in
+ standalone and install mode
+
+2004-01-21 18:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add new first adsl steps
+
+2004-01-21 18:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: rename old adsl step
+
+2004-01-21 18:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (adsl_detect) - remove useless
+ parameter - always return an hash, even if empty (simplify caller
+ code)
+
+2004-01-21 18:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: factorize lan detection
+ (needed for adsl)
+
+2004-01-21 18:07 Guillaume Cottenceau
+
+ * mdk-stage1/modules.c: network_gigabit_usb doesn't exist anymore
+
+2004-01-21 17:18 Pixel <pixel at mandriva.com>
+
+ * Makefile: add image hd_grub.img
+
+2004-01-21 17:16 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: - add building of hd_grub.img - perl_checker fixes
+
+2004-01-21 15:59 Guillaume Cottenceau
+
+ * perl-install/share/po/fr.po: fix typo
+
+2004-01-21 15:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-01-21 15:12 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po,
+ pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2004-01-21 14:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fixed typo
+
+2004-01-21 13:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/: ugtk2.pm, interactive/gtk.pm: - fix sizing main
+ window - always use a scrolled window when non pop_it (so that
+ the buttons are at the bottom)
+
+2004-01-21 12:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: don't pass empty options, new insmod
+ doesn't like it
+
+2004-01-21 11:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: perl_checker fix
+
+2004-01-21 11:34 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: hi.po, pl.po: updated Hindi file;
+ corrected syntax error in Polish file
+
+2004-01-21 11:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: simplify
+
+2004-01-21 01:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Makefile, share/po/Makefile: remove checking "$"
+ in po strings, perl_checker takes care of this correctly (ie.
+ N("a\$b") will get string "a$b" in po which is ok, whereas
+ N("a$b") gives an error)
+
+2004-01-21 00:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list, rescue/list: replace PERL_VERSION with
+ current version of some perl modules
+
+2004-01-21 00:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: - ugly hack to temporary handle reading
+ ide_cd in /proc/modules whereas we insmoded ide-cd - removing
+ load_ide() (unused)
+
+2004-01-21 00:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: modules::load_ide() is removed,
+ now we use the same as install_step_interactive
+
+2004-01-20 23:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: do not try anymore to have small
+ pop_it dialog boxes. Make them all the same size and so drop all
+ the (big) code trying to use scrolled windows only when needed
+ and to size them appropriately
+
+2004-01-20 23:15 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: revert warly's committing debug things
+
+2004-01-20 20:04 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated partially
+
+2004-01-20 18:39 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po,
+ pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2004-01-20 18:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/modem.pm: remove useless LOGIN field
+
+2004-01-20 18:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/modem.pm: do not gratuitously reinvent
+ write_secret_backend()
+
+2004-01-20 18:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: share same path in both
+ standalone and in install mode (2/2)
+
+2004-01-20 18:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not offer to enter domain
+ name twice
+
+2004-01-20 18:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-22mdk
+
+2004-01-20 18:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * make_boot_img: rollback warly debug message
+
+2004-01-20 18:13 Pixel <pixel at mandriva.com>
+
+ * docs/HACKING: update (thanks to Sunny Dubey)
+
+2004-01-20 17:34 Warly <warly at mandriva.com>
+
+ * make_boot_img: adap bmp2mdk command line to new syslinux boot
+ image
+
+2004-01-20 17:31 Warly <warly at mandriva.com>
+
+ * isolinux-graphic.bmp: new install boot image for 10.0 beta
+
+2004-01-20 17:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: fix #6944: ensure proper perms
+ on /etc/profile.d/proxy.{,c}sh (pieleric@etu.utc.fr)
+
+2004-01-20 17:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: share same path in both
+ standalone and in install mode
+
+2004-01-20 17:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: read back auth method
+
+2004-01-20 17:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/modem.pm: s/N('...')/N("...")/
+
+2004-01-20 16:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: read back new fields
+
+2004-01-20 16:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/modem.pm: save login in ifcfg-ppp0
+
+2004-01-20 16:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/modem.pm: save ip if needed
+
+2004-01-20 16:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: in setupBootloader__entries(): - move vga
+ and initrd from $::expert to advanced - drop setting read-write,
+ table, unsafe
+
+2004-01-20 16:29 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: update
+
+2004-01-20 16:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/modem.pm: fix dyn/static stuff
+
+2004-01-20 16:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix gateway reading and
+ writing
+
+2004-01-20 16:19 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakgw: install the squid package, if
+ necessary
+
+2004-01-20 16:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/modem.pm: fix static/dyn settings
+
+2004-01-20 16:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: modem.pm, netconnect.pm: - handle PAP/CHAP
+ auth method too - translate again strings
+
+2004-01-20 15:58 Warly <warly at mandriva.com>
+
+ * perl-install/share/logo-mandrake.png: cooker logo
+
+2004-01-20 15:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/modem.pm: handle more kppp options from new
+ steps
+
+2004-01-20 15:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: use checkbow's label
+
+2004-01-20 15:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: disable wen and dns until fixed
+
+2004-01-20 15:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: dyn hostname is a boolean
+
+2004-01-20 15:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/modem.pm: make sections more visible in
+ generated kppprc conf file
+
+2004-01-20 15:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: - split ppp steps into
+ account, ip, dns and gateway parameters step - offer to configure
+ more ip, dns and gateway parameters
+
+2004-01-20 15:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: rename ppp_choose as
+ ppp_account
+
+2004-01-20 14:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: typo fix
+
+2004-01-20 14:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: simplify
+
+2004-01-20 14:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: go to wireless step if needed
+
+2004-01-20 13:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: fix mount point /tmp/image for the cdrom in
+ generated /etc/fstab
+
+2004-01-20 13:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: always go to hostname step
+ (shared by all paths)
+
+2004-01-20 13:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: kill old cable step
+
+2004-01-20 13:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: install requested dhcp client
+
+2004-01-20 13:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add hidden option enabling to
+ select dhcp client
+
+2004-01-20 13:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: skip protocol step when
+ configuring cable connection
+
+2004-01-20 13:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: cable is like lan but with
+ dhcp
+
+2004-01-20 13:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: set connection type at one
+ point only
+
+2004-01-20 13:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps.pm, install_steps_interactive.pm:
+ help perl_checker seeing charsetChanged even if known
+ install_steps_* can be seen
+
+2004-01-20 12:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/modem.pm: simpkify %toreplace build
+
+2004-01-20 12:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: fix wizard layer usage (b/c of new
+ api)
+
+2004-01-20 12:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: remove useless parameter
+
+2004-01-20 12:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: load adsl wizard on demand
+
+2004-01-20 12:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: (get_subwizard) introduce the
+ infrastructure that enable to load a part of a wizard from
+ another module
+
+2004-01-20 12:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/advertising/Makefile: CVS has all the
+ advertisings, but only upload the dwd (download) one
+
+2004-01-20 12:51 (Hilbert) 廖唯鈞 <h at mandrake.org>
+
+ * perl-install/share/po/zh_TW.po: This is a test commit
+
+2004-01-20 12:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps.pm, modules.pm,
+ modules/parameters.pm: kernel 2.6 .ko adaptation
+
+2004-01-20 12:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/commands.pm: cleanup & kernel 2.6 .ko adaptation
+
+2004-01-20 12:47 Pixel <pixel at mandriva.com>
+
+ * kernel/modules.pl: not enough room on cdrom.img, removing a
+ module...
+
+2004-01-20 12:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_gtk.pm: fix set_default_direction() call
+
+2004-01-20 12:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: init modem data structure
+ when manually selecting a serial port
+
+2004-01-20 12:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix modem dns servers reading
+
+2004-01-20 12:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: keep entered data when
+ stepping back to dialup options step
+
+2004-01-20 12:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not mix modem choice and
+ modem configuration, so that we keep entered data when stepping
+ back and forward
+
+2004-01-20 12:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: pass dynamically build data
+ into interactive layer when configuring modems
+
+2004-01-20 12:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix device (was broken due to
+ the fact we kept all the data collected about modems)
+
+2004-01-20 12:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix ppp_configure call
+
+2004-01-20 12:03 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: all.rdz needs more than 4MB, raising to 5MB
+
+2004-01-20 11:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/modem.pm: merge ppp_configure_raw() into its
+ only caller (ppp_configure())
+
+2004-01-20 11:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/modem.pm: do not bother try installing
+ packages in testing mode
+
+2004-01-20 11:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: prepare killing obfuscated
+ install path
+
+2004-01-20 11:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: merge in next_cnx_step into
+ handle_multiple_cnx
+
+2004-01-20 11:22 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix typo
+
+2004-01-20 11:16 Pixel <pixel at mandriva.com>
+
+ * rescue/list: replace rpmpopt-4.2 with rpmpopt-* (since we now
+ have rpmpopt-4.2.2)
+
+2004-01-20 11:15 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: fix regexp matching module when generating
+ .not-enough-room
+
+2004-01-20 11:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/bs.po: fix duplicate message
+
+2004-01-20 11:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: workaround buggy installkernel that
+ left default value be geater than the current number of entries,
+ thus making drakboot displaying (default-entries_count) spurious
+ "()*" entries which then results in writing back bogus grub conf
+ file.
+
+ kernel team should just be shuted down :-(
+
+2004-01-20 10:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/bs.po: fix duplicate message
+
+2004-01-20 03:15 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: part. update
+
+2004-01-20 00:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: - kill duplicated code - move
+ some code where it belongs so that it's shared by isdn/modem
+
+2004-01-20 00:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: - merge wireless step into
+ normal modem one - report all detected serial modems - use all
+ collected data on modems in order to have a nice list
+
+2004-01-20 00:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: rollback bogus change
+
+2004-01-20 00:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakgw: perl_checker fixes
+
+2004-01-19 23:45 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: Trying to get rid of "Translated to
+ da.po" problem - did not work:-( soft/menu-messages/da.po
+ soft/control-center/po/da.po soft/drakcronat/po/da.po
+ soft/ftw/po/da.po soft/GtkMdkWidgets/po/da.po
+ soft/kdebase-servicemenu/po/da.po soft/krozat/po/da.po
+ soft/mandrake-menu-directory/po/da.po soft/mdkkdm/po/da.po
+ soft/mdklaunchhelp/po/da.po soft/menudrake/po/da.po
+ soft/rpmdrake/po/da.po soft/urpmi/po/da.po
+ soft/userdrake2/po/da.po soft/wizard_perl/po/da.po
+ gi/perl-install/share/po/da.po
+ soft/galaxy/thememdk/mandrake_client/po/da.po
+
+2004-01-19 23:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: dot not try to alter squid
+ config in --testing mode
+
+2004-01-19 23:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakgw: remove empty lines in order to
+ get more place for entry fields
+
+2004-01-19 23:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: isdn: detect serial modems if
+ needed
+
+2004-01-19 23:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: rename "ppp_choose step" as
+ "choose_serial_port" and "ppp_choose2" one as "ppp_choose"
+
+2004-01-19 23:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: chain hostname/dns step with
+ zeroconf one (more work on zeroconf will be done between beta 1
+ and 2)
+
+2004-01-19 23:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: turn "unsupported winmodem"
+ into a terminal step
+
+2004-01-19 22:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add strings for future
+ options
+
+2004-01-19 20:37 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates soft/control-center/po/da.po
+ soft/ftw/po/da.po soft/rpmdrake/po/da.po soft/urpmi/po/da.po
+ gi/perl-install/share/po/da.po
+
+2004-01-19 20:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix next_cnx_step call
+
+2004-01-19 19:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/modem.pm: (ppp_configure_raw) remove code
+ stolen from ppp_configure()
+
+2004-01-19 19:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: minor update
+
+2004-01-19 19:34 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - add build_tree to fetch
+ info before doing GUI stuff - use $intf->{$interface}{save} to
+ re-use existing write_foo specific fonctions - change
+ build_notebook thing - indenting && perl_checking
+
+2004-01-19 19:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getSerialModem) fix device field
+
+2004-01-19 18:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: (detect) display a nice
+ string for serial modems
+
+2004-01-19 18:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: (detect) - adapt modem
+ detection to new detect_devices - keep all data collected on
+ modems
+
+2004-01-19 18:47 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: update
+
+2004-01-19 18:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getModem) simplify
+
+2004-01-19 18:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getSerialModem) - drop useless
+ first arg - return all detected serial modems, not only first -
+ return all data we collected on serial modems
+
+2004-01-19 18:23 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakgw: typo error
+
+2004-01-19 18:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getSerialModem) do not even
+ bother check for /dev/modem since anyway probeSerialDevices() set
+ a bijection between modems and /dev/ttySx devices (not
+ /dev/modem) thus making hasModem() test useless for /dev/modem
+
+2004-01-19 18:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getUPS) use HIDIOCAPPLICATION
+ ioctl definition from c module
+
+2004-01-19 18:14 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakgw: add transparent proxy support
+
+2004-01-19 18:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: kill useless diagnostics
+ pragma
+
+2004-01-19 17:47 Florin Grad <florin at mandriva.com>
+
+ * perl-install/network/network.pm: add the silly read_squid
+ function
+
+2004-01-19 17:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add proper window title
+
+2004-01-19 17:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: make a real wizard step out
+ of first modem step
+
+2004-01-19 17:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: winmodem connection'll be
+ merge into modem connection
+
+2004-01-19 17:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: kill Data::Dumper orphean
+
+2004-01-19 17:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (reate_box_with_title) shrink TextView
+ size to its minimal size in order to get the bigger place for
+ other widgets
+
+2004-01-19 15:38 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm: add forcedeth network driver (as
+ requested on cooker)
+
+2004-01-19 15:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/: do_pkgs.pm, pkgs.pm: - factorize kernel regexp in
+ analyse_kernel_name() - remove special kernel choosing in
+ packageCallbackChoices()
+
+2004-01-19 15:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: cleanup sanitize_ver (re-synced with
+ common.pm from bootloader-utils)
+
+2004-01-19 15:24 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/ppp-04.pl: Update
+
+2004-01-19 14:28 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-01-19 14:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/: modules.pm, fs.pm: kernel 2.2 is deprecated
+
+2004-01-19 14:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: kernel22 is not there anymore (since
+ a long time now)
+
+2004-01-19 14:14 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: update
+
+2004-01-19 13:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-01-19 13:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: add some logging explaining the default
+ kernel choice
+
+2004-01-19 13:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: select bestKernelPackage before
+ selecting basesystem (otherwise basesystem already requires
+ kernel)
+
+2004-01-19 12:42 Frederic Crozat <fcrozat at mandriva.com>
+
+ * perl-install/share/rpmsrate: Epiphany is now GNOME default web
+ browser.
+
+2004-01-19 11:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: et.po, nb.po: updated Estonian and
+ Norwegian files
+
+2004-01-19 11:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: $::testing means
+ testing, not "testing what titi wants to test"
+
+2004-01-19 11:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: prevent unpoped wait messages
+ when called from within wizards in standalone mode
+
+2004-01-19 11:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: merge dhcp hostname into
+ hostname step
+
+2004-01-19 11:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: remove useless spacing above
+ advanced options
+
+2004-01-19 11:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: use radio button instead of
+ optionmenu if possible (aka not too many network interfaces)
+
+2004-01-19 11:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbug: simplify
+
+2004-01-19 10:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: add a warning telling to run lilo
+ after modifying the lilo.conf (bugzilla #6924)
+
+2004-01-19 02:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/cy.po: add missing empty lines
+
+2004-01-19 02:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/cy.po: another update
+
+2004-01-19 02:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/cy.po: further update
+
+2004-01-19 01:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/cy.po: update
+
+2004-01-19 01:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-01-19 01:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-01-18 17:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: - typo fix (#6919) - let drakconnect
+ message be wrapped by gtk+ rather than us
+
+2004-01-18 11:52 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: update
+
+2004-01-18 07:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/cy.po: update
+
+2004-01-18 07:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/cy.po: update
+
+2004-01-17 23:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix obvious typo
+
+2004-01-17 22:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: fix #6899: tools failling to popup windows
+ while embedded
+
+2004-01-17 21:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-01-17 21:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-01-17 18:34 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.po, br.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, ga.po, gl.po, he.po,
+ hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po,
+ lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po,
+ pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po,
+ sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po, uz@Cyrl.po,
+ vi.po, wa.po, zh_CN.po, zh_TW.po: udated pot file; converted to
+ UTF-8 all po files (as therer are utf-8 msgid
+
+2004-01-17 18:27 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: add wait message as hardware
+ detection takes time
+
+2004-01-17 17:38 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/dwd-09.pl: Fix (r)
+
+2004-01-17 17:27 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/diskdrake/hd_gtk.pm: spell checking
+
+2004-01-17 04:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/DrakX.pot: fix doble entries
+
+2004-01-17 03:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: af.po, ar.po, az.po, be.po, bg.po, br.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, ga.po, gl.po, he.po, hi.po, hr.po,
+ hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po, mk.po,
+ mn.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po,
+ tg.po, th.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po,
+ zh_CN.po, zh_TW.po: fix doble entries
+
+2004-01-17 03:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/advertising/: dis-09.pl, dis-11.pl, dwd-04.pl,
+ dwd-05.pl, dwd-06.pl, dwd-08.pl, ppp-04.pl, ppp-05.pl, ppp-07.pl,
+ ppp-09.pl, ppp-11.pl, pwp-04.pl, pwp-08.pl, pwp-09.pl, pwp-10.pl:
+ fix package build
+
+2004-01-17 00:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: new host settings step
+
+2004-01-17 00:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: clean horrible code
+
+2004-01-17 00:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: do not alter proxies config
+ while configuring network interfaces (needed since we've disabled
+ proxy config in network interface config path)
+
+2004-01-17 00:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: do not install zeroconf if no
+ zeroconf hostname was typed in (we may add a USE_ZEROCONF
+ variable to /etc/sysconfig/network instead)
+
+2004-01-17 00:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/modem.pm: (ppp_configure) reintroduce it for
+ drakconnect's manager
+
+2004-01-17 00:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: adsl.pm, ethernet.pm, isdn.pm: do not
+ export dead functions
+
+2004-01-17 00:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/tools.pm: prevent faillure when trying to
+ dereference undef in testing mode
+
+2004-01-17 00:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: split/merge lan config steps
+ according to new specs (card => protocol => parameters =>
+ hostname)
+
+2004-01-17 00:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: rollback "separate standalone
+ and install paths" try (just too painful to maintain and anyway
+ install net wizard has no logic)
+
+2004-01-17 00:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: - make a real step out of
+ "manage multiple internet connections" case - factorize and fix
+ accessing to this step
+
+2004-01-17 00:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: drop proxy configuration
+ step.
+
+ rationale: - miscellaneous_choose() was reintroduced in
+ network::network since it was still needed by drakproxy -
+ anyway configuring proxies is: o not supposed to be done while
+ configuring network interfaces o duplicated with drakproxy and
+ the like o removed in new drakconnect specs
+
+2004-01-17 00:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: morph hw_account step through
+ reusing new wizard layer capabilites (aka dynamically return just
+ build needed data rather than ackwardly puting it in place)
+
+2004-01-17 00:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix ppp_first_step() call
+
+2004-01-17 00:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: small reindenting
+
+2004-01-17 00:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: remove overrided variables
+
+2004-01-17 00:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: enable to step forward after
+ to "connect now?" step since wizard infrastructure fixed the
+ ask_yesorno design flaw (and remove bug hint left by previous
+ maintainers)
+
+2004-01-17 00:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: use wizard layer 's yesorno
+ type
+
+2004-01-17 00:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: typo fix
+
+2004-01-17 00:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: kill unused variables
+
+2004-01-16 23:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: (Accept) default to
+ accept in testing mode
+
+2004-01-16 23:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: do not complain about
+ root password in testing mode
+
+2004-01-16 20:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: - set a meaningfull window
+ title when called from mcc for explanations - upcase default
+ window title
+
+2004-01-16 20:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: do not abuse global namespace
+ (this also allow to track variables usage through static code
+ analysers such as perl_checker)
+
+2004-01-16 19:35 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: * manage interfaces: - fix
+ Ok button logic - fix some calls to $apply
+
+2004-01-16 19:28 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: * manage interfaces -
+ added Modem page - most of the GUI in place
+
+2004-01-16 15:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/da.po: rollback bogus change
+
+2004-01-16 15:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: drakxtools.spec, help.pm, install_steps_gtk.pm,
+ interactive.pm, interactive/newt.pm, printer/printerdrake.pm,
+ share/po/DrakX.pot, share/po/af.po, share/po/ar.po,
+ share/po/az.po, share/po/be.po, share/po/bg.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/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/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/pl.po, share/po/pt.po,
+ share/po/pt_BR.po, share/po/ro.po, share/po/ru.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/tr.po, share/po/uk.po,
+ share/po/uz.po, share/po/uz@Cyrl.po, share/po/vi.po,
+ share/po/wa.po, share/po/zh_CN.po, share/po/zh_TW.po,
+ standalone/drakbackup: remove arrows from previous/next buttons
+ according to interface team
+
+2004-01-16 14:41 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/: drakTermServ, drakbackup: ask_warn
+ fixes per Thierry, purge some old, unused code
+
+2004-01-16 14:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/shorewall.pm: fix N() badly used
+
+2004-01-16 13:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/: drakfirewall.pm, shorewall.pm: - add icmp
+ support - add "Echo request (ping)" choice
+
+2004-01-15 22:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: require a fixed perl-Glib
+
+2004-01-15 22:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix changelog
+
+2004-01-15 22:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: do not create spurious top window when
+ embedded (why does this fsck us only now?)
+
+2004-01-15 22:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-21mdk
+
+2004-01-15 22:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: reuse create_okcancel() in ordet
+ to get some std button layout
+
+2004-01-15 22:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: remove useless menu
+ infrastucture
+
+2004-01-15 19:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: don't modify {append} after
+ add_kernel(), call add_kernel() directly with the append
+ parameter (so that comparison with previous entries is done
+ correctly)
+
+2004-01-15 19:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-20mdk
+
+2004-01-15 18:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-01-15 16:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-01-15 16:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: add bug hint
+
+2004-01-15 16:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: remove unused variable
+
+2004-01-15 15:32 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: First time wizard
+
+2004-01-15 15:30 Pixel <pixel at mandriva.com>
+
+ * rescue/list: insmod.old is needed when the kernel is a 2.4
+
+2004-01-15 15:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/lvm.pm: adaptation/simplification for new lvm2
+ (thanks to Luca Berra)
+
+2004-01-15 14:20 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-01-15 14:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: have hylafax-client installed when
+ kdebase-kdeprintfax is selected
+
+2004-01-15 14:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: (lilo_choice) do not complain
+ on canceling
+
+2004-01-15 14:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: (lilo_choice) let's set dialog
+ title when poping up an error message
+
+2004-01-15 14:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: (lilo_choice) do not complaing
+ about lilo faillure when we use another bootloader: just complain
+ about the actually used bootloader
+
+2004-01-15 13:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: warly said that we should not
+ restrict ourselves to lilo
+
+2004-01-15 13:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: make splash config looks better
+ when embedded
+
+2004-01-15 13:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: fix individual package
+ selection (was broken since 30 september...)
+
+2004-01-15 13:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: formatList is imported, no
+ need to get it in common::
+
+2004-01-15 12:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, install_interactive.pm,
+ partition_table.pm, c/stuff.xs.pl, diskdrake/interactive.pm,
+ partition_table/raw.pm: - remove the use of BLKRRPART (telling
+ the kernel to re-read the partition table) in most cases -
+ replace with tell_kernel() and will_tell_kernel() - correctly
+ handle in standalone the need to reboot, with no way to forget it
+ (telling the WM to quit nicely then call reboot when it's done)
+
+2004-01-14 19:17 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - manage interfaces : o
+ add Account page o speedtouch and sagem modems o
+ build_notebook don't need $window anymore o cosmetic change to
+ Infornations page
+
+2004-01-14 19:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/tools.pm: ask_info2 is dead
+
+2004-01-14 18:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/wizards.pm: using box radio looks better for yes/no
+ like questions
+
+2004-01-14 18:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/wizards.pm: (process) in yes/no case, keep the same
+ logic as interactive->ask_yesorno() and pass 1 if /yes/ and undef
+ else
+
+2004-01-14 18:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-01-14 18:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: typo fix
+
+2004-01-14 17:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: proxy conf: do not
+ touch files in --testing mode
+
+2004-01-14 17:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install2.pm: fix fix
+
+2004-01-14 17:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: split out proxy
+ configuration out of network interfaces configuration
+
+2004-01-14 16:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install2.pm: fix logic test order in order to
+ prevent useless error message in --testing mode
+
+2004-01-14 16:38 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po,
+ pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2004-01-14 16:21 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/: 01-thanks.pl, 01-thanks.png,
+ 02-community.pl, 02-community.png, 03-software.pl,
+ 03-software.png, 04-configuration.pl, 04-configuration.png,
+ 05-desktop.pl, 05-desktop.png, 06-development.pl,
+ 06-development.png, 07-server.pl, 07-server.png, 08-store.pl,
+ 08-store.png, 09-mdksecure.pl, 09-mdksecure.png, 10-security.pl,
+ 10-security.png, 11-mnf.pl, 11-mnf.png, 12-mdkexpert.pl,
+ 12-mdkexpert.png, 13-mdkexpert_corporate.pl,
+ 13-mdkexpert_corporate.png, Makefile, README, dis-01.pl,
+ dis-01.png, dis-02.pl, dis-02.png, dis-03.pl, dis-03.png,
+ dis-04.pl, dis-04.png, dis-05.pl, dis-05.png, dis-06.pl,
+ dis-06.png, dis-07.pl, dis-07.png, dis-08.pl, dis-08.png,
+ dis-09.pl, dis-09.png, dis-10.pl, dis-10.png, dis-11.pl,
+ dis-11.png, dwd-01.pl, dwd-01.png, dwd-02.pl, dwd-02.png,
+ dwd-03.pl, dwd-03.png, dwd-04.pl, dwd-04.png, dwd-05.pl,
+ dwd-05.png, dwd-06.pl, dwd-06.png, dwd-07.pl, dwd-07.png,
+ dwd-08.pl, dwd-08.png, dwd-09.pl, dwd-09.png, list, ppp-01.pl,
+ ppp-01.png, ppp-02.pl, ppp-02.png, ppp-03.pl, ppp-03.png,
+ ppp-04.pl, ppp-04.png, ppp-05.pl, ppp-05.png, ppp-06.pl,
+ ppp-06.png, ppp-07.pl, ppp-07.png, ppp-08.pl, ppp-08.png,
+ ppp-09.pl, ppp-09.png, ppp-10.pl, ppp-10.png, ppp-11.pl,
+ ppp-11.png, pwp-01.pl, pwp-01.png, pwp-02.pl, pwp-02.png,
+ pwp-03.pl, pwp-03.png, pwp-04.pl, pwp-04.png, pwp-05.pl,
+ pwp-05.png, pwp-06.pl, pwp-06.png, pwp-07.pl, pwp-07.png,
+ pwp-08.pl, pwp-08.png, pwp-09.pl, pwp-09.png, pwp-10.pl,
+ pwp-10.png: New texts to translate for next release.
+
+ Images will be modified in a short time.
+
+2004-01-14 16:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: (miscellaneous_choose) restore
+ it for drakproxy (we'd better split out network interface and
+ proxy configuration at install time)
+
+2004-01-14 15:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-19mdk
+
+2004-01-14 15:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-01-14 15:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: don't write fstab entries which are
+ notFormatted
+
+2004-01-14 14:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: use class->new rather than new
+ class style
+
+2004-01-14 14:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: minor cleanup
+
+2004-01-14 14:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: perl_checker cleanups
+
+2004-01-14 14:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: proper indenting
+
+2004-01-14 14:26 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Let list of printer models
+ get sorted.
+
+2004-01-14 14:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: move bootloader title from drakboot
+
+2004-01-14 14:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: - offer to configure bootsplash
+ only on --splash - drop useless frames - set main window title
+ according to current mode (autologin, bootloader or bootsplash)
+
+2004-01-14 13:00 Warly <warly at mandriva.com>
+
+ * perl-install/standalone/drakboot: clean splash management code
+
+2004-01-14 12:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakclock: unused variable
+
+2004-01-14 12:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakautoinst: - kill unused variables -
+ fix gtk+2 notebook usage - perl_checker cleanups
+
+2004-01-14 11:13 Guillaume Cottenceau
+
+ * move/make_live: John Jablonski wants scribus
+
+2004-01-13 19:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: drakperm, drakclock: alter message
+ according to interface team suggestion
+
+2004-01-13 19:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakautoinst: alter message according to
+ interface team suggestion
+
+2004-01-13 19:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: typo fix
+
+2004-01-13 19:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: - "Next->" => "Next" - "<-Previous" =>
+ "Previous"
+
+2004-01-13 19:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/wizards.pm: add support for yes/no questions
+
+2004-01-13 18:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: hide about butto b/c there's
+ already mcc about dialog and there're already too much buttons
+
+2004-01-13 18:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: enable to access extra buttons
+ $w->{buttons}{<label>}
+
+2004-01-13 18:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: drakboot, drakclock, drakconnect,
+ drakfloppy, drakfont, drakperm, draksec: sanitize buttons through
+ reusing create_okcancel()
+
+2004-01-13 17:45 Guillaume Cottenceau
+
+ * mdk-stage1/Makefile: cookr
+
+2004-01-13 17:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: do not pack empty label before extra
+ buttons if there'll be no button before it
+
+ rationale: when there's no cancel button, packing an empty label
+ instead of the cancel button results in extra buttons (eg: help,
+ advanced) to be shifted with a space before;
+
+2004-01-13 16:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: upcase label
+
+2004-01-13 14:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/wizards.pm: better rely on the end field being set
+ rather than on the last step to be named "end" (thus allowing to
+ have several different last steps)
+
+2004-01-13 14:20 Guillaume Cottenceau
+
+ * perl-install/any.pm: changing utf8 flag on an installed OS is not
+ supported
+
+2004-01-13 14:12 Guillaume Cottenceau
+
+ * perl-install/pkgs.pm: perl check
+
+2004-01-13 14:10 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: et.po, nb.po: updated Estonian and
+ Norwegian files
+
+2004-01-13 13:42 Guillaume Cottenceau
+
+ * perl-install/: pkgs.pm, share/rpmsrate: allow DRIVER"regexp" in
+ rpmsrate and use it to install xmms-alsa when we use alsa sound
+ driver
+
+2004-01-13 13:41 Guillaume Cottenceau
+
+ * perl-install/: common.pm, detect_devices.pm, modules.pm,
+ Xconfig/card.pm: detect_devices::matching_driver -> matching_desc
+ but matching driver names (kernel modules)
+
+2004-01-13 13:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/: devices.pm, lvm.pm: lvm2 uses urandom
+
+2004-01-13 12:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/lvm.pm: - install lvm2 rpm instead of lvm (and using
+ ->ensure_is_installed) - "vgdisplay" error status is not good,
+ using "vgs" instead
+
+2004-01-13 11:59 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: - allow to specify a kernel rpm (works both
+ for BOOT kernels and normal one) - allow --move
+
+2004-01-13 11:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: perl_checker sometimes wrongly
+ complain
+
+2004-01-13 10:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/smbnfs_gtk.pm: revert titi breaking the
+ code, keeping the only valid change
+
+2004-01-13 00:14 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-01-13 00:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-18mdk
+
+2004-01-13 00:05 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: Added
+ functionality to configure a PostScript printer with a
+ manufacturer-supplied PPD file.
+
+2004-01-13 00:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/printerdrake: do not push anymore help
+ menu at right (hig and kde guidelines are against this)
+
+2004-01-12 19:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: handle both kernel 2.4.x and
+ 2.6.x (before size field was not properly when switching between
+ threes b/c we looked for module.ko instead of module.o.gz and the
+ like)
+
+2004-01-12 19:13 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2004-01-12 19:11 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: adding spaces to please perl_checker
+
+2004-01-12 18:29 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/pixmaps/langs/lang-sr.png: changed the Serbian
+ cyrillic image to display using cyrillic.
+
+2004-01-12 18:28 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: Added to the language selection menu
+ languages with recently appeared translations in Gnome or KDE
+ (fo, ia, ku, nds, ne, oc, wen, yi)
+
+2004-01-12 17:52 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po,
+ pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2004-01-12 17:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: upcase first letter of error
+ messages
+
+2004-01-12 17:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: perl_checker fixes
+
+2004-01-12 16:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_gtk.pm: wacom support should be re-added :-/
+
+2004-01-12 16:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: perl_checker cleanups
+
+2004-01-12 16:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: used the ip from stage1 instead of
+ using IPADDR which is not given for dhcp for auto_install file
+ (as asked by Michael Riss)
+
+2004-01-12 16:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: new layout with subdialogs
+
+2004-01-12 16:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: remove spurious minus at
+ beginning of paragraph
+
+2004-01-12 16:01 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po,
+ lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po,
+ pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po,
+ sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po, uz@Cyrl.po,
+ vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2004-01-12 16:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: bump perl(Gtk2) require
+
+2004-01-12 15:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_gtk.pm, install_steps_gtk.pm,
+ share/list.i386: XFree4 during install
+
+2004-01-12 15:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/diskdrake/smbnfs_gtk.pm: (per_entry_action_box) -
+ sanitieze buttons packing (do not eat extra space) - get rid of
+ groupby2
+
+2004-01-12 15:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: when offering to restart dm,
+ offer yes/no as choice rather than ok/cancel (#6810)
+
+2004-01-12 14:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/: do_pkgs.pm, install_steps.pm, interactive.pm: -
+ install_steps_auto_install is not a interactive but still needs
+ do_pkgs - so making do_pkgs a class, and interactive and
+ install_steps will inheritate from it - do_pkgs renamed into
+ do_pkgs_common, containing the things common to
+ do_pkgs_during_install and do_pkgs_standalone
+
+2004-01-12 14:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-17mdk
+
+2004-01-12 14:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile: handle poulpy code
+
+2004-01-12 14:08 Pixel <pixel at mandriva.com>
+
+ * make_boot_img, kernel/update_kernel: use all.rdz instead of
+ network.rdz in tftp (network.rdz is deprecated)
+
+2004-01-12 14:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/wizards.pm: rollback debug statements
+
+2004-01-12 14:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: typo fix
+
+2004-01-12 14:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-01-12 13:33 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-01-12 12:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list: need insmod.old for kernel 2.4
+
+2004-01-12 12:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: make font removing working with
+ --testing
+
+2004-01-12 12:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: fix unstalling fonts
+
+2004-01-12 12:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: show a finish button on last
+ step
+
+2004-01-12 12:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: exit once delete interface
+ wizard has ended instead of then running the std add wizard...
+
+2004-01-12 12:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: list ppp interfaces too when
+ offering to delete an interface
+
+2004-01-12 12:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix french translation: always
+ translate "NONE" as "AUCUN" in draksec
+
+2004-01-12 12:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/wizards.pm: only complain if a problem actually
+ happened
+
+2004-01-12 12:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: kill unused variables
+
+2004-01-12 12:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: (put_font_dir) factorize some
+ code into put_font_dir_real()
+
+2004-01-12 12:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: fix chkfontpath call in
+ --testing mode (/usr/sbin) not in path
+
+2004-01-12 12:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: fix applications layout: -
+ remove spurious empty boxes - fix layout (aka do not uselessly
+ resize main window) - sanitize layout (put legal warning between
+ title and application list) - "[X] label" packing looks quite a
+ less uglier than "label [X]"
+
+2004-01-12 12:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: fix about layout: - sanitize
+ horrible line breaking (let pango do it for now, it know how to
+ do it quite a lot better than we) - add myself in author list -
+ split about translation in three pieces (copyright holders, std
+ fsf header and thanks), enabling to share std fsf legal header
+ among several programs
+
+2004-01-12 12:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: prevent useless spacing above
+ button bar
+
+2004-01-12 12:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: enforce class->new calling
+ convention rather than "new class" one
+
+2004-01-12 12:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: style only change; "fix"
+ gtkpacking so that expand arg always precede the widget it's
+ about rather that following another widget
+
+2004-01-12 12:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: fix embedding: - prevent
+ subwindows being too small - prevent subwindows breaking when
+ canceled
+
+2004-01-12 10:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/run_program.pm: don't print refs in log when output
+ is redirected (nice patch from blino :)
+
+2004-01-12 10:26 Pixel <pixel at mandriva.com>
+
+ * docs/HACKING: update from sunny@opencurve.org
+
+2004-01-12 10:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: allow a range of ports
+ (anthill bug #267)
+
+2004-01-10 20:25 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: updated
+
+2004-01-10 03:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po,
+ he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po,
+ pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: big pot file update
+
+2004-01-10 03:07 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: last messages updated
+
+2004-01-10 02:17 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/: drakconnect, scannerdrake: fixed typos
+
+2004-01-10 01:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix changelog
+
+2004-01-10 01:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: one more fix
+
+2004-01-10 00:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: fix drakboot --boot embedding
+
+2004-01-10 00:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-16mdk
+
+2004-01-09 23:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: handle exceptions with
+ Glib-1.020/Gtk2-1.022
+
+2004-01-09 23:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: fix wizard when logdrake is
+ embeded
+
+2004-01-09 22:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-15mdk
+
+2004-01-09 21:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (gtktext_insert) make it works with both
+ Glib-0.95/Gtk2-0.95 and Glib-1.020/Gtk2-1.022
+
+2004-01-09 20:37 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - apply and ok button now
+ working - some clean up
+
+2004-01-09 19:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/: do_pkgs.pm, interactive.pm, standalone.pm: new
+ do_pkgs package which get rid of pkgs_interactive::* which was in
+ install_any and standalone, and partially duplicated
+
+2004-01-09 18:56 Pixel <pixel at mandriva.com>
+
+ * kernel/modules.pl: - remove network support from pcmcia.img -
+ remove pcmcia from network.img (not very useful since we drop
+ network.img, but...)
+
+2004-01-09 18:46 Pixel <pixel at mandriva.com>
+
+ * Makefile: drop hd.img and network.img, in replacement we'll add:
+ - boot.iso - a grub floppy where you edit menu.lst to boot from
+ hd
+
+2004-01-09 18:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-01-09 17:36 Pixel <pixel at mandriva.com>
+
+ * kernel/modules.pl: remove dtc from cdrom.img (not enough room)
+
+2004-01-09 17:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: share translations with
+ harddrake
+
+2004-01-09 17:16 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: when not enough room on a .img, generate a file
+ explaining the modules, their size, their usage in pcitable
+
+2004-01-09 17:14 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: information box fully
+ fonctionnal for ethernet cards
+
+2004-01-09 17:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/common.pm: enable other packages to override
+ libDrakx translations with those from their own domains (eg:
+ prevent mcc to display "partition de demarrage" instead of
+ "demarrage" in french for "boot" ...)
+
+2004-01-09 16:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/Makefile: get translated strings in
+ directory gi/perl-install to have xxx.pm instead of ../../xxx.pm
+
+2004-01-09 16:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: http://serv.mydomain/pub/install
+ must get split into server:serv.mydomain and
+ directory:/pub/install, and not directory:pub/install
+
+2004-01-09 15:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: tag megaraid controllers as scsi
+ ones
+
+2004-01-09 12:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone.pm: perl_checker compliance
+
+2004-01-09 12:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone.pm: simplify, cleanup
+
+2004-01-09 12:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: simplify
+
+2004-01-09 11:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fs.pm, install_steps_gtk.pm: remove a few other
+ SIG{__DIE__}
+
+2004-01-08 20:59 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - informations afford
+ copy/paste (mac address) - add module name to informations -
+ perl_checker compliant
+
+2004-01-08 20:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2004-01-08 19:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: no need to log the error twice,
+ errorInStep will take care of it
+
+2004-01-08 19:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_steps_auto_install.pm:
+ display the error
+
+2004-01-08 19:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: better override formatError than
+ replacing all the formatError with formatError_and_log (goal: get
+ log'ing even now that SIG{__DIE__} is not there anymore)
+
+2004-01-08 18:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, authentication.pm, install_any.pm,
+ install_steps_interactive.pm, standalone/drakauth: - integrate
+ chkauth (which is now deprecated) - new module authentication
+
+2004-01-08 18:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: add formatError_and_log (to get log'ing
+ even now that SIG{__DIE__} is not there anymore)
+
+2004-01-08 18:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: add a separator below buttons on fredc
+ request
+
+2004-01-08 17:55 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/drakxtools.spec: new version
+
+2004-01-08 17:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: fordward sagem net_cnx_up fix
+
+2004-01-08 17:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: perl_checker compliance
+
+2004-01-08 17:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: perl_checker
+ compliance
+
+2004-01-08 17:22 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: fix sagem net_cnx_up (thanks to QA
+ team)
+
+2004-01-08 17:18 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: first 'manage interface'
+ implementatiimplementation
+
+2004-01-08 17:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/: diskdrake/smbnfs_gtk.pm, network/smb.pm:
+ authentification is french, the english word is authentication
+
+2004-01-08 16:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: merge in spec file from update SRPM
+
+2004-01-08 16:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup: merge back drakbacup update
+
+2004-01-08 16:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/aliases: i thought stage1 didn't call
+ runinstall2 anymore... what's wrong with me??
+
+2004-01-08 16:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (configure_net) - make
+ buttons smaller - follow button std order
+
+2004-01-08 16:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: move all options parsing
+ pieces together
+
+2004-01-08 16:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: restore exit_dialogsub
+
+2004-01-08 15:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (configure_net) when there's
+ no connection: - fix message for new drakconnect scheme - shrink
+ code by reusing interactive
+
+2004-01-08 15:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Makefile, share/aliases: runinstall2 is
+ deprecated, install2 is called directly
+
+2004-01-08 13:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/services.pm: add a fam description (telling that
+ GNOME & KDE uses it). closes part of bugzilla #1704
+
+2004-01-08 12:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: drop keytable line in grub config
+ file since grub doesn't handle it anymore (patch dropped long ago
+ in grub 0.90-3mdk)
+
+2004-01-08 12:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: - simplify lilo boot message. Not
+ mentioning the timeout parameter fixes bugzilla #5429
+
+ - remove /boot/grub/messages and don't use the i18n command which
+ are obsolete since grub doesn't handle it anymore
+
+2004-01-07 23:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, standalone/diskdrake: logging when
+ __DIE__ing is dangerous: - in diskdrake, logging the error via
+ c::syslog caused $@ to be undefined, causing the error to be
+ dropped! (esp "you need to reboot") - during install, no known
+ error, but it's better to remove it anyway (bye bye the
+ "warning: ..." in ddebug.log, sniff)
+
+2004-01-07 23:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/run_program.pm: when called from commands.pm,
+ install_any is not loaded
+
+2004-01-07 23:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2004-01-07 22:55 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: DVD+RW support, perl_checker,
+ fix bogus cron message
+
+2004-01-07 18:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/: bootloader.pm, pkgs.pm: handle lilo not installed
+
+2004-01-07 18:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: we need latest perl-MDK-Common
+
+2004-01-07 17:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: drakxtools.spec, modules.pm, c/stuff.xs.pl,
+ network/ethernet.pm, standalone/service_harddrake: fixes merged
+ from head into updates
+
+2004-01-07 17:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: use whereis_binary()
+
+2004-01-07 17:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2004-01-07 17:17 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2004-01-07 17:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, bootloader.pm,
+ Xconfig/resolution_and_depth.pm: pass --splash <resolution> to
+ mkinitrd (so that make-boot-splash doesn't rely on lilo.conf or
+ menu.lst)
+
+2004-01-07 14:03 Pixel <pixel at mandriva.com>
+
+ * Makefile: live_update is deprecated/removed
+
+2004-01-07 13:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile.config: livedrake is deprecated/removed
+
+2004-01-06 18:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: perl_checker
+ compliance
+
+2004-01-06 18:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/: detect_devices.pm, fsedit.pm, partition_table.pm,
+ pkgs.pm, standalone/adduserdrake, standalone/drakclock,
+ standalone/localedrake: perl_checker compliance
+
+2004-01-06 18:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/XFdrake: perl_checker compliance
+
+2004-01-06 18:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: obsolete live_update
+
+2004-01-06 18:02 Pixel <pixel at mandriva.com>
+
+ * live_update, perl-install/Makefile, perl-install/Makefile.config,
+ perl-install/detect_devices.pm, perl-install/install2.pm,
+ perl-install/install_any.pm, perl-install/install_gtk.pm,
+ perl-install/install_steps.pm, perl-install/live_install,
+ perl-install/live_install2, perl-install/modules.pm,
+ perl-install/Xconfig/card.pm, perl-install/standalone/livedrake:
+ obsolete livedrake, live_install, live_update
+
+2004-01-06 17:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: perl_checker
+ compliance
+
+2004-01-06 17:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: kill unused variables
+
+2004-01-06 17:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/: commands.pm, install_any.pm,
+ install_steps_interactive.pm, partition_table/mac.pm:
+ perl_checker compliance
+
+2004-01-06 17:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps.pm,
+ install_steps_interactive.pm, timezone.pm, standalone/drakclock:
+ use $::prefix
+
+2004-01-06 17:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Makefile, g_auto_install, install2.pm,
+ install_any.pm, install_steps.pm, install_steps_interactive.pm,
+ pkgs.pm: get rid of g_auto_install (unused & not working)
+
+2004-01-06 17:12 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po,
+ lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po,
+ pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po,
+ sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po, uz@Cyrl.po,
+ vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2004-01-06 17:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps.pm, lvm.pm,
+ share/list, share/rpmsrate: basic lvm2 support (not tested yet!)
+
+2004-01-06 16:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: - drakfloppy must not be in
+ drakxtools-newt, must now require mkbootdisk (which is not
+ installed by default anymore)
+
+2004-01-06 16:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, bootloader.pm, install2.pm,
+ install_any.pm, standalone/drakautoinst: remove mkbootdisk
+ support
+
+2004-01-06 16:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/compssList: deprecated for some time already
+
+2004-01-06 14:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: perl_checker cleanups
+
+2004-01-06 14:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: do not discard 0 when perms are
+ 0xx like
+
+2004-01-06 14:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/common.pm: (require_root_capability) let be
+ --testing aware
+
+2004-01-06 14:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: perl_checker cleanups
+
+2004-01-06 14:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: standalone/logdrake, wizards.pm: perl_checker
+ cleanups
+
+2004-01-06 14:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: add missing argument
+
+2004-01-06 14:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: kill unused variable
+
+2004-01-06 03:17 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: fresh update
+
+2004-01-05 18:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: network/netconnect.pm, share/po/af.po,
+ share/po/ar.po, share/po/az.po, share/po/be.po, share/po/bg.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/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/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/pl.po, share/po/pt.po,
+ share/po/pt_BR.po, share/po/ro.po, share/po/ru.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/tr.po, share/po/uk.po,
+ share/po/uz.po, share/po/uz@Cyrl.po, share/po/vi.po,
+ share/po/wa.po, share/po/zh_CN.po, share/po/zh_TW.po: typo fix
+
+2004-01-05 16:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: another typo fix
+
+2004-01-05 16:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: use $::prefix
+
+2004-01-05 16:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_steps.pm, mouse.pm,
+ modules/interactive.pm, network/adsl.pm, network/ethernet.pm,
+ network/netconnect.pm, standalone/draksound: write_conf() doesn't
+ need $prefix anymore
+
+2004-01-05 16:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: - generate /etc/modprobe.preload (same
+ as /etc/modules) - fix call to generate-modprobe.conf
+
+2004-01-05 15:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: split drakboot into bootloader
+ and autologin configuration
+
+2004-01-05 15:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/shorewall.pm: revert code for testing
+ perl_checker :-/
+
+2004-01-05 14:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/: .perl_checker, bootloader.pm, wizards.pm,
+ interactive/http.pm, network/shorewall.pm,
+ partition_table/mac.pm, partition_table/raw.pm,
+ partition_table/sun.pm, resize_fat/dir_entry.pm: perl_checker
+ fixes
+
+2004-01-05 14:26 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po,
+ lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po,
+ pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po,
+ sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po, uz@Cyrl.po,
+ vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2004-01-05 13:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: only die if an error actually
+ happened...
+
+2004-01-05 13:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: use new wizards API
+
+2004-01-05 13:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: get rid of val_ref
+
+2004-01-05 13:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/netconnect.pm: the #-PO: comment must be
+ before the N("...") with nothing in between
+
+2004-01-05 13:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: do not remve network
+ interfaces in --testing mode
+
+2004-01-05 13:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix delete wizard steps
+
+2004-01-05 12:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix french translation
+
+2004-01-04 22:00 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2004-01-04 19:15 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates soft/control-center/po/da.po
+ soft/GtkMdkWidgets/po/da.po soft/urpmi/po/da.po
+ gi/perl-install/share/po/da.po
+
+2004-01-02 16:33 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cy.po, eu.po, mn.po: Added Mongolian
+ file; updated Welsh and Basque files
+
+2004-01-02 12:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: grub altconfigfile is kind of broken
+
+2004-01-02 02:08 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: updated
+
+2003-12-31 16:35 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: hi.po, nb.po: updated Hindi and Norwegian
+ files
+
+2003-12-30 13:09 Guillaume Cottenceau
+
+ * perl-install/drakxtools.spec: fix ask_dir dialog (#6152)
+
+2003-12-30 13:07 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: _ask_dir: when a directory is selected,
+ need a / in between the "filename" and the "selection" (#6152)
+
+2003-12-29 23:43 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: some suggestions from
+ jmdault, perl_checker
+
+2003-12-29 19:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: network/adsl.pm, network/ethernet.pm,
+ network/isdn.pm, network/modem.pm, network/netconnect.pm,
+ network/network.pm, network/tools.pm, standalone/drakconnect:
+ (wip but requested for string freeze) - do not silently discard
+ errors by ignoring exceptions - use new wizard layer - begin to
+ renew wizard steps (mdk10.0 specs)
+
+2003-12-29 17:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile.drakxtools: fix typo
+
+2003-12-29 16:48 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/: list_modules.pm, modules.pl: Handle commercial viamraid
+ module.
+
+2003-12-29 16:46 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/crypto.pm: Always prefer native amd64 versions for
+ updates.
+
+2003-12-29 16:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile.drakxtools: fix localedrake link
+
+2003-12-29 14:21 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/zh_TW.po: updated Chinese file
+
+2003-12-29 09:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/wizards.pm: - die if empty page name or if non
+ existent page name - only safely return after "end" step has been
+ reached - enable data to be a code ref to prevent ugly use of
+ val_ref, list_ref, and the like - post callback now override
+ "next" field - pass current step as an arg to "pre" callback -
+ pass current step result as an arg to "post" callback - enhanced
+ documentation - introduce safe_process() that smoothly exit on
+ wizard cancel - support interactive_help_id for installer
+
+2003-12-29 09:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: for removable devices,
+ we've to remove/add them one by one, so when several devices of
+ the same class are removed/added, we ask if we should handle them
+ several time.
+
+ let ask confirmation once per class instead (olivier blin, #6649)
+
+2003-12-29 09:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: do no ask several
+ times the kernel to switch into verbose mode (olivier blin)
+
+2003-12-29 09:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: really display which
+ devices were removed
+
+2003-12-29 08:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: add missing argument
+
+2003-12-29 08:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: try to have a better layout (at
+ least when embedded): let's have only one scrollbar that scroll
+ the whole window (in non embedded case, there's the problem of
+ the scrolled window size...)
+
+2003-12-29 08:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/run_program.pm: fix to enable drakconnect to be run
+ in "install" mode while being a standalone tool
+
+2003-12-29 08:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: this duplicate is now useless
+
+2003-12-29 08:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: ugtk2.pm: - simplify button layout - really pack
+ the two button sets at edgee by packing them in two different
+ hboxes with "start" and "end" grouping style
+
+2003-12-26 23:12 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2003-12-23 11:40 Guillaume Cottenceau
+
+ * move/: move.pm, isolinux/help.msg, isolinux/make.pl: add the
+ waitkey option for keys that have problems to be detected at boot
+
+2003-12-22 20:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: wip (for strings & interfaces)
+
+2003-12-22 20:08 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Changes to support new
+ etherboot floppy image syntax and file locations. perl_checker
+ conpliance.
+
+2003-12-22 20:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile.drakxtools: alias scannerdrake =>
+ drakscanner
+
+2003-12-22 19:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-13mdk
+
+2003-12-22 19:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-12mdk
+
+2003-12-22 18:02 Guillaume Cottenceau
+
+ * mdk-stage1/: tools.c, tools.h, url.c: try to use asprintf a bit
+ (hope it doesn't segfault too much)
+
+2003-12-22 17:48 Guillaume Cottenceau
+
+ * mdk-stage1/: automatic.c, network.c, url.c, url.h: http proxy
+ support for ftp/http install contributed by Olivier Blin <blino
+ at mandrake.org>
+
+2003-12-22 17:40 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: don't disallow ctrl-alt-del in drakx mode (we
+ don't have sysreqs)
+
+2003-12-22 15:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: - fix drakperm losing added
+ entries on mode switch (eg custom+system filter => custom only
+ filter) - make deletion robust (i do not understand how it has
+ "tomber en marche" but indeed it worked)
+
+2003-12-22 15:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakclock: clean that crappy code
+
+2003-12-22 15:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakclock: prevent one to open zillions
+ of sub dialogs
+
+2003-12-22 09:37 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fi.po, it.po: updated Finnish and Italian
+ files
+
+2003-12-22 08:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: (mail alert wizard) properly
+ handle faillure
+
+2003-12-22 08:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/common.pm: perl_checker cleanup
+
+2003-12-22 08:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: support HIDIOCAPPLICATION ioctl too
+
+2003-12-22 08:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: (mail alert wizard) check if
+ it's a valid user if it's not an email)
+
+2003-12-21 18:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/wizards.pm: let a step name be a callback in order
+ to be able to generate dynamic messages (in the past gettext was
+ called at step time, but now it's called at wizard data structure
+ compile time)
+
+2003-12-20 19:18 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated
+
+2003-12-19 22:24 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates
+ soft/kdebase-servicemenu/po/da.po soft/krozat/po/da.po
+ gi/perl-install/share/po/da.po
+ soft/galaxy/thememdk/mandrake_client/po/da.po
+
+2003-12-19 20:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/common.pm: do not show useless "ignore" button when
+ requesting root password through kdesu
+
+2003-12-19 18:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/printerdrake: perl_checker fixes
+
+2003-12-19 17:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/printerdrake: push help menu at right
+
+2003-12-19 16:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: fix layout: - let it fit when
+ embedded - move ok/cancel buttons out of the frame (thus nicely
+ separate them)
+
+2003-12-19 16:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: drakboot, drakfloppy: fix button layout
+ when embedded: pack buttons box at bottom
+
+2003-12-19 15:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: reuse WrappedLabel
+
+2003-12-19 15:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: resync
+
+2003-12-19 14:52 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Remove some packages
+
+2003-12-19 10:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/wizards.pm: (process) add val_ref and list_ref
+ support to ease data manipulation (as wizard data structure is
+ built early at compile time, ref on single values aren't any more
+ valid when values are setted)
+
+2003-12-18 20:57 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Fix daemon behavior, cron
+ warnings. Anthill bug #204.
+
+2003-12-18 18:06 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates
+ gi/perl-install/share/po/da.po
+
+2003-12-18 17:30 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates soft/control-center/po/da.po
+ soft/mdkkdm/po/da.po soft/urpmi/po/da.po soft/userdrake2/po/da.po
+ soft/wizard_perl/po/da.po gi/perl-install/share/po/da.po
+
+2003-12-18 17:00 Guillaume Cottenceau
+
+ * kernel/check_mar.pl, kernel/dependencies.pl,
+ kernel/update_kernel, mdk-stage1/modules.c, mdk-stage1/stage1.c,
+ mdk-stage1/tools.c, mdk-stage1/tools.h: 2.6 kernel support
+
+2003-12-18 15:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakclock: perl_checker fixes
+
+2003-12-18 13:14 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-12-18 12:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: fix previous button place at install time
+
+2003-12-18 12:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: fix spurious previous button at install
+ time on wizards' first steps
+
+2003-12-18 02:48 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: scanner.pm, standalone/scannerdrake: - Added
+ button for installing/updating firmware in main window (only if
+ appropriate scanner is present). - Fixed small bug in building
+ ScannerDB file from SANE description files.
+
+2003-12-17 16:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakclock: undeushize debug statement
+
+2003-12-17 16:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakclock: no stock items
+
+2003-12-17 16:05 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Temporary reinstall kdebase-kdm when
+ KDE is installed to allow lock to work
+
+2003-12-17 11:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: fix wrong message in error patch
+ (catched by new perl_checker)
+
+2003-12-17 02:05 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po,
+ lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po,
+ ro.po, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po,
+ ta.po, tg.po, th.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po,
+ wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-12-16 16:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: fix text layout by wrapping
+ text
+
+2003-12-16 16:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: separate version/author/...
+ from the license by space
+
+2003-12-16 15:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: reuse new wizard framework
+
+2003-12-16 15:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/wizards.pm: - consolidate code from drakwizard for
+ reussage by drakxtools wizard: add a wizard layer on top of
+ interactive that do proper backward/forward stepping for us -
+ add documentation - remove useless fixed_{var|list}
+
+2003-12-16 15:06 Guillaume Cottenceau
+
+ * move/move.pm: oops copy-pasting /etc/rc.d/rc.sysinit with
+ different shell behaviour :/
+
+2003-12-16 14:44 Nicolas Planel <nplanel at mandriva.com>
+
+ * perl-install/modules.pm: launch as shell
+
+2003-12-15 17:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/commands.pm: fix bug (detected by perl_checker!)
+
+2003-12-15 15:25 Nicolas Planel <nplanel at mandriva.com>
+
+ * perl-install/modules.pm: remove () to be perl_checker compliant
+
+2003-12-15 14:46 Nicolas Planel <nplanel at mandriva.com>
+
+ * perl-install/modules.pm: generate modprobe.conf when writing
+ modules.conf
+
+2003-12-15 14:43 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-12-15 13:07 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Add kontact
+
+2003-12-15 12:55 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Replace KDM by MDKKDM
+
+2003-12-15 03:29 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: scanner.pm, standalone/scannerdrake: Added
+ facility to install scanner firmware.
+
+2003-12-12 13:33 Pixel <pixel at mandriva.com>
+
+ * move/make_live: fix mandrake galaxy version download
+
+2003-12-11 23:22 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/scanner.pm: Let scannerdrake configure non-root
+ access to parallel port scanners automatically.
+
+2003-12-11 18:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: (summary) fix
+ network::shorewall::read() call (forget by florin when he enable
+ to choose the interface in drakfirewall)
+
+2003-12-11 16:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: perl_checker fix
+
+2003-12-11 12:21 Guillaume Cottenceau
+
+ * mdk-stage1/pcmcia_/probe.c: add latest identifiers from
+ pcmcia-cs-3.2.6
+
+2003-12-10 22:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2003-12-10 22:03 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated
+
+2003-12-09 21:36 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po,
+ lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po,
+ ro.po, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po,
+ ta.po, tg.po, th.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po,
+ wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-12-09 18:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone.pm: bump version and copyright year
+ (#6528)
+
+2003-12-09 17:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/http.pm: proxy support during install (thanks to
+ Olivier Blin)
+
+2003-12-09 17:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: perl_checker fixes
+
+2003-12-09 16:45 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: repeat after me, "kernel is da shit"
+
+2003-12-09 13:57 Guillaume Cottenceau
+
+ * move/make_live: we can't change language from localedrake since
+ */LC_CTYPE are broken symlinks
+
+2003-12-09 13:23 Guillaume Cottenceau
+
+ * move/make_live: remove rpmdrake menu entries
+
+2003-12-09 13:21 Pixel <pixel at mandriva.com>
+
+ * move/make_live: fix spanish mandrake galaxy
+
+2003-12-09 13:12 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: seems that some neuneu do "init 0" or "init 6"
+ instead of halt/reboot :(
+
+2003-12-09 12:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/fileshareset: fix ugly typo (big thanks
+ to John Madsen)
+
+2003-12-09 12:01 Guillaume Cottenceau
+
+ * move/isolinux/isolinux.cfg: add an acpi label
+
+2003-12-09 12:01 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: can poweroff in UP
+
+2003-12-09 11:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: upcase some labels
+
+2003-12-09 11:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: remove useless separator
+
+2003-12-09 10:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: handle new snd-bt87x driver from
+ alsa-1.0.0-rc2
+
+2003-12-09 10:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - split in multiples tools -
+ move profile managment into mcc - add "delete an interface"
+ wizard
+
+2003-12-09 10:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: kill unused variable
+
+2003-12-09 10:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: update copyright
+
+2003-12-09 10:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: handle multiple interfaces:
+ let's have a buffer pixmap per network interface
+
+2003-12-09 10:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: make it fit when embedded
+
+2003-12-08 19:04 Warly <warly at mandriva.com>
+
+ * mdk-stage1/stage1.c: fix typo
+
+2003-12-08 16:47 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: set volset
+
+2003-12-08 16:46 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: - tell devfsd to reload so that
+ /etc/devfsd/conf.d/mouse.conf is used and /dev/mouse created -
+ try to have less symlinks
+
+2003-12-08 16:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: (remove_alias_regexp_byname) introduce
+ it; works the same as remove_alias_regexp but matches alias name
+ instead of value
+
+2003-12-08 16:13 Pixel <pixel at mandriva.com>
+
+ * move/make_live_tree_boot: try to reduce then number of symlinks
+ (to avoid ELOOP)
+
+2003-12-08 14:38 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_totem: kill artsd and portmap without telling
+
+2003-12-08 14:38 Pixel <pixel at mandriva.com>
+
+ * move/data/always.list: xwait (the one from /usr/X11R6/bin) can be
+ needed (when using mountloop (?))
+
+2003-12-08 12:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * move/tree/alsa_default.pl: most mixer elements always are integer
+
+2003-12-08 12:29 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: allow user to put some more libraries in $HOME/lib
+
+2003-12-08 12:06 Pixel <pixel at mandriva.com>
+
+ * move/tree/startkde_move: call /etc/X11/xdm/Xsession instead of
+ /etc/X11/Xsession so that we go through a login shell and get
+ /usr/games in $PATH
+
+2003-12-08 10:55 Pixel <pixel at mandriva.com>
+
+ * move/make_live: also install kdegames (per regis request)
+
+2003-12-06 17:08 Pixel <pixel at mandriva.com>
+
+ * move/make_live: install ntp
+
+2003-12-05 19:14 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_totem: use G_BROKEN_FILENAMES in totem
+
+2003-12-05 19:00 Pixel <pixel at mandriva.com>
+
+ * move/: make_live, move.pm: fix netfs and make it run at startup
+
+2003-12-05 18:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: one more string that got badly
+ caught by last "not having latest perl_checker locally" commit
+
+2003-12-05 17:42 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: C is a dangerous language :((
+
+2003-12-05 17:22 Guillaume Cottenceau
+
+ * move/move.pm: don't start services that are obviously backups of
+ older files
+
+2003-12-05 17:07 Guillaume Cottenceau
+
+ * move/: Makefile, tree/alsa_default.pl, tree/sound.initscript:
+ titi fixes sound initscript for some alsa devices
+
+2003-12-05 15:07 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: hide fail to umount /image_always and /cdrom
+
+2003-12-05 15:05 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: Andrey told me how to tell supermount to force
+ unmount
+
+2003-12-05 14:12 Guillaume Cottenceau
+
+ * move/: Makefile, tree/konsolerc: default config file of konsole
+ has a large font :/
+
+2003-12-05 13:34 Guillaume Cottenceau
+
+ * move/make_live: bash-completion for lord guillomovitch
+
+2003-12-05 12:52 Guillaume Cottenceau
+
+ * move/: make_live, move.pm, tree/startkde_move: each time X
+ respawns we need /etc/X11/Xsession rather than only startkde
+
+2003-12-05 12:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: one can get "Mass Storage" not
+ always "Mass Storage|..."
+
+2003-12-05 11:33 Pixel <pixel at mandriva.com>
+
+ * move/make_live: mdk-move is now firewall ready
+
+2003-12-05 00:41 Guillaume Cottenceau
+
+ * perl-install/share/po/fr.po: by-hand add the newest move string
+
+2003-12-05 00:18 Pixel <pixel at mandriva.com>
+
+ * move/make_live: modify simplified menu to see new
+ mandrake_doc-move-{en,fr}
+
+2003-12-05 00:01 Pixel <pixel at mandriva.com>
+
+ * move/make_live: install mandrake_doc-move-{en,fr} &
+ mandrake_doc-move-drakxtools-{en,fr} instead of
+ mandrake_doc-{en,fr}
+
+2003-12-04 23:42 Guillaume Cottenceau
+
+ * move/make_live: add crack-attack
+
+2003-12-04 23:24 Pixel <pixel at mandriva.com>
+
+ * move/data/always.list: add f*cking cardmgr
+
+2003-12-04 23:15 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: - cleanup key_parts() so that it doesn't re-assign
+ mount points each time it is called - mount point assignment
+ moved to key_mount()
+
+2003-12-04 23:00 Guillaume Cottenceau
+
+ * move/move.pm: better message when key has only non vfat
+ partitions
+
+2003-12-04 21:35 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: don't die horribly if the usb key partition is not
+ vfat, catch the error and display a message accordingly
+
+2003-12-04 19:25 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_behind_totem: mount loopback ro to have less
+ warnings
+
+2003-12-04 18:53 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_totem: window title "Busy files" is not very
+ informative, replacing with the simple string "Error"
+
+2003-12-04 18:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (configureNetwork) fix zeroconf
+ configuring: check that there no dynamic interfaces instead of
+ just checking the last interface
+
+2003-12-04 18:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/tools.pm: (is_dynamic_ip) handle habing ppp
+ like interfaces in interfaces list
+
+2003-12-04 17:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (configureNetwork)
+ configureNetworkNet() wrongly put WIRELESS_NWID=HASH(0x8e93758)
+ in ifcfg-<intf> because we give it the last configured network
+ card intead of the interfaces list
+
+ however, for a few weeks, it now checks if some interfaces are
+ dynamic before offering to configure zeroconf, hence there was a
+ bug since we only checked if *last* interfaces wasn't static
+ which would results in wrong configuration if some interface were
+ dynamics but the last one was static
+
+2003-12-04 17:35 Guillaume Cottenceau
+
+ * move/move.pm: configure pcmcia as well
+
+2003-12-04 17:31 Guillaume Cottenceau
+
+ * perl-install/c/stuff.xs.pl: log_message in drakx mode is better
+ when logged for real
+
+2003-12-04 17:06 Guillaume Cottenceau
+
+ * move/move.pm: allow nl language too
+
+2003-12-04 17:05 Guillaume Cottenceau
+
+ * perl-install/share/po/nl.po: updates by Reinout van Schouwen
+ (mmove)
+
+2003-12-04 16:59 Guillaume Cottenceau
+
+ * move/make_live: add tv apps
+
+2003-12-04 16:04 Guillaume Cottenceau
+
+ * move/move.pm: Xsession should be run with cwd as $HOME (fixes
+ mountloop not working when giving relative path for secure
+ directory)
+
+2003-12-04 16:03 Guillaume Cottenceau
+
+ * move/todo: .mdkmove-user loopback suggestions from fredl
+
+2003-12-04 15:43 Guillaume Cottenceau
+
+ * move/move.pm: still write timezone and configure supermount in
+ noauto
+
+2003-12-04 15:36 Guillaume Cottenceau
+
+ * move/move.pm: bypass most network/printer/etc autodetection and
+ configuration in $::noauto
+
+2003-12-04 15:28 Guillaume Cottenceau
+
+ * move/move.pm: simplify noauto
+
+2003-12-04 15:28 Guillaume Cottenceau
+
+ * move/move.pm: use run_program rather than system when possible so
+ that we have logs
+
+2003-12-04 15:18 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: smaller isolinux progress bar
+
+2003-12-04 14:35 Guillaume Cottenceau
+
+ * move/move.pm: better cleankey: also clean loopback so that kde
+ config files disappear also
+
+2003-12-04 14:22 Guillaume Cottenceau
+
+ * move/: make_live, move.pm: have numlock (but only in not laptop)
+
+2003-12-04 14:15 Pixel <pixel at mandriva.com>
+
+ * move/make_live: package "newt" is needed by alsa-utils (see 9.2
+ errata for more)
+
+2003-12-04 14:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: use Options "IgnoreEDID" when using
+ the proprietary X driver "nvidia"
+
+2003-12-04 13:57 Guillaume Cottenceau
+
+ * move/move.pm: /var/tmp must be user writable for lpr| to work for
+ printing from OOo to work
+
+2003-12-04 13:54 Guillaume Cottenceau
+
+ * move/move.pm: symlink /var/lib/rpm so that "rpm -qa" works
+
+2003-12-04 13:04 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_behind_totem: tell kicker that it should refetch
+ menu's icons
+
+2003-12-04 12:18 Pixel <pixel at mandriva.com>
+
+ * move/data/always.list: allow sh to load when cd is umounted
+
+2003-12-04 12:08 Guillaume Cottenceau
+
+ * move/make_live: we don't want everyone to have the same ssh key
+ :)
+
+2003-12-04 11:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, standalone.pm, network/adsl.pm,
+ network/network.pm: - use do_pkgs->ensure_is_installed instead of
+ do_pkgs->install where it's easy to do so - do_pkgs->install
+ won't do anything when $::testing
+
+ we need a ensure_are_installed
+
+ we also need to share more package pkgs_interactive code which is
+ hosted in install_any and standalone
+
+2003-12-04 10:47 Pixel <pixel at mandriva.com>
+
+ * move/make_live: install emacs
+
+2003-12-04 10:46 Pixel <pixel at mandriva.com>
+
+ * move/make_live: inspect /export/Mandrake/RPMS to get the kernel
+ version
+
+2003-12-03 20:34 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated translation
+
+2003-12-03 19:44 Guillaume Cottenceau
+
+ * move/: Makefile, tree/netscape: OOo launches netscape so we need
+ a fake netscape
+
+2003-12-03 19:18 Guillaume Cottenceau
+
+ * move/move.pm, perl-install/share/po/de.po,
+ perl-install/share/po/es.po, perl-install/share/po/fr.po,
+ perl-install/share/po/it.po: fix english
+
+2003-12-03 16:56 Guillaume Cottenceau
+
+ * move/data/keyfiles: scannerdrake will modify files in
+ /etc/sane.d/ so they must be writable
+
+2003-12-03 16:39 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: ensure ksycoca is configured correctly. It is not
+ saved on the key
+
+2003-12-03 14:56 Guillaume Cottenceau
+
+ * move/move.pm: allow easier debugging by not killing shell on #2
+ when starting with "shell" commandline param
+
+2003-12-03 14:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: unfuzzy entries "fuzzed" by bad
+ commit due to old perl_checker being used
+
+2003-12-03 14:41 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: configure timezone
+
+2003-12-03 14:20 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: add md5sum to the iso
+
+2003-12-03 12:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/hi.po: Added Hindi file
+
+2003-12-03 12:57 Guillaume Cottenceau
+
+ * move/: move.pm, data/etcfiles: mouse with more than 5 buttons add
+ a hook in /etc/X11/xinit.d, this dir need be writable for new
+ files
+
+2003-12-03 04:38 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po,
+ tg.po, th.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po,
+ zh_CN.po, zh_TW.po: fixed my previous bad entries
+
+2003-12-03 00:17 Guillaume Cottenceau
+
+ * move/tree/X_move: should at least disable X respawning too fast
+ now
+
+2003-12-02 21:25 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_totem: allow mdk_totem to kill root processes
+
+2003-12-02 21:24 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: restore /etc/mtab linked to /proc/mounts, other
+ things like "umount /xxx" can fail because /xxx is in
+ /proc/mounts, but not in mtab
+
+2003-12-02 21:19 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_behind_totem: fix typo
+
+2003-12-02 21:14 Guillaume Cottenceau
+
+ * move/move.pm: need to touch /etc/mtab at very beginning to
+ prevent from creating a link to the RO volume thus failing
+ substInFile from fs::umount
+
+2003-12-02 20:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: no hds is no big deal for mdk move
+
+2003-12-02 20:49 Guillaume Cottenceau
+
+ * move/move.pm: now that mountloop blocks, we need to retain XFree
+ from blinking when freeing up resources because startkde will not
+ be there when mountloop exits
+
+2003-12-02 20:34 Guillaume Cottenceau
+
+ * move/move.pm: full stage1 may mount /proc/bus/usb
+
+2003-12-02 20:32 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: remove /etc/mtab link first
+
+2003-12-02 20:11 Guillaume Cottenceau
+
+ * move/: Makefile, hack, hack_boot_img, hack_cdrom, hack_network,
+ isolinux/isolinux.cfg: we need usb/firewire support for
+ usb/fireware cdroms!
+
+2003-12-02 20:08 Guillaume Cottenceau
+
+ * mdk-stage1/stage1.c: I wonder how 9.2 worked in all.rdz!? Thisd
+ did not even call method_select_and_prepare()
+
+2003-12-02 20:04 Guillaume Cottenceau
+
+ * kernel/update_kernel: have these modules at first so that they
+ are loaded faster
+
+2003-12-02 19:31 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: initialize mtab correctly in mode 3
+
+2003-12-02 18:37 Guillaume Cottenceau
+
+ * move/make_live: no need for doing things in a block
+
+2003-12-02 18:36 Guillaume Cottenceau
+
+ * move/make_live: update menus and kbuildsycoca need be done after
+ we modify relevant files
+
+2003-12-02 18:34 Guillaume Cottenceau
+
+ * move/make_live: remove "Login Manager" module from kcontrol
+
+2003-12-02 18:29 Guillaume Cottenceau
+
+ * move/make_live: try to classify modifications made to the
+ installed system
+
+2003-12-02 18:03 Pixel <pixel at mandriva.com>
+
+ * move/data/boot.list: some more programs menu entries have been
+ removed
+
+2003-12-02 18:01 Pixel <pixel at mandriva.com>
+
+ * move/data/boot.list: remove k3b.desktop
+
+2003-12-02 17:58 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: empty help.pm
+
+2003-12-02 17:36 Pixel <pixel at mandriva.com>
+
+ * move/make_live: fix broken alternatives (esp. for
+ foomatic-db-engine which register non-existant binaries)
+
+2003-12-02 17:33 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: create a valid mtab (to allow kde to see correctly
+ mounted partitions)
+
+2003-12-02 17:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: fix typo
+
+2003-12-02 16:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, install_steps.pm: create
+ fix_broken_alternatives()
+
+2003-12-02 15:47 Pixel <pixel at mandriva.com>
+
+ * move/make_live: remove modem.pm
+
+2003-12-02 15:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2003-12-02 13:05 Pixel <pixel at mandriva.com>
+
+ * move/make_live: ensure make_live can be run more than once
+ without breaking /etc/X11/wmsession.d/01KDE
+
+2003-12-02 12:06 Guillaume Cottenceau
+
+ * move/etc-monitorer.pl: drop unused variables
+
+2003-12-02 10:26 Guillaume Cottenceau
+
+ * move/make_live: more 2d games
+
+2003-12-02 09:49 Pixel <pixel at mandriva.com>
+
+ * move/make_live: - add some packages so that scannerdrake,
+ diskdrake --dav, diskdrake --fileshare works - remove userdrake
+ from mcc
+
+2003-12-01 23:14 Guillaume Cottenceau
+
+ * move/: move.pm, runstage2, doc/README: copyright and license
+ MandrakeMove
+
+2003-12-01 23:01 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-12-01 22:53 Guillaume Cottenceau
+
+ * move/make_live: openssh-askpass for mountloop doesn't allow to
+ click on ok/cancel buttons
+
+2003-12-01 19:48 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po,
+ tg.po, th.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po,
+ zh_CN.po, zh_TW.po: updated pot file
+
+2003-12-01 19:45 Guillaume Cottenceau
+
+ * move/move.pm, move/tree/mdk_move_loop, perl-install/devices.pm:
+ chloop support
+
+2003-12-01 17:22 Guillaume Cottenceau
+
+ * perl-install/any.pm: drakx_version: have a suitable value for
+ move
+
+2003-12-01 16:51 Guillaume Cottenceau
+
+ * mdk-stage1/stage1.c, move/move.pm, move/data/devices: show on
+ console #2 when shells are killed
+
+2003-12-01 16:40 Guillaume Cottenceau
+
+ * move/: make_live, move.pm: start with Xsession so that we run
+ /etc/X11/xinit.d scripts (mountloop in particular)
+
+2003-12-01 16:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: - kill icons on button -
+ kill profil combo box & log button (duplicated features already
+ availlable within mcc) - translate one more string
+
+2003-12-01 15:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: translate a few untranslated
+ strings
+
+2003-12-01 15:52 Guillaume Cottenceau
+
+ * kernel/update_kernel: conditionally packdrake
+
+2003-12-01 15:32 Guillaume Cottenceau
+
+ * move/make_live: k3b as well
+
+2003-12-01 15:30 Guillaume Cottenceau
+
+ * mdk-stage1/: init.c, lomount.c, mount.c: we need loop-aes for
+ mountloop, so we use change_loop with a special device number
+
+2003-12-01 13:26 Guillaume Cottenceau
+
+ * move/move.pm: to mount samba shared without warning messages we
+ need /var/lib/samba/codepages/*
+
+2003-12-01 13:18 Guillaume Cottenceau
+
+ * move/Makefile: don't have a CVS directory on iso
+
+2003-12-01 12:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/nfs.pm: fix removing domain name (esp. when
+ domain name is empty)
+
+2003-12-01 12:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: forward sagem configuration fix
+
+2003-12-01 12:34 Guillaume Cottenceau
+
+ * move/make_live: should at least compile now
+
+2003-12-01 12:34 Guillaume Cottenceau
+
+ * move/make_live: don't display cd based applications in simplified
+ menu
+
+2003-12-01 12:02 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_totem: nicer dialog box
+
+2003-12-01 11:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/Makefile: add mdk_totem in po
+
+2003-12-01 11:51 Pixel <pixel at mandriva.com>
+
+ * move/make_live: we want ksycoca-en_US, not ksycoca-en
+
+2003-12-01 11:51 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: don't fail when ksycoca-LANG doesn't exist
+
+2003-12-01 11:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-11mdk
+
+2003-12-01 11:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (configure) prevent silently
+ skipping configuration steps by explicitely dying
+
+2003-12-01 11:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: fix sagem configuration (we were
+ skipping some steps)
+
+2003-12-01 10:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (configure) do not install packages
+ in testing mode
+
+2003-11-28 23:10 Guillaume Cottenceau
+
+ * move/move.pm: don't do useless copy files on self when no
+ /etc/passwd is found
+
+2003-11-28 21:02 Guillaume Cottenceau
+
+ * move/data/etcfiles: drakconnect will have trouble without these
+
+2003-11-28 19:18 Guillaume Cottenceau
+
+ * move/make_live: provide a way for speedtouch users of free
+ version to escape
+
+2003-11-28 19:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_okcancel) try to better fit both
+ install teams needs and interface team one's:
+
+ - in the installer, all windows run under $::isWizard due to
+ design stuff (wizard aspect and wizard mode should really be
+ really two differents options for cleanity but that's
+ postponed); o so to prevent ok/cancel buttons to be pushed at
+ the right edge when we're asking a question instead of being
+ in a wizard step, we add an empty label between the ok and
+ cancel o we still put an empty label in wizard mode when not in
+ the installer so that help/cancel and next/previous buttons
+ packs get separated as requested by interface team
+
+ - we add an empty field when cancel/previous button does not
+ exists so that when there's only one button, we prevent it to
+ be centered (eg: "finish" in wizards); note that if
+ $::Wizard_no_previous is not set, the button is still centered
+ so that we keep some flexibility
+
+2003-11-28 18:26 Guillaume Cottenceau
+
+ * move/todo: speedtouch in free mode
+
+2003-11-28 18:10 Guillaume Cottenceau
+
+ * move/move.pm: refresh after main wizard window has been destroyed
+
+2003-11-28 17:42 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: we still can't eject. try to shotgun a bit.
+
+2003-11-28 17:41 Guillaume Cottenceau
+
+ * move/move.pm: don't display startkde shit on first console
+
+2003-11-28 17:35 Guillaume Cottenceau
+
+ * move/isolinux/: help.msg, make.pl: fit again
+
+2003-11-28 17:31 Guillaume Cottenceau
+
+ * move/move.pm: when we don't detect the key at first, or user plug
+ his key when prompted, ensure we keep the same user (we don't re
+ ask for user) else we'll create a user with uid 502 and fail
+ miserably to launch kde (home not writable)
+
+2003-11-28 16:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: on interface team request: - try to make
+ button packing more readable - comment some parameters and what
+ is done - add space to split buttons in two packs but if there's
+ one button (so that eg XFdrake's quit button still get
+ centered) - pack button the kde order while installing or while
+ under kde, gnome order else: o kde order is
+ help/advanced/_____/ok/cancel o gnome order is
+ help/advanced/_____/ok/cancel o wizard order is
+ help/advanced/_____/previous/next
+
+2003-11-28 16:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: (read_all_conf) ignore
+ ifcfg-<intf>~ and the like entries
+
+2003-11-28 16:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: (configureNetwork2) do not
+ install package or rewrite config files in testing mode
+
+2003-11-28 16:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: (main) do not silently
+ discard exceptions; if some exception is raised for anything else
+ than "wizcancel", we should rethrow it again instead of silently
+ ignoring bugso...
+
+2003-11-28 16:14 Guillaume Cottenceau
+
+ * move/tree/startkde_move: let time for X to really die
+
+2003-11-28 16:13 Guillaume Cottenceau
+
+ * move/tree/X_move: try to fix (and let some debug) X respawning
+ too fast
+
+2003-11-28 15:19 Guillaume Cottenceau
+
+ * move/move.pm: disable key when nvidia clp is not here and we're
+ not in nfs
+
+2003-11-28 15:12 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: be sure door is not locked (/sbin/init
+ busyfies cdrom is image_always is not in memory - which is the
+ case except when in mdk_totem)
+
+2003-11-28 14:56 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: remove message in case it fails miserably
+
+2003-11-28 14:48 Guillaume Cottenceau
+
+ * move/isolinux/: help.msg, make.pl: fit on 80 columns
+
+2003-11-28 13:56 Pixel <pixel at mandriva.com>
+
+ * move/make_live: kbuildsycoca keeps a snapshot of current
+ environment, esp. $ENV{BROWSER}
+
+ trying to be as similar as startkde environment
+
+2003-11-28 12:36 Pixel <pixel at mandriva.com>
+
+ * move/make_live: install kernel-smp-xxx
+
+2003-11-28 12:29 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: cp_af() is no good when file is a link. we need a
+ simple cp() ...
+
+2003-11-28 11:08 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: ignore failing to build nvidia clp
+
+2003-11-28 11:04 Pixel <pixel at mandriva.com>
+
+ * move/make_live_tree_boot: it is normal that nvidia files are
+ missing when we build without cdcom rpms
+
+2003-11-28 10:59 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: create .kde/share/config in user's home
+
+2003-11-28 10:57 Pixel <pixel at mandriva.com>
+
+ * move/make_live: if X proprietary drivers are not installed, just
+ skip
+
+2003-11-28 09:27 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: fix typo
+
+2003-11-28 08:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not restart network
+ service in testing mode
+
+2003-11-28 00:07 Guillaume Cottenceau
+
+ * move/isolinux/: help.msg, isolinux.cfg, make.pl: some isolinux
+ stuff
+
+2003-11-27 23:33 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: holy shotgun method for del_loops as well, or
+ else we'll miss image_always loop hence won't be able to eject
+ cdrom
+
+2003-11-27 22:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakgw: prevent altering system
+ configuration in testing mode in optional steps
+
+2003-11-27 21:10 Guillaume Cottenceau
+
+ * move/move.pm: have only one /etc/passwd so that when user changes
+ password on one host, change is seen on other hosts
+
+2003-11-27 18:28 Guillaume Cottenceau
+
+ * perl-install/install_any.pm: save shell pid
+
+2003-11-27 18:27 Guillaume Cottenceau
+
+ * move/move.pm: password in screensaver doesn't make sense if we
+ keep the shell
+
+2003-11-27 18:21 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: - handle non partitioned usb keys (they are in
+ {raw_hds}) - set $ENV{XAUTHORITY} in case we want to use it one
+ day
+
+2003-11-27 18:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: add isKeyUsb() (removed from
+ move.pm)
+
+2003-11-27 18:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: put in {raw_hds} non partitioned usb keys
+
+2003-11-27 18:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: get_raw_hds adds removables to {raw_hds}, it
+ doesn't overwrite it (so that non partitioned usb keys are not
+ dropped)
+
+2003-11-27 17:42 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: don't eject cdrom in nfs
+
+2003-11-27 17:28 Guillaume Cottenceau
+
+ * move/todo: done
+
+2003-11-27 17:27 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: smp kernel panics when calling poweroff!!
+
+2003-11-27 16:42 Guillaume Cottenceau
+
+ * kernel/update_kernel: "rh" loop is now called change_loop
+
+2003-11-27 16:39 Guillaume Cottenceau
+
+ * move/tree/X_move: try to not respawn X too fast
+
+2003-11-27 16:33 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: copy ksycoca instead of symlinking it (to allow
+ monitorer to do its job cleanly)
+
+2003-11-27 16:28 Guillaume Cottenceau
+
+ * move/move.pm: nobadchars opt for vfat so that we are allowed to
+ create files with : in filenames (kmail will need that)
+
+2003-11-27 16:20 Guillaume Cottenceau
+
+ * move/tree/mdk_totem.desktop: fabman prefers this
+
+2003-11-27 16:10 Guillaume Cottenceau
+
+ * mdk-stage1/lomount.c: in move kernel, we need change_loop.o
+
+2003-11-27 15:45 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_behind_totem: fake umounting /image when we use
+ live_tree/ instead of live_tree.clp
+
+2003-11-27 15:43 Pixel <pixel at mandriva.com>
+
+ * move/data/totem.list: when using alsa, one need some conf file
+ when totem is running
+
+2003-11-27 15:36 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_behind_totem: if /image is a symlink, don't try to
+ umount and so don't fail
+
+2003-11-27 15:06 Pixel <pixel at mandriva.com>
+
+ * move/data/always_i18n.list: ksycoca is lang dependent
+
+2003-11-27 15:04 Pixel <pixel at mandriva.com>
+
+ * move/data/always.list: X_move is needed
+
+2003-11-27 15:02 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_totem: kill klaptopdaemon without warning
+
+2003-11-27 14:54 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: non cpu burning forever loops
+
+2003-11-27 14:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_packtable) enable to provide 0
+ parameters for xpadding and ypadding (much cleaner)
+
+2003-11-27 14:36 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: move tries to eject cdrom
+
+2003-11-27 14:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_packtable) simplify xpadding
+ managment
+
+2003-11-27 14:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakgw: more explanations
+
+2003-11-27 14:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakgw: let drakgw embed (interface team
+ request)
+
+2003-11-27 14:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (new) do not show up anymore banners for
+ wizards when embeeded (the set_position() and the
+ set_size_request() calls do not make any sense at all when
+ embedded anyway)
+
+2003-11-27 14:18 Guillaume Cottenceau
+
+ * mdk-stage1/init.c, move/Makefile, move/make_live, move/tree/halt,
+ move/tree/halt_reboot, move/tree/reboot: allow to halt machine
+
+2003-11-27 13:58 Guillaume Cottenceau
+
+ * mdk-stage1/init.c, move/make_live, move/move.pm,
+ move/tree/Reboot.desktop, move/tree/X_move,
+ move/tree/halt_reboot, move/tree/startkde_move: at last a good
+ reboot/halt from kde
+
+2003-11-27 13:27 Pixel <pixel at mandriva.com>
+
+ * move/: make_live, move.pm: better have a good global
+ /usr/share/services/ksycoca by linking it to the key, rather than
+ configuring it in every users .kde/share/services/ksycoca
+
+2003-11-27 13:06 Guillaume Cottenceau
+
+ * move/: make_live, tree/Reboot.desktop: use a Reboot.desktop to
+ have ability to reboot graphically in menu it's not too good
+ because it's not top-down in the menu, but to do that we'd need
+ to modify kdebase or launche kde with kdm it-de-es translations
+ taken from gtk+mdk.mo
+
+2003-11-27 13:04 Guillaume Cottenceau
+
+ * move/tree/mdk_totem.desktop: translate (me, giuseppe, till, juan)
+
+2003-11-27 12:51 Pixel <pixel at mandriva.com>
+
+ * move/data/always.list: add startkde_move and xwait
+
+2003-11-27 11:29 Dam's
+
+ * perl-install/ugtk2.pm: added xpadding/ypadding options in
+ create_packtable
+
+2003-11-27 11:18 Guillaume Cottenceau
+
+ * move/make_live: again
+
+2003-11-27 11:18 Guillaume Cottenceau
+
+ * move/make_live: woops
+
+2003-11-27 10:54 Guillaume Cottenceau
+
+ * mdk-stage1/stage1.c: don't display version in move
+
+2003-11-27 10:36 Pixel <pixel at mandriva.com>
+
+ * move/data/always.list: ksycoca is no more global
+
+2003-11-27 10:30 Pixel <pixel at mandriva.com>
+
+ * move/data/boot.list: no more global ksycoca
+
+2003-11-27 10:26 Guillaume Cottenceau
+
+ * move/make_live: we need pcmcia-cs if we ever want pcmcia to work
+
+2003-11-26 19:24 Guillaume Cottenceau
+
+ * move/move.pm: - overload install_steps_interactive::errorInStep
+ because it's nice to provide user with a way to get out of it
+ (remove sysconf files) - reboot in a better manner so that we
+ don't have console locked after XFree gets killed
+
+2003-11-26 19:10 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: consider than presence of /tmp/reboot means a
+ clean exit
+
+2003-11-26 18:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile.config: add drakups
+
+2003-11-26 17:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: upsdrvctl start will fail if
+ section name contains spaces
+
+2003-11-26 17:48 Guillaume Cottenceau
+
+ * move/make_live: call my halt_reboot in place of halt and reboot
+
+2003-11-26 17:46 Guillaume Cottenceau
+
+ * move/: Makefile, tree/X_move, tree/halt_reboot,
+ tree/startkde_move: allow to reboot the machine
+
+2003-11-26 17:41 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: cleanup startkde messages on clean exit
+
+2003-11-26 17:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: - configure properly usb &
+ serial connected mge devices - use perl-Libconf to shrink down
+ the code size and better respect the user config file (keep
+ important comments and the like - thx dam's for his support)
+
+2003-11-26 17:07 Pixel <pixel at mandriva.com>
+
+ * move/: make_live, move.pm: - configure ksycoca per lang -
+ configure ksycoca with flag working - configure kdeglobals lang
+ (for kcontrol and a few more)
+
+2003-11-26 17:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: export driver too
+
+2003-11-26 16:38 Guillaume Cottenceau
+
+ * move/make_live: binutils contains strings
+
+2003-11-26 15:45 Guillaume Cottenceau
+
+ * move/make_live: allow services we won't start to not show up in
+ chkconfig queries
+
+2003-11-26 15:36 Guillaume Cottenceau
+
+ * move/move.pm: syslog is started by us
+
+2003-11-26 15:26 Guillaume Cottenceau
+
+ * move/tree/wait4x: make it work
+
+2003-11-26 15:14 Guillaume Cottenceau
+
+ * move/: Makefile, tree/startkde_move, tree/wait4x: we can't keep
+ perl in memory if we want to eject cdrom
+
+2003-11-26 14:11 Guillaume Cottenceau
+
+ * move/move.pm: qiv has much more POWER than ourselves for setting
+ up a persistent background
+
+2003-11-26 14:01 Guillaume Cottenceau
+
+ * move/Makefile, move/move.pm, move/tree/X_move,
+ move/tree/startkde_move, perl-install/install_steps_gtk.pm: allow
+ X to restart after dying through X_move script, startkde also
+ through startkde_move script
+
+2003-11-26 13:58 Guillaume Cottenceau
+
+ * move/xwait.c: allow to ask it to stay permanent (used for not
+ blinking when startkde exits)
+
+2003-11-26 13:44 Guillaume Cottenceau
+
+ * move/data/: BOOT-1024-MOVE.jpg, BOOT-1280-MOVE.jpg,
+ BOOT-1600-MOVE.jpg, BOOT-800-MOVE.jpg: new splash screen
+
+2003-11-26 13:33 Guillaume Cottenceau
+
+ * perl-install/c/stuff.xs.pl: inspires from xwait: keep a client
+ until some window is created, otherwise X server blinks to hell
+
+2003-11-26 12:48 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: it.po, nb.po: updated Italian and
+ Norwegian files
+
+2003-11-26 10:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakgw: perl_checker fix
+
+2003-11-26 10:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/tools.pm: link beat detection: enable both
+ net_monitor and drakconnect usage at both time (not so usefull
+ but cleaner)
+
+2003-11-26 10:32 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: simplify (already done)
+
+2003-11-26 10:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: extract kdeglobals configuration from
+ lang::write() into lang::configure_kdeglobals()
+
+2003-11-26 09:47 Pixel <pixel at mandriva.com>
+
+ * move/make_live: install openssh-server
+
+2003-11-25 22:10 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: no need to skip network.pm anymore
+
+2003-11-25 22:09 Pixel <pixel at mandriva.com>
+
+ * move/data/boot.list: network.pm doesn't exist anymore in new
+ drakxtools
+
+2003-11-25 20:42 Guillaume Cottenceau
+
+ * move/move.pm: "proceeding" msg is also not capitalized
+
+2003-11-25 20:40 Guillaume Cottenceau
+
+ * move/move.pm: insmod uses glibc syslog facility for outputting
+ error messages, thus we need to start syslogd very soon to not
+ end up with silly parport_pc busy messages on console #1
+
+2003-11-25 19:29 Guillaume Cottenceau
+
+ * move/todo: usb mouse (plus usb keyboard and usb key) works on
+ fredhack
+
+2003-11-25 19:20 Guillaume Cottenceau
+
+ * move/move.pm: prepare for stripped down version
+
+2003-11-25 19:12 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: mount i18n clp ASAP so that console two shell uses
+ the right locales
+
+2003-11-25 18:57 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: shut up
+
+2003-11-25 18:42 Guillaume Cottenceau
+
+ * move/todo: pixel, don't forget to install drakconf >= 9.3-8mdk
+
+2003-11-25 18:27 Guillaume Cottenceau
+
+ * move/make_live: remove uncessary wizards from appearing in MCC
+
+2003-11-25 17:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-10mdk
+
+2003-11-25 17:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix bogus use of old netwok
+ module instead of network::network
+
+2003-11-25 16:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix #5664 (alsp part of
+ #5065 and #5361): list ppp0 for modem and adsl connections too
+ (though not all adsl connection types need it) and ippp0 too for
+ isdn ones
+
+2003-11-25 15:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/modem.pm: fix #6184: read back "Connection
+ Name" and "Domain Name" fields
+
+2003-11-25 14:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_any.pm: (getAndSaveFile) log which file copy
+ failled in order to knwow which partition is not big enough (see
+ #6149)
+
+2003-11-25 14:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: fix nasty gc error
+
+2003-11-25 14:06 Guillaume Cottenceau
+
+ * move/move.pm: in mode 2, also pre fix /etc/rc.d/rc5.d links
+
+2003-11-25 13:37 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_totem: allow DEBUG
+
+2003-11-25 13:20 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: use /dev/mouse in the X config file to allow
+ changing mouse device live
+
+2003-11-25 13:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: add new mouse "PS/2|Automatic" and use it
+ by default, so that "PS/2|Generic PS2 Wheel Mouse" use protocol
+ IMPS/2 which is needed when we force mouse change live ("auto"
+ doesn't work in that case)
+
+2003-11-25 12:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: don't fake ide-scsi for move
+ (otherwise, we would need to do it in stage1 too)
+
+2003-11-25 12:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: for move, make it use ide-scsi
+ *now*, not after reboot
+
+2003-11-25 11:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: fix destroying HorizSync &
+ VertRefresh (especially when coming from ddcxinfos with unknown
+ EISA_ID)
+
+2003-11-25 11:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: check that libglx.so is a link
+ instead of checking if it exists (since it is now in nvidia.clp)
+
+2003-11-25 10:34 Pixel <pixel at mandriva.com>
+
+ * move/: Makefile, make_live_tree_boot, move.pm, data/nvidia.list:
+ - handle nvidia.clp - handle X proprietary drivers
+
+2003-11-25 10:25 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_behind_totem: - nvidia.clp support - handle
+ umounting failure by remounting what can be and calling mdk_totem
+ again (which will hopefully tell what program did make
+ umounting fail)
+
+2003-11-24 19:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (configure) forward fix adsl
+ connection class due to type being now translated
+
+2003-11-24 19:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/tools.pm: reintroduce detect_timezone
+ (indeed that one was needed :-()
+
+2003-11-24 19:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (configure) fix adsl connection
+ class due to type being now translated
+
+2003-11-24 18:30 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2003-11-24 16:54 Pixel <pixel at mandriva.com>
+
+ * move/data/always.list: allow sleep(1) to run correctly in
+ mdk_behind_totem when everything is unmounted
+
+2003-11-24 16:43 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-11-24 14:50 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_totem: - fix regexps according to {cmdline} format
+ change - add nvidia clp handling
+
+2003-11-24 14:43 Pixel <pixel at mandriva.com>
+
+ * move/make_live: - install NVIDIA_nforce-xxx - /usr/lib/libGL.so.1
+ links to /etc/X11/libGL.so.1 - create /usr/lib/libGL.so.1.fglrx
+ and /usr/lib/libGL.so.1.nvidia => at runtime we create
+ /etc/X11/libGL.so.1 linked to one of them
+
+2003-11-24 13:52 Pixel <pixel at mandriva.com>
+
+ * move/data/symlinks: /opt is needed by fucking acroread
+
+2003-11-24 13:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2003-11-24 12:51 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cy.po, de.po, eu.po: updated Welsh,
+ German and Basque files
+
+2003-11-24 12:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: isdn.pm, netconnect.pm: fix isdn
+ detection: detect all isdn cards, not only the first one
+
+2003-11-24 12:33 Pixel <pixel at mandriva.com>
+
+ * move/make_live: add some comment
+
+2003-11-24 12:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: bump buildrequire for ldetect
+ because of new API
+
+2003-11-24 11:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/keyboard.pm: thx perl_checko
+
+2003-11-23 22:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getNet) handle zaurus connected
+ through USB cables resulting in usbnet driver creating usbX
+ interfaces
+
+2003-11-23 22:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/tools.pm: (connected2) rename it as
+ check_link_beat() to better reflect what he does
+
+2003-11-23 22:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/tools.pm: (detect_timezone, disconnected,
+ type2interface) kill dead code
+
+2003-11-23 22:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: keyboard.pm, network/tools.pm: reuse bg_command: -
+ major cleanups - get rid of "kid exited -1 at
+ /usr/lib/libDrakX/network/tools.pm line 182." warnings
+
+2003-11-23 22:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/run_program.pm: introduce bg_command object that
+ enable to fork a sub that give back data through STDOUT a la
+ run_program::get_stdout but w/ arbitrary perl code instead of
+ external program and in background
+
+2003-11-23 11:31 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: Updates soft/control-center/po/da.po
+ soft/wizard_perl/po/da.po gi/perl-install/share/po/da.po
+
+2003-11-21 23:43 Guillaume Cottenceau
+
+ * move/: move.pm, data/keyfiles: persistent services
+
+2003-11-21 23:23 Guillaume Cottenceau
+
+ * move/etc-monitorer.pl: handle relative symlinks too
+
+2003-11-21 22:20 Guillaume Cottenceau
+
+ * perl-install/share/po/fr.po: one missing move translation
+
+2003-11-21 20:17 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po,
+ tg.po, th.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po,
+ zh_CN.po, zh_TW.po: updated pot file
+
+2003-11-21 19:53 Guillaume Cottenceau
+
+ * move/move.pm: allow formatting the virtual key with a commandline
+ param, for easy mode-2 testing
+
+2003-11-21 19:37 Guillaume Cottenceau
+
+ * move/move.pm: - don't unconditionally assign lang::read to
+ {locale} because we default to US as a country, and
+ install_steps::selectLanguage relies on a void country to assign
+ default country for a lang (e.g. FR for fr) - use lang::set so
+ that in mode 3 KDE can start in the right language
+
+2003-11-21 19:00 Guillaume Cottenceau
+
+ * perl-install/install2.pm: fix old-style call of lang::set, don't
+ call it in move
+
+2003-11-21 18:45 Guillaume Cottenceau
+
+ * move/move.pm: read locale config early enough to be able to mount
+ correct i18n clp in mode 3
+
+2003-11-21 18:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getUPS) detect serial MGE too
+
+2003-11-21 18:34 Guillaume Cottenceau
+
+ * mdk-stage1/stage1.c: in case we didn't mount any clp (nfs case),
+ we insmod gzloop.o here for later always_i18n case, because
+ gzloop.o is not available later in /lib/modules
+
+2003-11-21 18:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/serial_probe/serial.c: alter detection sequence to better
+ follow the standard, thus enabling to detection MGE UPS connected
+ through serial ports
+
+2003-11-21 18:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/serial_probe/serial.c: remove special mouse handling (not
+ needed anymore)
+
+2003-11-21 18:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/serial_probe/serial_probe.c: adatp to latest kudzu api
+ regarding serial detection (number suite => logical bits)
+
+2003-11-21 18:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/serial_probe/: device.h, serial.c: - sync with rh - keep
+ CLASS_UNSPEC handling
+
+2003-11-21 17:51 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_behind_totem: eject cdrom when unmounted
+
+2003-11-21 17:40 Pixel <pixel at mandriva.com>
+
+ * move/data/always.list: add eject for mdk_behind_totem
+
+2003-11-21 17:39 Guillaume Cottenceau
+
+ * move/move.pm: on some video boards there is not even a
+ configuration for xfree3, we can't rely on it
+
+2003-11-21 17:07 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_behind_totem: cleanup
+
+2003-11-21 17:06 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_totem: show "frozen-bubble" instead of "perl"
+
+2003-11-21 16:52 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: load kernel module "nvidia" when using nvidia in
+ XFree
+
+2003-11-21 16:44 Pixel <pixel at mandriva.com>
+
+ * move/make_live: - install proprietary drivers - remove "nvidia"
+ from /etc/modules
+
+2003-11-21 14:30 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cy.po, et.po: updated Welsh and Estonian
+ files
+
+2003-11-21 13:53 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/rpmsrate: add CrossOver Office
+
+2003-11-21 13:49 Guillaume Cottenceau
+
+ * perl-install/install_gtk.pm: have a fake helpwindow so that
+ wizardwindow shrinks a bit and we don't totally hide
+ "MandrakeMove" logo at bottom
+
+2003-11-21 13:48 Guillaume Cottenceau
+
+ * move/data/etcfiles: /etc/inittab copied so that we don't see a
+ bad message on console just before X starts
+
+2003-11-21 13:35 Pixel <pixel at mandriva.com>
+
+ * move/make_live: - don't remove /dev in live_tree - have a correct
+ /etc/rpm/macros in live_tree - fix menu i18n
+
+2003-11-21 13:13 Guillaume Cottenceau
+
+ * move/move.pm: keeping $rootwindow didn't work
+
+2003-11-21 12:47 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: should be enough
+
+2003-11-21 12:23 Guillaume Cottenceau
+
+ * move/Makefile: put backgrounds directly in /usr/share/wallpapers
+
+2003-11-21 12:22 Guillaume Cottenceau
+
+ * move/move.pm: display background image as soon as possible keep a
+ gdkwindow with the background image so that it stays when
+ wizardwindow is destroyed
+
+2003-11-21 12:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: don't ask mouse when
+ unsafe is not set (and it is currently very seldom set)
+
+ pixel really did miserably commit this in 03/2003, though it was
+ a change used for debugging :-(
+
+2003-11-21 00:03 Guillaume Cottenceau
+
+ * move/move.pm: kill duplicated code once again
+
+2003-11-21 00:01 Guillaume Cottenceau
+
+ * move/move.pm: kill duplicated code
+
+2003-11-20 23:57 Guillaume Cottenceau
+
+ * move/move.pm: pixel likes it when we no one is able to cross
+ frontiers (is he protectionist/nationalist or something?)
+
+2003-11-20 23:55 Guillaume Cottenceau
+
+ * move/: .cvsignore, Makefile, runlevel_set.c: found no way to
+ write into /var/run/utmp than to create my own program :(
+
+2003-11-20 23:54 Guillaume Cottenceau
+
+ * move/move.pm: allow testing with a virtual key (a given file on a
+ given partition), that will be faster, easier (and more reliable
+ ;p) that will maybe allow future normal (but strange) use of
+ MandrakeMove with a file on an existing ext2 or a vfat partition,
+ who knows? gael's gonna be happy with his motto "our users find
+ unpredictable usage of our products, ya-hoo!"
+
+2003-11-20 22:51 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-11-20 19:08 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: fix mounting things when using existing config
+
+2003-11-20 19:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: - use "auto" for ps/2 - allow using same
+ config for ps/2 and imps/2
+
+2003-11-20 18:47 Guillaume Cottenceau
+
+ * move/: etc-monitorer.pl, move.pm: etc-monitorer now also handles
+ removal of files
+
+2003-11-20 18:35 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: simplify
+
+2003-11-20 18:10 Guillaume Cottenceau
+
+ * move/move.pm: - verify key in mode 3 boot as well - if the key is
+ RO we can't umount /home because of /etc/X11/X, give a nice msg
+ to user in that case
+
+2003-11-20 18:03 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: nl.po, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po,
+ tg.po, th.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po,
+ zh_CN.po, zh_TW.po: updated pot file
+
+2003-11-20 17:57 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mk.po, ms.po, mt.po, nb.po: updated pot file
+
+2003-11-20 17:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix changelog
+
+2003-11-20 16:41 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: have the syslinux progress bar white
+
+2003-11-20 16:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/: detect_devices.pm, c/stuff.xs.pl: adapt to new
+ usb_class2text()
+
+2003-11-20 16:19 Guillaume Cottenceau
+
+ * perl-install/share/po/Makefile: add move.pm
+
+2003-11-20 15:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: fix regexp for new ldetect usb
+ class
+
+2003-11-20 15:42 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/Makefile: don't export cdcom modules archives
+
+2003-11-20 15:24 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po,
+ tg.po, th.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po,
+ zh_CN.po, zh_TW.po: rebuilt DrakX.pot
+
+2003-11-20 14:42 Guillaume Cottenceau
+
+ * mdk-stage1/: stage1.c, stage1.h, tools.c: live boot option is
+ deprecated
+
+2003-11-20 14:01 Guillaume Cottenceau
+
+ * move/move.pm: use ext2 for the per user loopback on usb key
+
+2003-11-20 13:52 Guillaume Cottenceau
+
+ * move/move.pm: write mouse xfree conf in mode 2
+
+2003-11-20 13:29 Guillaume Cottenceau
+
+ * move/etc-monitorer.pl: don't keep messages about failing to
+ preserve ownership
+
+2003-11-20 13:11 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: oops my problems were linked to wrongly
+ being in live mode
+
+2003-11-20 12:42 Pixel <pixel at mandriva.com>
+
+ * move/: Makefile, data/isolinux-graphic.bmp: new splash screen
+
+2003-11-20 12:35 Guillaume Cottenceau
+
+ * move/make_live: xinput needed for some mice
+ (mouse.pm::various_xfree_conf)
+
+2003-11-20 11:59 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: better stdio for umount failed
+
+2003-11-20 11:59 Guillaume Cottenceau
+
+ * move/: etc-monitorer.pl, move.pm: speedup boot by launching
+ etc-monitorer only one time from within drakx
+
+2003-11-20 11:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: $o->{fstab} now contains
+ get_really_all_fstab, not get_all_fstab (needed for
+ merge_info_from_mtab to work from cdroms)
+
+ this may break install!
+
+2003-11-20 11:31 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: - run "service sound start" in background - no need
+ to set $o->{fstab} - move back install_TrueFS_in_home() call in
+ startMove (it doesn't rely on $o->{fstab} anymore)
+
+2003-11-20 11:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: prevent load new driver too
+ during install (anthil #110)
+
+2003-11-20 10:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: fix anthill bug #110 (install
+ looping on missing module snd-pcm-oss)
+
+2003-11-20 10:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: unpoulpize comments (spoted by
+ joseph van den reysen)
+
+2003-11-19 23:43 Guillaume Cottenceau
+
+ * move/tools/scan-etc.pl: i do suck much
+
+2003-11-19 23:42 Guillaume Cottenceau
+
+ * move/: Makefile, tools/fix-fc-cache.pl: make_live_tree_boot
+ replacing files by symlinks is responsible for fontconfig cache
+ outdated, fix cache by touching files
+
+2003-11-19 23:22 Guillaume Cottenceau
+
+ * move/tools/check-fc-cache.pl: add check if files are more
+ recent (fc-cache will slow down starting of drakx)
+
+2003-11-19 22:57 Guillaume Cottenceau
+
+ * perl-install/mouse.pm: perl checker should have told us?
+
+2003-11-19 22:53 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: allow "test your mouse" buttons to be
+ viewable (window was much more than 16/9 anyway)
+
+2003-11-19 22:16 Guillaume Cottenceau
+
+ * move/: Makefile, move.pm, data/BOOT-1024-MOVE.jpg,
+ data/BOOT-1280-MOVE.jpg, data/BOOT-1600-MOVE.jpg,
+ data/BOOT-800-MOVE.jpg: use boot images
+
+2003-11-19 19:18 Guillaume Cottenceau
+
+ * move/: Makefile, data/README.adding.more.files: uneeded now since
+ we use etc-monitorer.pl
+
+2003-11-19 18:47 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: - forgot to close fd when del_loop ioctl fail,
+ busyfied loopback and prevented to umount /home - better io
+ messages
+
+2003-11-19 18:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-9mdk
+
+2003-11-19 18:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: af.po, ar.po, az.po, be.po, bg.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, ga.po, gl.po, he.po, hr.po, hu.po,
+ id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po, mk.po, ms.po,
+ mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
+ tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
+ zh_TW.po: fix untranslated strings due to old perl_checker not
+ de-escaping @ and $ caracters
+
+2003-11-19 17:41 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: - mount removable devices - fix chown'ing cache
+ directory
+
+2003-11-19 17:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: fix typo
+
+2003-11-19 17:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: better comment for
+ raidAutoStartIoctl
+
+2003-11-19 17:20 Guillaume Cottenceau
+
+ * move/: Makefile, img/FE92-1024-MOVE1.jpg,
+ img/FE92-1024-MOVE2.jpg, img/FE92-1024-MOVE3.jpg,
+ img/FE92-1024-MOVE4.jpg, img/FE92-1024-MOVE5.jpg,
+ img/FE92-1280-MOVE1.jpg, img/FE92-1280-MOVE2.jpg,
+ img/FE92-1280-MOVE3.jpg, img/FE92-1280-MOVE4.jpg,
+ img/FE92-1280-MOVE5.jpg, img/Mandrake.png: default and
+ supplementary wallpapers
+
+2003-11-19 16:56 Guillaume Cottenceau
+
+ * move/make_live: have proper mandrake-release contents
+
+2003-11-19 16:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, fr.po: fix untranslated
+ strings due to old perl_checker not de-escaping @ and $ caracters
+
+2003-11-19 16:36 Guillaume Cottenceau
+
+ * move/make_live: printer stuff
+
+2003-11-19 16:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/serial_probe/serial.c: - sync with latest kudzu - reverse
+ "let do not detect anything anymore" bits - rollback "let fsck up
+ serial mice" bits
+
+2003-11-19 16:23 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: .kde/share/cache is a symlink to a tmpfs directory
+ to ensure the key doesn't grow too much
+
+2003-11-19 15:43 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: move sound configuration later (when X is running)
+
+2003-11-19 15:37 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: start service "sound" to unmute alsa sound
+
+2003-11-19 15:31 Pixel <pixel at mandriva.com>
+
+ * move/make_live: add alsa-utils (used by service "sound" to
+ configure alsa devices)
+
+2003-11-19 15:29 Pixel <pixel at mandriva.com>
+
+ * move/todo: bttv configuration automatically done in
+ modules::write_conf()
+
+2003-11-19 15:11 Pixel <pixel at mandriva.com>
+
+ * move/data/totem.list: new xine lib
+
+2003-11-19 14:36 Guillaume Cottenceau
+
+ * perl-install/share/po/fr.po: merge and translate move stuff
+
+2003-11-19 14:25 Guillaume Cottenceau
+
+ * move/move.pm: cleankey really does (doesn't look for i18n/user of
+ other machines) use a variable for /home/.sysconf
+
+2003-11-19 14:17 Pixel <pixel at mandriva.com>
+
+ * move/make_live: don't run update-menus in background so that
+ kbuildsycoca is called when update-menus is over
+
+2003-11-19 13:57 Guillaume Cottenceau
+
+ * move/etc-monitorer.pl: pixel rulz
+
+2003-11-19 13:52 Guillaume Cottenceau
+
+ * move/make_live: allow debugging move
+
+2003-11-19 13:47 Guillaume Cottenceau
+
+ * move/move.pm: tired of unworkable root enviro
+
+2003-11-19 13:41 Guillaume Cottenceau
+
+ * move/move.pm: I always suck when I commit untested code
+
+2003-11-19 13:37 Guillaume Cottenceau
+
+ * move/etc-monitorer.pl: globing * won't cache hidden files
+
+2003-11-19 13:33 Pixel <pixel at mandriva.com>
+
+ * move/make_live: add dhcp-client
+
+2003-11-19 13:30 Pixel <pixel at mandriva.com>
+
+ * move/make_live: - ensure DURING_INSTALL doesn't escape packages
+ install - use run_program::rooted instead of system("chroot ...")
+
+2003-11-19 13:10 Guillaume Cottenceau
+
+ * move/make_live: aren't we heading the wall at lightspeed if we
+ begin to duplicate our efforts? :)
+
+2003-11-19 13:03 Guillaume Cottenceau
+
+ * move/move.pm: ~/.openoffice must be a truefs
+
+2003-11-19 12:50 Guillaume Cottenceau
+
+ * move/make_live: enable lock in kde screensaver
+
+2003-11-19 10:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * move/todo: add some hint
+
+2003-11-19 10:28 Pixel <pixel at mandriva.com>
+
+ * move/make_live: - the screensaver should lock - fix gc's typo
+
+2003-11-19 00:28 Guillaume Cottenceau
+
+ * move/move.pm: allow user customisation of startup through
+ /etc/rc.d/rc.local
+
+2003-11-19 00:19 Guillaume Cottenceau
+
+ * move/move.pm: launch dnotify only when we have a key
+
+2003-11-18 22:36 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-11-18 22:22 Guillaume Cottenceau
+
+ * move/move.pm: update BLA BLA since no one did move on this
+
+2003-11-18 22:14 Guillaume Cottenceau
+
+ * perl-install/: install_gtk.pm, ugtk2.pm: smaller wizard window in
+ move
+
+2003-11-18 19:30 Guillaume Cottenceau
+
+ * move/move.pm: differentiate user and host configuration so that
+ moving around with the same key you will already have your lang
+ and user/pass set
+
+2003-11-18 17:15 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: build & install drakx mo files
+
+2003-11-18 17:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Makefile, Makefile.drakxtools, share/po/Makefile:
+ allow move to build & install drakx mo files (using sudo)
+
+2003-11-18 17:00 Pixel <pixel at mandriva.com>
+
+ * move/data/always.list: add dnotify
+
+2003-11-18 16:30 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_totem: don't even try to do something when some
+ very important processes make the cd busy
+
+2003-11-18 16:02 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: can't make my mind
+
+2003-11-18 16:00 Guillaume Cottenceau
+
+ * perl-install/install2.pm: shut up
+
+2003-11-18 16:00 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_totem: restart kicker if it annoys us
+
+2003-11-18 16:00 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: shorter
+
+2003-11-18 15:59 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: oops that was debugging stuff right :)
+
+2003-11-18 15:59 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: don't tell them!
+
+2003-11-18 15:45 Guillaume Cottenceau
+
+ * move/make_live: dnotify needed
+
+2003-11-18 15:45 Guillaume Cottenceau
+
+ * move/: Makefile, etc-monitorer.pl, move.pm, todo, data/keyfiles:
+ have system configuration files automagically saved on the usb
+ key with dnotify and a script
+
+2003-11-18 15:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: - create i18n_env() - use it in set() when
+ $::move to set a standard i18n environment, not the drakx
+ simplified one
+
+2003-11-18 15:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: call lang::set(): - with
+ $o->{locale} instead of $o->{locale}{lang} - after setting
+ $o->{locale}{country}
+
+2003-11-18 15:37 Pixel <pixel at mandriva.com>
+
+ * move/make_live_tree_boot: try replacing __LANG__ with fr_FR (same
+ for other langs) then with fr (same for other langs) in
+ always_i18n file list
+
+2003-11-18 15:36 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_totem: - also work in nfs with no live_tree.clp
+ mounted - kio_uiserver will get killed without mentioning
+
+2003-11-18 15:33 Pixel <pixel at mandriva.com>
+
+ * move/data/always_i18n.list: update (we now launch kde with
+ standard i18n environment instead of drakx simplified one)
+
+2003-11-18 13:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, install_any.pm, install_steps.pm:
+ getHds called by install_steps must not be interactive
+
+2003-11-17 23:42 Guillaume Cottenceau
+
+ * move/: move.pm, todo, data/keyfiles: preliminary support for
+ booting off informations saved on the key without any asked
+ question
+
+2003-11-17 19:36 Guillaume Cottenceau
+
+ * move/move.pm: hotplug sux when it goes to loading usb modules in
+ beginning of move because modules are loaded in background, it
+ takes up much time and we don't know when usb-storage is loaded,
+ so we sometimes even missed the detection of usb key, so let's
+ load the modules we're interested it ourselves
+
+2003-11-17 19:17 Guillaume Cottenceau
+
+ * perl-install/modules.pm: when_load: is called many times (from
+ read_already_loaded) so avoir remounting /proc/bus/usb those many
+ times and sleeping for 4 seconds
+
+2003-11-17 19:04 Guillaume Cottenceau
+
+ * move/move.pm: command line option cleankey allows to remove
+ previously saved system configuration and re detect everything
+
+2003-11-17 18:36 Guillaume Cottenceau
+
+ * move/: make_live, move.pm, data/keyfiles: don't use shadow
+ passwords since pwconv overwrites /etc/shadow hence contents will
+ be lost for usb key
+
+2003-11-17 18:27 Guillaume Cottenceau
+
+ * move/Makefile: when we need to change something in MDK-Common
+ (here, substInFile), allow us to reflect our changes in "make"
+ from cvs pixel might need to have a working ../../soft
+
+2003-11-17 16:32 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: mount key early (before launching X)
+
+2003-11-17 16:04 Guillaume Cottenceau
+
+ * move/move.pm: prevent from linking /etc/sudoers to the key since
+ sudo will refuse to work afterwards
+
+2003-11-17 15:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: mdkmove doesn't use
+ setupSCSI step anymore
+
+2003-11-17 15:00 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: fix -sort in mkisofs
+
+2003-11-17 14:45 Pixel <pixel at mandriva.com>
+
+ * move/: make_live, data/always.dirs, data/always.list,
+ data/boot.dirs, data/boot.list, data/totem.list: remove /lib/i686
+ and use non-i686 libraries
+
+2003-11-17 14:45 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_totem: don't log busy files on tty3, but on stderr
+ (allow busy-files like usage)
+
+2003-11-17 14:27 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: eu.po, uz.po, uz@Cyrl.po: updated Basque
+ and Uzbek files
+
+2003-11-17 14:24 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: have a better global coherency between clp's
+
+2003-11-17 14:04 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: add a "making iso" rule
+
+2003-11-17 13:55 Guillaume Cottenceau
+
+ * mdk-stage1/config-stage1.h, move/move.pm, move/todo,
+ move/tools/busy-files, move/tree/mdk_behind_totem,
+ move/tree/mdk_move_loop: move /image_raw to /cdrom
+
+2003-11-17 12:48 Guillaume Cottenceau
+
+ * move/data/all-etcfiles: pixel sux
+
+2003-11-17 10:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-8mdk
+
+2003-11-17 10:51 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cy.po, et.po, pt_BR.po: updated Welsh,
+ Estonian and Brazilian files
+
+2003-11-17 10:05 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: remove unused stuff
+
+2003-11-16 00:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-7mdk
+
+2003-11-16 00:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile.drakxtools: fix links
+
+2003-11-14 19:55 Guillaume Cottenceau
+
+ * move/: Makefile, move.pm, todo, data/README.adding.more.files,
+ data/keyfiles: preliminary support for saving system
+ configuration data on usb key
+
+2003-11-14 19:50 Guillaume Cottenceau
+
+ * move/data/all-etcfiles: oops forgot to add this one
+
+2003-11-14 18:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-6mdk
+
+2003-11-14 18:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile.drakxtools: add links so that most tools
+ get listed on drak<TAB> completion
+
+2003-11-14 18:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: install2.pm, network/netconnect.pm: fix bogus use
+ of old netwok module instead of network::network (missed when
+ cleaning up this)
+
+2003-11-14 17:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile.drakxtools: add compatibility link for
+ drakclock
+
+2003-11-14 17:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: remove net aliases if
+ needed
+
+2003-11-14 17:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile.config: install drakclock
+
+2003-11-14 17:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakclock: move clock.pl from mcc into
+ drakxtools (its proper place)
+
+2003-11-14 17:05 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated
+
+2003-11-14 16:39 Guillaume Cottenceau
+
+ * move/: move.pm, data/etcfiles: fix shadow password
+
+2003-11-14 16:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: test the presence of kernel modules
+ .cz'ed or not
+
+2003-11-14 16:14 Guillaume Cottenceau
+
+ * move/move.pm: gc sux bigtime
+
+2003-11-14 15:56 Guillaume Cottenceau
+
+ * move/make_live: fredl requested simplified menu
+
+2003-11-14 15:40 Pixel <pixel at mandriva.com>
+
+ * move/make_live_tree_boot: un-share shared i18n files (currently
+ /usr/share/locale/{es,it,en_US}/LC_CTYPE)
+
+ that way, no need to have live_tree_always_i18n_iso_8859_1.clp
+ and live_tree_always_i18n_iso_8859_15.clp used by
+ live_tree_always_i18n_en_US.clp, live_tree_always_i18n_es.clp,
+ live_tree_always_i18n_it.clp
+
+2003-11-14 15:31 Pixel <pixel at mandriva.com>
+
+ * move/data/totem.list: add some network programs running in
+ background
+
+2003-11-14 15:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: ensure setupSCSI is
+ quite silent in move
+
+2003-11-14 12:00 Guillaume Cottenceau
+
+ * move/move.pm: gc sux
+
+2003-11-14 11:55 Guillaume Cottenceau
+
+ * move/move.pm: detect RO key
+
+2003-11-14 00:15 Guillaume Cottenceau
+
+ * move/move.pm: propose to plug in the key if no key was detected
+
+2003-11-13 19:46 Guillaume Cottenceau
+
+ * move/move.pm: be sure to restart network after configuring it,
+ since programs such as KDE will have great trouble with loopback
+ interface (it seems) otherwise. don't configure network nor
+ restart it when doing test (nfs) 'install'.
+
+2003-11-13 19:15 Guillaume Cottenceau
+
+ * mdk-stage1/stage1.c: indicate a sort of progression status when
+ loading clp's
+
+2003-11-13 14:46 Guillaume Cottenceau
+
+ * move/tree/mdk_totem.desktop: totem can play dvd's too, right?
+
+2003-11-13 14:29 Guillaume Cottenceau
+
+ * move/move.pm: really start with first ordered step
+
+2003-11-13 14:26 Guillaume Cottenceau
+
+ * move/move.pm: force uid/gid of created user to 501 as it was used
+ when mounting key, addUser may choose 502 when key already holds
+ user data
+
+2003-11-13 13:46 Guillaume Cottenceau
+
+ * move/move.pm: /etc/sysconfig files badly need to be writable
+
+2003-11-13 13:38 Guillaume Cottenceau
+
+ * perl-install/install2.pm: testing for cz file in move mode is a
+ bad idea
+
+2003-11-13 13:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (configure) forward fix
+ untranslatable strings: switch from ask_from_list_() to
+ ask_from_list() else cjk users get bogus GUIes
+
+2003-11-13 13:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: forward "always list sagem_dhcp in
+ list, hidding it due to missing translations is insane", there're
+ just too many lost users
+
+2003-11-13 12:01 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: - mount the key - mount .kde using "-o bind" to a
+ truefs - fix variable name re-declared
+
+2003-11-13 08:33 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * Makefile, make_boot_img: exclude "cdcom" kernels from /export &
+ isolinux
+
+2003-11-12 19:22 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: prevent from FPE (even if I didn't see it
+ duplicated)
+
+2003-11-12 18:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: (write_interface_conf) forward
+ fix: setVarsInSh() already take care of not writing undefined
+ parameters, so it's safer to always write wireless parameters if
+ set else we drop user set wireless parameters when our wireless
+ modules list is not uptodate
+
+2003-11-12 18:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/tools.pm: update wireless modules list
+
+2003-11-12 18:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (set_advanced_raw) inline it in
+ it's only caller
+
+2003-11-12 18:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: forward fix logic test instead
+ of binary one (wasn't a bug there since values were both undef/0
+ or 1)
+
+2003-11-12 18:11 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: Parse XFree86 install server log
+ in last resort in case there is nothing valuable retrieved so far
+ from ddcxinfos.
+
+2003-11-12 18:09 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/install_gtk.pm: Remove explicit values for HorizSync
+ & VertRefresh when generating /tmp/Xconf for XFree86 4.X. i.e.
+ let the server autodetect those values.
+
+2003-11-12 18:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: forward program logic fix: write
+ up/down programs for adsl speedtouch even if firmware is already
+ there or if one say "let see this later" which result in up/down
+ scripts to be removed on drakconnect startup
+
+2003-11-12 17:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: fix program logic: write up/down
+ programs for adsl speedtouch even if firmware is already there or
+ if one say "let see this later" which result in up/down scripts
+ to be removed on drakconnect startup
+
+2003-11-12 15:47 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po,
+ tg.po, th.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po,
+ zh_CN.po, zh_TW.po: updated pot file
+
+2003-11-12 15:46 Guillaume Cottenceau
+
+ * move/: Makefile, move.pm: be sure remaining /etc files are at
+ least available RO
+
+2003-11-12 15:13 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: mount the key in /home
+
+2003-11-12 14:37 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/list_modules.pm: don't ship with old modules [disable them
+ in next kernel]
+
+2003-11-12 14:36 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cs.po, tg.po: updated Czech and Tajik
+ files
+
+2003-11-12 14:34 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: network.pm doesn't exist anymore
+
+2003-11-12 14:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, fs.pm: - use the "mount" command directly
+ in move - still not really clean ($o_options is dropped in many
+ cases)
+
+2003-11-12 13:44 Pixel <pixel at mandriva.com>
+
+ * move/: Makefile, tree/mdk_totem.desktop: add an icon on the
+ desktop to run mdk_totem
+
+2003-11-12 13:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network.pm: remove useless module
+
+2003-11-12 13:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: ftp.pm, http.pm, any.pm, install2.pm,
+ install_any.pm, install_steps.pm, install_steps_interactive.pm,
+ network/netconnect.pm, printer/printerdrake.pm,
+ standalone/drakauth, standalone/drakgw, standalone/drakpxe: fix
+ bogus use of old netwok module instead of network::network
+
+2003-11-12 13:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: reuse is_dynamic_ip() to not
+ bother asking about zeroconf specific stuff when there's not any
+ dynamic interfaces
+
+2003-11-12 13:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: network/tools.pm, standalone/drakconnect:
+ (network::tools::is_dynamic_ip) consolidate test for any dynamic
+ interface
+
+2003-11-12 13:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: fix warning with usb mice
+
+2003-11-12 13:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: - fix #3047's fix - do not
+ show module if unknow for system bridges since it's normal
+
+2003-11-12 13:14 Guillaume Cottenceau
+
+ * move/move.pm: need to handle i18n clp before accepting license
+
+2003-11-12 13:13 Guillaume Cottenceau
+
+ * move/move.pm: acceptLicense done ASAP as well
+
+2003-11-11 14:22 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: mount keys
+
+2003-11-11 13:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: - make use_proc_partitions a clean
+ function (not only used when diskdrake code fails) - fix
+ {start} in read_proc_partitions() ({start} was not
+ re-initialised between drives)
+
+2003-11-11 02:30 Dam's
+
+ * perl-install/ugtk2.pm: corrected typo
+
+2003-11-10 12:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: choose a not-to-bad default when X
+ auto config fails in auto install
+
+2003-11-10 12:39 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: allowFB just in case someone wants to have fb
+
+2003-11-10 12:32 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: also copy perl-install/*/*.pm files
+
+2003-11-10 11:45 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: check the kernel corresponding to stage1 rdz is
+ installed
+
+2003-11-08 11:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix changelog
+
+2003-11-08 10:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-5mdk
+
+2003-11-08 09:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/tools.pm: (is_wireless_intf) fix #6312: list
+ acx100_pci as a wireless network cards driver too (fix impossible
+ to set wireless parameters for it)
+
+2003-11-08 09:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getCPUs) enumerate cpus from 1
+ instead of 0 (part of #4704)
+
+2003-11-08 09:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: share/po/af.po, share/po/ar.po, share/po/az.po,
+ share/po/bg.po, standalone/harddrake2, 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/es.po,
+ share/po/et.po, share/po/eu.po, share/po/fa.po, share/po/fi.po,
+ share/po/fr.po, share/po/he.po, share/po/hu.po, share/po/id.po,
+ share/po/is.po, share/po/it.po, share/po/mk.po, share/po/mt.po,
+ share/po/nb.po, share/po/pl.po, share/po/pt.po,
+ share/po/pt_BR.po, share/po/ro.po, share/po/ru.po,
+ share/po/sk.po, share/po/sq.po, share/po/sr.po,
+ share/po/sr@Latn.po, share/po/sv.po, share/po/tr.po,
+ share/po/uk.po, share/po/uz.po, share/po/uz@Cyrl.po,
+ share/po/vi.po, share/po/wa.po, share/po/zh_CN.po: fix #6134: JAZ
+ device is not spelled like jazz music
+
+2003-11-08 08:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix lan always marked as
+ detected even when no detection was performed or when there's no
+ ethernet devices
+
+ btw, generalize this "fix" to all net connection types.
+
+ rationale: since we've already check if we've devices, there's no
+ point in doing another different check in order to add the string
+ "- detected" so let's just consolidate the previous test, this
+ will prevent such bug to come back again
+
+2003-11-08 08:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix last part of #5315: do
+ not ask for confirmation at install time
+
+ rationale: while this is reasonable within standalone
+ drakconnect, it's quite less needed at install time
+
+2003-11-08 08:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: fix #3047: do not display
+ "unknown module" in red for devices known to not need any module
+ (see http://www.people.iup.edu/bclg/pci-modem.html)
+
+2003-11-07 23:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: perl_checker fixes
+
+2003-11-07 20:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-4mdk
+
+2003-11-07 20:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix network interfaces list
+ update: - really remove from the Gtk+ list lost interfaces -
+ update the intf reference list
+
+2003-11-07 20:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (conf_network_card_backend) use
+ getNetDriver() rather than relying on ethX alias for mapping the
+ ethX interface to the driver that created it thus fixing quite
+ old detection bugs
+
+2003-11-07 20:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: oops, network::tools is still
+ needed by configureNetworkIntf...
+
+2003-11-07 20:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: (write_interface_conf)
+ setVarsInSh() already take care of not writing undefined
+ parameters, so it's safer to always write wireless parameters if
+ set else we drop user set wireless parameters when our wireless
+ modules list is not uptodate
+
+2003-11-07 17:34 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/pkgs.pm: reintegrate togglePackageSelection that
+ fpons nuked away during (mis)merge
+
+2003-11-07 17:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getUPS) return port/description
+ couples
+
+2003-11-07 17:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: (get_usb_ups_name) introduce it to
+ map usb devices to hiddev devices
+
+2003-11-07 16:08 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_move_boot_loop.desktop: also move back always_i18n
+ and totem to_cdrom
+
+2003-11-07 16:07 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_behind_totem: also move back always_i18n to cdrom
+
+2003-11-07 16:04 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_totem: get the file <=> loop association from
+ mdk_move_loop and pass it to mdk_behind_totem
+
+2003-11-07 16:04 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_move_loop: - scan all loops, not only @names -
+ always_i18n is a magic name which is renamed to the used
+ always_i18n_xxx - return the file <=> loop association when asked
+
+2003-11-07 16:02 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_behind_totem: - use given loop devices - fix
+ --boot-loop option handling
+
+2003-11-07 15:46 Pixel <pixel at mandriva.com>
+
+ * move/data/always_i18n.list: mainly mo files
+
+2003-11-07 15:45 Pixel <pixel at mandriva.com>
+
+ * move/: Makefile, make_live_tree_boot, move.pm: create and handle
+ always_i18n_xxx clp's
+
+2003-11-07 13:52 Pixel <pixel at mandriva.com>
+
+ * move/tools/busy-files: handle image_raw (ie non-mounted
+ live_tree)
+
+2003-11-07 13:50 Guillaume Cottenceau
+
+ * move/: Makefile, move.pm, data/etcfiles, data/etcfiles-report:
+ better handle etc files: scan a/c/mtime after copying all /etc
+ files to list the ones which are read and written, make it a file
+ list and be assured to have those when initing move
+
+2003-11-07 13:47 Pixel <pixel at mandriva.com>
+
+ * move/data/always.list: - remove some i18n files (now in
+ "always_i18n") - add im-cedilla (simpler that handling it nicely)
+
+2003-11-07 13:46 Pixel <pixel at mandriva.com>
+
+ * move/data/boot.dirs: /usr/share/services should have been removed
+ when splited between "always" and "boot"
+
+2003-11-07 13:39 Pixel <pixel at mandriva.com>
+
+ * move/data/boot.list: update
+
+2003-11-07 13:37 Pixel <pixel at mandriva.com>
+
+ * move/data/always.list: update (remove klipper, kalarm, korgac)
+
+2003-11-07 13:36 Pixel <pixel at mandriva.com>
+
+ * move/data/boot.list: update
+
+2003-11-07 13:22 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_totem: - look for busy files - propose different
+ actions when there are busy files - kill processes busying files
+ when asked
+
+2003-11-07 13:20 Pixel <pixel at mandriva.com>
+
+ * move/tools/busy-files: - add option --totem - handle mounted
+ /image
+
+2003-11-07 13:11 Pixel <pixel at mandriva.com>
+
+ * move/make_live: also remove kalarmd from kde autostart
+
+2003-11-07 12:49 Guillaume Cottenceau
+
+ * move/move.pm: Oops... I did it again!
+
+2003-11-07 12:27 Guillaume Cottenceau
+
+ * move/move.pm: ifplugd
+
+2003-11-07 12:26 Guillaume Cottenceau
+
+ * move/move.pm: syslog need be restarted once minilogd got killed,
+ dunno why
+
+2003-11-07 00:15 Pixel <pixel at mandriva.com>
+
+ * move/make_live: remove autostart of klipper & korgac (as
+ requested by Denis)
+
+2003-11-06 23:56 Pixel <pixel at mandriva.com>
+
+ * move/: data/totem.list, tree/mdk_behind_totem, tree/mdk_totem: -
+ various fixes (including adding /bin/sleep to totem.list and
+ using it) - mdk_totem is now written in perl
+
+2003-11-06 22:33 Pixel <pixel at mandriva.com>
+
+ * move/: Makefile, tree/mdk_behind_totem, tree/mdk_totem: add
+ mdk_totem & mdk_behind_totem
+
+2003-11-06 22:30 Pixel <pixel at mandriva.com>
+
+ * move/data/boot.list: move back some files needed by sudo from
+ "always"
+
+2003-11-06 19:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: (remove_alias_regexp) simplify
+
+2003-11-06 18:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-3mdk
+
+2003-11-06 18:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/tools.pm: one more wireless module
+
+2003-11-06 18:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: "let please pixel" changes
+
+2003-11-06 18:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (configure_eth_aliases) let the
+ autoprobing load modules too
+
+2003-11-06 18:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: let only remove aliases on
+ bootstrapping (ie only in harddrake caller); it's safer
+
+2003-11-06 17:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (configure_eth_aliases)
+ introduce it to autoconfigure all ethernet aliases (MdkMove,
+ harddrake service, drakconnect)
+
+2003-11-06 17:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (configureNetwork) alter
+ remove_alias() callers for new API
+
+2003-11-06 17:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: - generalize & rename remove_alias() as
+ remove_alias_regexp() to handle regexps - introduce back a simple
+ remove_alias() wrapper to remove_alias_regexp() - change
+ remove_alias*() API from remove_alias(module) to
+ remove_alias(alias) btw old behaviour was broken if eg one has
+ two 3com cards when network::ethernet::configureNetwork removed
+ all ethX aliases on 3c59x
+
+2003-11-06 17:33 Pixel <pixel at mandriva.com>
+
+ * move/data/always.list: remove sudo (sudo needs some more files,
+ and it is easier to have a program running as root doing all the
+ fuss with clp's)
+
+2003-11-06 17:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: (write_conf) do not discard remove_alias
+ changes ... (why nobody never saw it in years :-()
+
+2003-11-06 15:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: simplify pcmcia matching
+
+2003-11-06 15:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: save a useless ifconfig fork
+
+2003-11-06 15:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: (getNetDriver) ask the kernel the
+ network interface <-> driver mapping
+
+2003-11-06 15:04 Pixel <pixel at mandriva.com>
+
+ * move/data/: always.list, boot.list: - add
+ /usr/share/services/ksycoca in "always" - add some files needed
+ by sudo in "always"
+
+2003-11-06 14:24 Pixel <pixel at mandriva.com>
+
+ * move/make_live: ensure make_live doesn't fail when called twice
+ (when $::prefix/dev is already gone)
+
+2003-11-06 14:21 Pixel <pixel at mandriva.com>
+
+ * move/make_live: needless chmod a+w /dev files since we use devfs
+
+2003-11-06 14:04 Guillaume Cottenceau
+
+ * move/move.pm: have ifcfg-lo
+
+2003-11-06 13:59 Guillaume Cottenceau
+
+ * move/move.pm: have the basic fstab copied link xinetd.conf
+ syslog.conf and sysctl.conf
+
+2003-11-06 13:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: document dams logic
+
+2003-11-06 13:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (conf_network_card_backend) fix
+ unseen/unconfigured usb wireless devices due to francois trap for
+ aliased interfaces (new detect_device::getNet() filter out
+ aliases which were the reasons for the test)
+
+ btw, if no alias was found, there's a bug somewhere
+
+2003-11-06 13:38 Guillaume Cottenceau
+
+ * perl-install/install2.pm: vivification is dangerous
+
+2003-11-06 13:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/tools.pm: list a few more modules as
+ wireless ones (should really be splited out from network/usb in
+ list_modules.pm
+
+2003-11-06 12:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: always list sagem_dhcp in list,
+ hidding it due to missing translations is insane
+
+2003-11-06 11:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: really not a binary test
+
+2003-11-06 11:37 Pixel <pixel at mandriva.com>
+
+ * move/data/always.list: have sudo in "always"
+
+2003-11-06 11:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: bootloader.pm, install_steps.pm, standalone.pm,
+ ugtk2.pm, network/modem.pm, network/nfs.pm, printer/detect.pm,
+ printer/main.pm, printer/office.pm, printer/printerdrake.pm:
+ escaped strings fixes
+
+2003-11-06 11:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl.pm: (configure) fix untranslatable
+ strings: switch from ask_from_list_() to ask_from_list()
+
+2003-11-06 10:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: fix untranslatable string
+
+2003-11-05 17:52 Guillaume Cottenceau
+
+ * move/: make_live, move.pm: auto configure network
+
+2003-11-05 17:29 Guillaume Cottenceau
+
+ * kernel/update_kernel: we use supermount in move now
+
+2003-11-05 15:43 Pixel <pixel at mandriva.com>
+
+ * move/: Makefile, make_live, tree/kdedrc: - run "kbuildsycoca
+ --global" when building - using a special configuration telling
+ kde not to build during startup
+
+2003-11-05 15:42 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_move_loop: don't die when not finding a clp, it
+ means it's not mounted
+
+2003-11-05 14:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.3-2mdk
+
+2003-11-05 14:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: detect all up||down interfaces
+ w/o any hardcoded limits:
+
+ - rollback to old active poll on existing interfaces rather than
+ relying on kernel interfaces list (since it does not list
+ unconfigured interfaces)
+
+ - get the network interfaces list from /proc/net/dev (reusing the
+ same logic as from "ifconfig -a")
+
+2003-11-05 14:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: reput back hasNetDevice() instead of
+ getNetInterfaces() since SIOCGIFCONF only list *active* network
+ interfaces
+
+2003-11-05 13:40 Pixel <pixel at mandriva.com>
+
+ * move/tools/nfs-accesses: even more flexible
+
+2003-11-05 13:38 Pixel <pixel at mandriva.com>
+
+ * move/data/totem.dirs: remove the (bad) empty line
+
+2003-11-05 13:37 Pixel <pixel at mandriva.com>
+
+ * move/data/: boot.dirs, boot.list: have all /etc/pango (not really
+ needed anymore, but it is cleaner)
+
+2003-11-05 13:36 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: when /image/etc/xxx is a symlink, create /etc/xxx
+ directly to this symlink
+
+2003-11-05 13:36 Pixel <pixel at mandriva.com>
+
+ * move/make_live_tree_boot: handle "totem" files being in "always"
+
+2003-11-05 13:12 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: check_dirs checks that data/*.list contains a file
+ which is inside a dir from data/*.dirs
+
+2003-11-05 11:33 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_move_loop: find out the association (loopX <=> clp)
+ instead of hard writing it
+
+2003-11-05 11:21 Pixel <pixel at mandriva.com>
+
+ * move/tools/busy-files: handle image_totem
+
+2003-11-05 11:20 Guillaume Cottenceau
+
+ * move/Makefile: lock unneeded now that i have my local copy :)
+
+2003-11-05 11:20 Pixel <pixel at mandriva.com>
+
+ * move/tools/: nfs-accesses, busy-files-accesses: make it more
+ flexible
+
+2003-11-05 11:19 Guillaume Cottenceau
+
+ * move/data/symlinks: /usr is now handled "hardcoded" for totem
+
+2003-11-05 11:16 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: add the command to generate totem.list
+
+2003-11-05 11:12 Pixel <pixel at mandriva.com>
+
+ * move/make_live: we need package "mountloop" for crypted folders
+
+2003-11-05 10:42 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: - no need to mount totem clp - if we need
+ lomount_clp again, correctly handle the "live" cmdline parameter
+
+2003-11-05 10:41 Pixel <pixel at mandriva.com>
+
+ * move/make_live_tree_boot: - more flexible totem tree symlinks
+ build (based on totem.list) - clean-up
+
+2003-11-05 00:27 Guillaume Cottenceau
+
+ * move/make_live: run fc-cache so that cache is generated in all
+ directories mentioned in config file: allows to suppress the 5-10
+ secondes pause before first drakx question
+
+2003-11-04 23:41 Guillaume Cottenceau
+
+ * mdk-stage1/log.c: unneeded now that i've teached dietlibc to not
+ segfault on NULL pointers
+
+2003-11-04 21:02 Guillaume Cottenceau
+
+ * mdk-stage1/log.c: try to not segfault when a NULL pointer is
+ passed to log_message (unimplemented clnt_sperror and alike
+ functions from dietlibc)
+
+2003-11-04 19:33 Guillaume Cottenceau
+
+ * mdk-stage1/stage1.c: allow to still be able to work when running
+ in -u mode
+
+2003-11-04 18:59 Guillaume Cottenceau
+
+ * mdk-stage1/: config-stage1.h, stage1.c: hack up a warning message
+ when we're in low mem. chosen 120 mbytes, need to be refined
+ later.
+
+2003-11-04 18:53 Guillaume Cottenceau
+
+ * mdk-stage1/: config-stage1.h, stage1.c: need to handle totem clp
+ at stage1 because it needs to provide /usr directory
+
+2003-11-04 18:46 Pixel <pixel at mandriva.com>
+
+ * move/make_live_tree_boot: - add links from totem to main tree -
+ don't rm libDrakX/*.pm too soon, remove symlinks first
+
+2003-11-04 18:22 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Enable bz2 compression option
+ (wish@linux-mandrake.com)
+
+2003-11-04 18:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: perl_checker fixes
+
+2003-11-04 17:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/tools.pm: unexport not used elsewhere
+ connected2 function
+
+2003-11-04 17:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn.pm: perl_checker fixes
+
+2003-11-04 17:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: - 9.3-1mdk - sync with 9.2/amd64
+ package spec logs
+
+2003-11-04 17:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: typo fix
+
+2003-11-04 17:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: add missing changelog
+
+2003-11-04 17:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-19mdk
+
+2003-11-04 17:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: forward "manage all
+ interfaces when there more than one"
+
+2003-11-04 16:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: manage all interfaces when
+ there more than one
+
+2003-11-04 16:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: network statistics really
+ are global ones, not per interface ones. let not confuse the end
+ user
+
+2003-11-04 14:44 Pixel <pixel at mandriva.com>
+
+ * move/make_live_tree_boot: removing the slow fallback (better
+ handled by hand)
+
+2003-11-04 14:07 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: don't mount totem clp if option "live" is given on
+ cmdline
+
+2003-11-04 13:35 Guillaume Cottenceau
+
+ * mdk-stage1/: cdrom.c, mount.c: in mandrake-move, mount cdrom as
+ supermount
+
+2003-11-04 12:50 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/install_steps.pm: Add hdXlun=0 for hdX=ide-scsi
+ options so that we don't get multiple entries for cdwriters et
+ al.
+
+2003-11-04 12:50 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/bootloader.pm: Merge from HEAD: allow setting
+ hdclun=0
+
+2003-11-04 12:33 Pixel <pixel at mandriva.com>
+
+ * move/make_live_tree_boot: - handle symlinks in xxx.list - more
+ flexible -u (remove_light_tree)
+
+2003-11-04 12:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: allow setting hdclun=0
+
+2003-11-04 11:51 Guillaume Cottenceau
+
+ * mdk-stage1/stage1.c: gc sux
+
+2003-11-04 09:55 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/rescue-gui.c: Enable rescue_ms_boot on AMD64 too
+
+2003-11-04 09:54 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/Makefile: Build PCMCIA stuff on AMD64 too
+
+2003-11-04 09:52 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/pcmcia_/: cardmgr.c, cirrus.h, cs.h, cs_types.h,
+ driver_ops.h, ds.h, i82365.h, vg468.h, yacc_config.c,
+ yacc_config.h: Merge with kernel headers 2.4.22-23mdk. Fix args
+ to SCSI_IOCTL_GET_IDLUN for 64-bit arches. Some misc arrangements
+ to make sure we have unsigned long instead of plain u_long.
+
+2003-11-04 00:13 Guillaume Cottenceau
+
+ * move/todo: mouse settings saved now.. dunno why
+
+2003-11-03 23:06 Guillaume Cottenceau
+
+ * move/todo: services
+
+2003-11-03 22:03 Guillaume Cottenceau
+
+ * move/Makefile: grrr don't commit debugging purpose stuff
+
+2003-11-03 22:01 Guillaume Cottenceau
+
+ * move/: Makefile, collect-directories-to-create.pl, move.pm,
+ data/.cvsignore: call summaryBefore to auto configure network,
+ timezone, printers obscure problems when launching
+ foomatic-configure exhausted problem of missing subdirectories in
+ /etc and /var, create them at startup when they are missing to
+ prevent from future other problems of the kind
+
+2003-11-03 19:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (set_advanced closure) simplify
+
+2003-11-03 19:40 Guillaume Cottenceau
+
+ * perl-install/modules.pm: perl checker
+
+2003-11-03 16:58 Guillaume Cottenceau
+
+ * perl-install/modules.pm: woops, when_load already exists :)
+
+2003-11-03 16:54 Guillaume Cottenceau
+
+ * perl-install/modules.pm: for move: ensure "post load" stuff
+ (here, mounting /proc/bus/usb) is done also when using
+ /sbin/modprobe
+
+2003-11-03 15:26 Guillaume Cottenceau
+
+ * move/pkgs.pm: remove debugging info
+
+2003-11-03 15:24 Guillaume Cottenceau
+
+ * perl-install/printer/main.pm: check_prog will check first arg,
+ specifying parameters must hence be done with other args
+
+2003-11-03 15:14 Guillaume Cottenceau
+
+ * move/pkgs.pm: need some dummy functions so that checking for
+ installed packages behave correctly (testing with automatic
+ printer configuration)
+
+2003-11-03 15:10 Guillaume Cottenceau
+
+ * move/move.pm: xinetd stuff
+
+2003-11-03 14:35 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Removed check for Perl
+ library in checking for installed packages. The library is in a
+ versioned directory which changes with every Perl release.
+
+2003-11-03 14:31 Pixel <pixel at mandriva.com>
+
+ * move/tools/: busy-files-accesses, nfs-accesses: various fixes
+
+2003-11-03 14:29 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: mount live_tree_totem.clp if needed
+
+2003-11-03 14:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: detect_devices.pm, c/stuff.xs.pl: ask the kernel
+ the list of network devices instead of manually probing
+ everything (this enable to handle more than 4 ethernet cards)
+
+2003-11-03 14:23 Guillaume Cottenceau
+
+ * move/make_live: get INSTALL stuff on live as well
+
+2003-11-03 14:02 Guillaume Cottenceau
+
+ * perl-install/install_steps.pm: use member
+
+2003-11-03 13:05 Guillaume Cottenceau
+
+ * move/make_live: install acpi and acpid so that removing acpi=ht
+ will work
+
+2003-11-03 12:49 Pixel <pixel at mandriva.com>
+
+ * move/data/: always.list, boot.list, totem.list: sort lists
+
+2003-11-03 11:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: plural fix
+
+2003-11-03 11:14 Pixel <pixel at mandriva.com>
+
+ * move/tools/busy-files-accesses: useful to create xxx.list using
+ xxx.dir and the output of nfs-accesses
+
+2003-11-03 11:12 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_move_boot_loop.desktop: also move "always" clp from
+ memory to cdrom
+
+2003-11-03 11:11 Pixel <pixel at mandriva.com>
+
+ * move/make_live_tree_boot: ensure "make" before
+ ./make_live_tree_boot -u doesn't break ./make_live_tree_boot -u
+
+2003-11-03 11:08 Pixel <pixel at mandriva.com>
+
+ * move/: Makefile, make_live_tree_boot, data/always.dirs,
+ data/always.list, data/boot.dirs, data/boot.list,
+ data/totem.list: add totem support
+
+2003-11-03 11:02 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_move_loop: need script replacing
+ mdk_move_change_loop
+
+2003-11-03 11:00 Pixel <pixel at mandriva.com>
+
+ * move/tools/nfs-accesses: wrap code
+
+2003-11-03 10:57 Pixel <pixel at mandriva.com>
+
+ * move/tools/busy-files: look into /proc/*/maps for more busy files
+
+2003-10-31 19:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/: gtk.pm: workaround empty fields when
+ advanced_state is enabled since the beginning
+
+2003-10-31 19:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: remove useless module use
+
+2003-10-31 18:46 Guillaume Cottenceau
+
+ * mdk-stage1/stage1.c: copy "boot" and "always" clp's in memory
+
+2003-10-31 18:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/serial_probe/Makefile: add proper dependancies (thanks gcc
+ -MM)
+
+2003-10-31 18:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/serial_probe/serial.c: white space sync whith rh
+
+2003-10-31 17:13 Guillaume Cottenceau
+
+ * mdk-stage1/: stage1.c, tools.c, tools.h: save /etc/resolv.conf in
+ move mode
+
+2003-10-31 17:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/serial_probe/kudzu.h: do not output debug statements by
+ default
+
+2003-10-31 17:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/serial_probe/: device.h, kudzu.h, serial.c, serial.h,
+ serial_probe.c: merge in with rh: - new debug system - rename
+ some fields - kill dead code - (setup_serial_port) return -1 if
+ cfsetospeed() failled - (read_pnp_string) return PNP_COM_OK
+ instead of 0 on success
+
+2003-10-31 16:29 Pixel <pixel at mandriva.com>
+
+ * move/: Makefile, tree/mdk_move_boot_loop,
+ tree/mdk_move_boot_loop.desktop: replace mdk_move_boot_loop with
+ the more flexible mdk_move_loop
+
+2003-10-31 16:26 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: allow user=xxx on /proc/cmdline to skip ask_user
+ name
+
+2003-10-31 14:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: - for now, check new devices
+ against description (later with port too) - fix driver/port
+ mismatch
+
+2003-10-31 14:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: auto config ups devices
+
+2003-10-31 13:32 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_move_boot_loop: remove debug code
+
+2003-10-31 13:29 Guillaume Cottenceau
+
+ * move/move.pm: use our just-added user instead of "mdk" user
+
+2003-10-31 13:28 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: sudo wants sudoers to be 440
+
+2003-10-31 13:27 Pixel <pixel at mandriva.com>
+
+ * move/tree/mdk_move_boot_loop.desktop: start after mdkhtmlbrowser
+
+2003-10-31 13:18 Pixel <pixel at mandriva.com>
+
+ * move/: Makefile, tree/mdk_move_boot_loop,
+ tree/mdk_move_boot_loop.desktop, tree/sudoers: - add sudo for all
+ commands - add mdk_move_boot_loop called in autostart
+
+2003-10-31 13:13 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: also set SHELL
+
+2003-10-31 13:03 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: - add /etc/sudoers - don't use "su" for the moment,
+ it doesn't allow startkde to exit nicely (why??)
+
+2003-10-31 13:02 Guillaume Cottenceau
+
+ * move/move.pm, perl-install/any.pm: move: "adduser" alike step
+
+2003-10-31 12:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: from Salane KIng <sking4 at
+ cinci.rr dot com>: enable to access samba drives on other
+ computers to easily install windows fonts
+
+2003-10-31 12:26 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: don't build /tmp/live_tree.clp by default in
+ target live_tree_boot
+
+2003-10-31 12:24 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: use mkisofs -R instead of -r so that setuid is
+ still there
+
+2003-10-31 12:06 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: allow to start move with no previous steps (eg:
+ step=startMove on cmdline)
+
+2003-10-31 12:05 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: /etc/devfs/conf.d must be writeable
+
+2003-10-31 12:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: don't getFile VERSION in move or
+ testing
+
+2003-10-31 10:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: cleanup Xfree server @options
+ handling
+
+2003-10-31 00:26 Guillaume Cottenceau
+
+ * move/todo: what security level do we need to choose?
+
+2003-10-31 00:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: handle new exception system from perl-Glib
+ >= 0.96
+
+2003-10-30 23:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix always detecting ethernet
+ cards even when none is present
+
+2003-10-30 23:43 Guillaume Cottenceau
+
+ * move/move.pm, move/runstage2, perl-install/install_steps_gtk.pm:
+ allow move to be launched in testing mode
+
+2003-10-30 23:34 Guillaume Cottenceau
+
+ * perl-install/install_steps_gtk.pm: ensure we quit at once when we
+ can't launche X server (I want to have "can't launche graphical
+ mode :(" as last msg)
+
+2003-10-30 22:29 Guillaume Cottenceau
+
+ * perl-install/keyboard.pm: perl_checker
+
+2003-10-30 20:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: (get_hw_address) introduce it to
+ eventually track down ethernet cards swap/move on bootstrapping
+
+2003-10-30 20:14 Guillaume Cottenceau
+
+ * move/todo: don't forget to configure printer
+
+2003-10-30 20:14 Guillaume Cottenceau
+
+ * move/: move.pm, todo: fix OOo startup
+
+2003-10-30 19:46 Guillaume Cottenceau
+
+ * perl-install/keyboard.pm: check_prog won't work if arguments are
+ not properly splitted when passed to run_program
+
+2003-10-30 19:31 Guillaume Cottenceau
+
+ * move/move.pm: allow undone toBeDone things to be done
+
+2003-10-30 17:50 Guillaume Cottenceau
+
+ * mdk-stage1/stage1.c: allow to proceed when files are missing from
+ clp and live tree (allows testing in "only live_tree" mode)
+
+2003-10-30 17:29 Guillaume Cottenceau
+
+ * move/move.pm: allow comments to be trimmed
+
+2003-10-30 17:23 Guillaume Cottenceau
+
+ * mdk-stage1/: stage1.c, stage1.h, tools.c: add debugstage1 option
+ to help debugging when stage1 can't launch stage2
+
+2003-10-30 17:08 Pixel <pixel at mandriva.com>
+
+ * move/tools/busy-files: list currently busy files
+
+2003-10-30 17:08 Pixel <pixel at mandriva.com>
+
+ * move/data/boot.dirs: use by nfs-accesses to generate a cleaner
+ boot.list
+
+2003-10-30 17:06 Pixel <pixel at mandriva.com>
+
+ * move/tools/kernel-nfsd.patch: kernel patch that allows logging
+ file accesses via nfs
+
+2003-10-30 17:05 Pixel <pixel at mandriva.com>
+
+ * move/tools/nfs-accesses: scan /var/log/kernel/warnings for nfsd
+ logs (need a patched nfsd)
+
+2003-10-30 16:49 Pixel <pixel at mandriva.com>
+
+ * move/data/always.list: add totem to always
+
+2003-10-30 16:49 Pixel <pixel at mandriva.com>
+
+ * move/data/boot.list: we don't want moved files in /etc/skel
+
+2003-10-30 16:44 Pixel <pixel at mandriva.com>
+
+ * move/make_live: call update-menus as needed
+
+2003-10-30 16:24 Guillaume Cottenceau
+
+ * perl-install/install_steps_gtk.pm: log a bit more live mouse type
+ change
+
+2003-10-30 16:21 Guillaume Cottenceau
+
+ * mdk-stage1/: config-stage1.h, stage1.c: we need a third CLP
+
+2003-10-30 16:03 Guillaume Cottenceau
+
+ * mdk-stage1/modules.c: don't log anything when module is already
+ present
+
+2003-10-30 15:22 Pixel <pixel at mandriva.com>
+
+ * move/make_live_tree_boot: cleanup
+
+2003-10-30 13:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: tools.pm: fix anthill bug #50: ensure
+ /etc/ppp/pap-secrets is not world readable since it contains
+ password/user mapping for dialup
+
+2003-10-30 12:46 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: add live_tree_always.clp
+
+2003-10-30 12:44 Pixel <pixel at mandriva.com>
+
+ * move/: make_live_tree_boot, data/always.list: add
+ live_tree_always
+
+2003-10-30 12:26 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: kill minilogd to ensure it goes away
+
+2003-10-30 12:14 Pixel <pixel at mandriva.com>
+
+ * move/: Makefile, make_live, make_live_tree_boot, move.pm,
+ data/boot.list: better list obtained using patched nfsd instead
+ of Strace
+
+2003-10-30 10:05 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * Makefile, make_boot_img: Enable PCMCIA on AMD64. Add new boot
+ screens from Hélène that Francois packaged.
+
+2003-10-30 09:59 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/modules.pl: Readd PCMCIA stuff to AMD64. Add other modules
+ to hd.img et al. since we now have smaller kernel modules. Also
+ keep sata_promise & sata_via since those actually handle SATA
+ drive and not the RAID part.
+
+2003-10-30 09:42 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/Makefile: Add PCMCIA support to AMD64
+
+2003-10-29 18:01 Guillaume Cottenceau
+
+ * kernel/update_kernel: fix
+
+2003-10-29 17:14 Guillaume Cottenceau
+
+ * kernel/modules.pl: huge (planel sux)
+
+2003-10-29 17:13 Guillaume Cottenceau
+
+ * kernel/: dependencies.pl, modules.pl, update_kernel: handle
+ depfile per kernel, not just 2.4* modules.dep
+
+2003-10-29 17:07 Nicolas Planel <nplanel at mandriva.com>
+
+ * Makefile, make_boot_img, kernel/Makefile, kernel/check_mar.pl,
+ kernel/list_modules.pm, kernel/modules.pl, kernel/update_kernel,
+ mdk-stage1/Makefile, mdk-stage1/Makefile.common,
+ mdk-stage1/automatic.h, mdk-stage1/config-stage1.h,
+ mdk-stage1/dhcp.c, mdk-stage1/disk.c, mdk-stage1/disk.h,
+ mdk-stage1/dns.c, mdk-stage1/frontend.h,
+ mdk-stage1/init-libc-headers.h, mdk-stage1/init.c,
+ mdk-stage1/log.c, mdk-stage1/minilibc.c, mdk-stage1/minilibc.h,
+ mdk-stage1/modules.c, mdk-stage1/mount.c, mdk-stage1/network.c,
+ mdk-stage1/newt-frontend.c, mdk-stage1/probing.c,
+ mdk-stage1/rescue-gui.c, mdk-stage1/stage1.c,
+ mdk-stage1/stage1.h, mdk-stage1/stdio-frontend.c,
+ mdk-stage1/tools.c, mdk-stage1/url.c, mdk-stage1/bzlib/Makefile,
+ mdk-stage1/doc/README, mdk-stage1/insmod-busybox/Config.h,
+ mdk-stage1/insmod-busybox/Makefile,
+ mdk-stage1/insmod-busybox/README,
+ mdk-stage1/insmod-busybox/busybox.h,
+ mdk-stage1/insmod-busybox/insmod.c,
+ mdk-stage1/insmod-modutils/Makefile,
+ mdk-stage1/insmod-modutils/insmod.c,
+ mdk-stage1/insmod-modutils/include/config.h,
+ mdk-stage1/insmod-modutils/include/elf_alpha.h,
+ mdk-stage1/insmod-modutils/include/elf_arm.h,
+ mdk-stage1/insmod-modutils/include/elf_i386.h,
+ mdk-stage1/insmod-modutils/include/elf_m68k.h,
+ mdk-stage1/insmod-modutils/include/elf_mips.h,
+ mdk-stage1/insmod-modutils/include/elf_ppc.h,
+ mdk-stage1/insmod-modutils/include/elf_s390.h,
+ mdk-stage1/insmod-modutils/include/elf_sparc.h,
+ mdk-stage1/insmod-modutils/include/elf_sparc64.h,
+ mdk-stage1/insmod-modutils/include/kallsyms.h,
+ mdk-stage1/insmod-modutils/include/kerneld.h,
+ mdk-stage1/insmod-modutils/include/module.h,
+ mdk-stage1/insmod-modutils/include/obj.h,
+ mdk-stage1/insmod-modutils/include/util.h,
+ mdk-stage1/insmod-modutils/include/version.h,
+ mdk-stage1/insmod-modutils/obj/Makefile,
+ mdk-stage1/insmod-modutils/obj/obj_alpha.c,
+ mdk-stage1/insmod-modutils/obj/obj_arm.c,
+ mdk-stage1/insmod-modutils/obj/obj_common.c,
+ mdk-stage1/insmod-modutils/obj/obj_hppa.c,
+ mdk-stage1/insmod-modutils/obj/obj_hppa64.c,
+ mdk-stage1/insmod-modutils/obj/obj_i386.c,
+ mdk-stage1/insmod-modutils/obj/obj_ia64.c,
+ mdk-stage1/insmod-modutils/obj/obj_kallsyms.c,
+ mdk-stage1/insmod-modutils/obj/obj_load.c,
+ mdk-stage1/insmod-modutils/obj/obj_m68k.c,
+ mdk-stage1/insmod-modutils/obj/obj_mips.c,
+ mdk-stage1/insmod-modutils/obj/obj_ppc.c,
+ mdk-stage1/insmod-modutils/obj/obj_reloc.c,
+ mdk-stage1/insmod-modutils/obj/obj_s390.c,
+ mdk-stage1/insmod-modutils/obj/obj_sparc.c,
+ mdk-stage1/insmod-modutils/obj/obj_sparc64.c,
+ mdk-stage1/insmod-modutils/util/Makefile,
+ mdk-stage1/insmod-modutils/util/alias.h,
+ mdk-stage1/insmod-modutils/util/arch64.c,
+ mdk-stage1/insmod-modutils/util/config.c,
+ mdk-stage1/insmod-modutils/util/logger.c,
+ mdk-stage1/insmod-modutils/util/snap_shot.c,
+ mdk-stage1/insmod-modutils/util/sys_cm.c,
+ mdk-stage1/insmod-modutils/util/sys_dm.c,
+ mdk-stage1/insmod-modutils/util/sys_gks.c,
+ mdk-stage1/insmod-modutils/util/sys_nim.c,
+ mdk-stage1/insmod-modutils/util/sys_oim.c,
+ mdk-stage1/insmod-modutils/util/sys_qm.c,
+ mdk-stage1/insmod-modutils/util/xmalloc.c,
+ mdk-stage1/insmod-modutils/util/xrealloc.c,
+ mdk-stage1/insmod-modutils/util/xstrcat.c,
+ mdk-stage1/insmod-modutils/util/xstrdup.c,
+ mdk-stage1/insmod-modutils/util/xsystem.c,
+ mdk-stage1/mar/Makefile, mdk-stage1/newt/Makefile,
+ mdk-stage1/newt/form.c,
+ mdk-stage1/pci-resource/update-pci-ids.pl,
+ mdk-stage1/pcmcia_/Makefile, mdk-stage1/pcmcia_/cardmgr.c,
+ mdk-stage1/pcmcia_/merge_from_pcitable,
+ mdk-stage1/pcmcia_/probe.c,
+ mdk-stage1/ppp/include/net/ppp_defs.h,
+ mdk-stage1/ppp/pppd/Makefile, mdk-stage1/ppp/pppd/sys-linux.c,
+ mdk-stage1/ppp/pppd/utils.c, mdk-stage1/rp-pppoe/src/Makefile,
+ mdk-stage1/slang/Makefile,
+ mdk-stage1/usb-resource/update-usb-ids.pl,
+ perl-install/modules.pm, perl-install/share/logo-mandrake.png:
+ Corporate Server 2.1.1 release
+
+2003-10-29 16:49 Guillaume Cottenceau
+
+ * tools/update_images: don't get bitten another time by "suddenly
+ disappearing" modules
+
+2003-10-29 16:05 Guillaume Cottenceau
+
+ * tools/update_images: add this script to update existing boot
+ images when there is a fix in BOOT kernel
+
+2003-10-29 15:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: perl_checker fixes
+
+2003-10-29 14:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: network.pm: fix installer when
+ network::ethernet wasn't loaded before
+
+2003-10-29 14:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getUPS) detect usb UPS
+ (serial_probe not seeing them for now)
+
+2003-10-29 14:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/compssUsers: pine is no more in the distro
+
+2003-10-28 18:32 Fançois Pons
+
+ * perl-install/modules.pm: fixed for ongoing bug since at least 9.0
+ for alias not reported in current installation.
+
+2003-10-28 12:37 Fançois Pons
+
+ * perl-install/: crypto.pm, pkgs.pm: import back from current main
+ cvs tree for fixes of 9.2 for x86_64
+
+2003-10-27 18:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-18mdk
+
+2003-10-27 18:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: isdn.pm, isdn_consts.pm: forward ISDN usb
+ adapters support
+
+2003-10-27 17:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: forward:
+
+ - test_connected function was wrong and did not pass its
+ parameter to network code code => hance connection status was
+ never detected
+
+ - profile managment in net_monitor wasn't updated to latest
+ damien api changes in network::netconnect and thus was broken
+ :-(
+
+2003-10-27 17:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: forward: drakperm incorrectly
+ enable one to click "ok" after having altered a system rule
+ whereas system rules are not saved since they're enforced by
+ msec.
+
+ this may confuse the end user ("why my changes weren't applied?")
+ so let disable the "ok" button if the current entry is
+ uneditable.
+
+2003-10-27 17:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: forward workaround for
+ anthill bug #18 (do not overwrite sound aliases when no hardware
+ change)
+
+2003-10-27 17:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: set drakconnect as config tool
+ for modems as well as for isdn & adsl adapters
+
+2003-10-27 14:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: list isdn adapters in their own
+ class instead of showing them up as unknown devices
+
+2003-10-27 14:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: split out adsl detection from
+ modem one into its one category
+
+2003-10-27 13:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/common.pm: sort export list
+
+2003-10-27 13:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/run_program.pm: fix requires for c::_exit()
+
+2003-10-27 13:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn.pm: (isdn_get_info) simplify it trough
+ MDK::Common
+
+2003-10-27 13:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: isdn.pm, netconnect.pm: simplify isdn
+ detection: - no need to pass a ref around; if it's bound to be
+ overwritten, just return a new hash - let isdn_detect only care
+ of which fields we want for isdn stuff
+
+2003-10-27 12:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn.pm: - make isdn detection more readable
+ - ensure previously detected isdn stuff is cleared on redetection
+
+2003-10-27 12:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/.perl_checker: blacklist Net::Ping in order to be
+ able to parse network::tools
+
+2003-10-27 12:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/.perl_checker: sort
+
+2003-10-24 00:35 Guillaume Cottenceau
+
+ * move/move.pm: try to save /etc/fstab and /etc/modules.conf (is
+ /etc/fstab really needed?)
+
+2003-10-23 16:20 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: add the mkisofs/cdrecord command line
+
+2003-10-23 16:19 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: use cp instead of cp_af
+
+2003-10-23 15:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: use fast_mouse_probe first in mandrake
+ move
+
+2003-10-23 15:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/keyboard.pm: if we have /bin/loadkeys, use it
+
+2003-10-23 14:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/keyboard.pm: - use setxkbmap instead of xmodmap if
+ setxkbmap is available - don't run setxkbmap chrooted
+
+2003-10-23 13:49 Guillaume Cottenceau
+
+ * mdk-stage1/stage1.c: handle case when main clp contains also boot
+ clp files
+
+2003-10-23 12:50 Guillaume Cottenceau
+
+ * mdk-stage1/stage1.c: a bit more logging info in case of failure
+
+2003-10-23 12:16 Pixel <pixel at mandriva.com>
+
+ * move/make_live: various fixes: - add some usually automatic flags
+ 'BURNER', 'UTF8', 'DOCS', 'TV', '3D' - use symlinkf instead of
+ "ln -sf" (symlinkf is much better, it removes destination first)
+ - not need to run pango-querymodules anymore
+
+2003-10-23 12:07 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: Merge from HEAD: setsid trick
+ to make XF4 work in fbdev Merge from pix's HEAD: use c::_exit()
+
+2003-10-23 11:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: don't use exit(), use _exit()
+
+2003-10-23 00:34 Guillaume Cottenceau
+
+ * mdk-stage1/stage1.c: copy boot live tree into memory to much
+ speed up startup time in cdrom mode
+
+2003-10-23 00:27 Guillaume Cottenceau
+
+ * mdk-stage1/: tools.c, tools.h: file_size
+
+2003-10-22 23:42 Guillaume Cottenceau
+
+ * move/Makefile: correctly install runstage2 as runstage2.pl
+
+2003-10-22 23:41 Guillaume Cottenceau
+
+ * move/data/boot.list: add /sbin/init (this is
+ mdk-stage1/init-move, not stock linux init - should be in
+ /tmp/live_tree/sbin/init avec "make install")
+
+2003-10-22 21:17 Guillaume Cottenceau
+
+ * mdk-stage1/: Makefile, config-stage1.h, log.c, log.h, network.c,
+ stage1.c, stage1.h, tools.c, tools.h: handle "boot" clp and
+ "main" clp. passing argument "live" can force to not use the clp
+ in favor of live tree.
+
+2003-10-22 21:16 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: report errno when init can't exec binary
+
+2003-10-22 21:15 Guillaume Cottenceau
+
+ * mdk-stage1/: disk.c, lomount.c, lomount.h, mount.c, mount.h:
+ allow more than one loop device for more than one lomount
+
+2003-10-22 18:20 Pixel <pixel at mandriva.com>
+
+ * move/: Makefile, make_live_tree_boot, data/boot.list: add
+ make_live_tree_boot
+
+2003-10-22 17:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn.pm: handle usb isdn adapters
+
+2003-10-22 17:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn_consts.pm: add entries for usb isdn
+ adapters
+
+2003-10-22 17:41 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/install_steps.pm: Handle idle=poll as a workaround
+ for broken BIOSes.
+
+2003-10-22 17:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn.pm: fix steping back on choosing isdn
+ card step
+
+2003-10-22 17:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix isdn detection
+
+2003-10-22 16:49 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/c/smp.c: Fix SMP detection on AMD64
+
+2003-10-22 15:36 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: sq.po, zh_TW.po: updated Chinese and
+ Albanian files
+
+2003-10-22 14:45 Guillaume Cottenceau
+
+ * mdk-stage1/stage1.c: pixel rulz
+
+2003-10-22 11:51 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/install_gtk.pm: indent fixes :)
+
+2003-10-22 11:49 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/list.x86_64: add i18n DSOs
+
+2003-10-22 11:49 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/any.pm: Merge from HEAD: fix code that selects
+ images for the choice of languages to not base on FB as well
+
+2003-10-22 11:47 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: force 75dpi
+
+2003-10-22 11:47 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/list: add im-cedilla.so
+
+2003-10-21 23:07 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fr.po, mk.po: Added Macedonian file;
+ updated French file
+
+2003-10-21 20:01 Guillaume Cottenceau
+
+ * mdk-stage1/Makefile, mdk-stage1/stage1.c, move/Makefile: use
+ pixel's gzloop module rather than cloop
+
+2003-10-21 19:21 Guillaume Cottenceau
+
+ * mdk-stage1/lomount.c: pixel doesn't sux
+
+2003-10-21 19:02 Guillaume Cottenceau
+
+ * mdk-stage1/lomount.c: pixel sux
+
+2003-10-21 19:00 Guillaume Cottenceau
+
+ * mdk-stage1/: lomount.c, disk.c: fix pixel
+
+2003-10-21 19:00 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: lomount.c, lomount.h: add beginning of gzloop
+ handling
+
+2003-10-20 19:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/timezone.pm: misc perl_checker cleanups
+
+2003-10-20 19:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: standalone/printerdrake, harddrake/sound.pm: misc
+ perl_checker cleanups
+
+2003-10-20 19:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Newt/Newt.xs: kill warning complaint from gcc aka
+ resync with official newt headers
+
+2003-10-20 18:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: kill warning complaint from gcc aka
+ resync with official rpm headers
+
+2003-10-20 18:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: drakTermServ, drakperm, drakpxe: misc
+ perl_checker cleanups
+
+2003-10-20 18:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: drakperm incorrectly enable one
+ to click "ok" after having altered a system rule whereas system
+ rules are not saved since they're enforced by msec.
+
+ this may confuse the end user ("why my changes weren't applied?")
+ so let disable the "ok" button if the current entry is
+ uneditable.
+
+2003-10-20 18:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: fix crash on editable items
+
+2003-10-20 17:33 Nicolas Planel <nplanel at mandriva.com>
+
+ * kernel/list_modules.pm: Add lpfcdd support (Emulex adapters)
+
+2003-10-20 17:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: perform test once and move it
+ out of the save loop
+
+2003-10-20 17:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: un-jonathan-ize()
+
+2003-10-20 17:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: consolidate, simplify, remove
+ duplicate
+
+2003-10-20 17:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: print more understandable error
+ message on parse error
+
+2003-10-20 17:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/tools.pm: fix #6159: fix detection when a
+ local name server is faking the connection because of its cache
+ by checking at least a packet is ack-ed
+
+2003-10-20 09:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/fileshareset: do not break working code!
+ (titi sucks)
+
+2003-10-19 21:04 Guillaume Cottenceau
+
+ * mdk-stage1/nfsmount.c: remove some unneeded code
+
+2003-10-19 00:34 Guillaume Cottenceau
+
+ * mdk-stage1/: nfs_mount4.h, nfsmount.c, nfsmount.h: use nfsmount
+ code from util-linux-2.11z so that we're using nfsmount v3 with
+ 2.4 kernel (not mandatory, but thought it was the origin of the
+ cloop-over-nfs problem - which is not)
+
+2003-10-19 00:33 Guillaume Cottenceau
+
+ * mdk-stage1/mount.c: nfs, cloop
+
+2003-10-19 00:32 Guillaume Cottenceau
+
+ * mdk-stage1/: cdrom.c, config-stage1.h, network.c, stage1.c:
+ support cloop over NFS too. stay flexible enough so that server=
+ parameter can either designate the root of the live tree or the
+ root for the cloop live tree, program will detect automatically
+ both.
+
+2003-10-19 00:30 Guillaume Cottenceau
+
+ * move/hack_network: try to see when it fails :/
+
+2003-10-17 21:32 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: small update one of the installation
+ screen
+
+2003-10-17 19:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules/interactive.pm: minor cleanup
+
+2003-10-17 19:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: drakTermServ, fileshareset,
+ printerdrake: perl_checker cleanups
+
+2003-10-17 19:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: - perl_checker cleanups -
+ this enable to catch two bugs: o test_connected function was
+ wrong and did not pass its parameter to network code code o
+ profile managment in net_monitor wasn't updated to latest damien
+ api changes in network::netconnect and thus was broken :-(
+
+2003-10-17 16:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: roolback hp fix:
+
+ after further investigation at Houston, the bcm440 bug was not
+ related to MII_NOT_SUPPORTED (ethtool/mii support is fine in this
+ driver).
+
+ instead, it is related to half/full duplex detection.
+
+2003-10-17 16:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: after further investigation at
+ Houston, the bcm440 bug was not related to MII_NOT_SUPPORTED
+ (ethtool/mii support is fine in this driver).
+
+ instead, it is related to half/full duplex detection.
+
+2003-10-17 16:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: workaround anthill bug
+ #18 (do not overwrite sound aliases when no hardware change)
+
+2003-10-17 16:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: adsl.pm, netconnect.pm: - simplify -
+ remove spurious module imports & requires - remove never used arg
+ (this enable to simplify caller) - fix detection logic: do not
+ mix old detected stuff with new one if one step back in
+ drakconnect after plugging some network devices in
+
+2003-10-17 15:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakpxe: network::netconnect is unused
+
+2003-10-16 20:31 Guillaume Cottenceau
+
+ * mdk-stage1/: config-stage1.h, stage1.c: move is cloop stuff
+
+2003-10-16 20:02 Guillaume Cottenceau
+
+ * mdk-stage1/: cdrom.c, config-stage1.h, mount.c: mandrake-move is
+ cloop stuff
+
+2003-10-16 19:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: update
+
+2003-10-16 19:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: forward expert mode fix (why
+ wasn't this commited in that branch too?)
+
+2003-10-16 19:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: - fix drakconnect logic
+ regarding hotplug (hotplug being a binary boolean and
+ MII_NOT_SUPPORTED being a string)
+
+ - default to enabled network hotplug bug if the card is
+ blacklisted else rely on user provided value
+
+ - blacklist bcm4400 for hp
+
+2003-10-16 18:41 Guillaume Cottenceau
+
+ * perl-install/install_steps_gtk.pm: misc opt
+
+2003-10-16 18:25 Guillaume Cottenceau
+
+ * move/move.pm: logs a last msg before exiting
+
+2003-10-16 18:24 Guillaume Cottenceau
+
+ * move/move.pm: display a sorta splash/wait screen when drakx exits
+ because kde takes a long time to startup its splash screen
+
+2003-10-16 18:00 Fançois Pons
+
+ * perl-install/network/network.pm: fix for HP (current module does
+ not work if MII_NOT_SUPPORTED to set to yes)
+
+2003-10-16 17:44 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: don't use find, it's faster
+
+2003-10-16 17:41 Guillaume Cottenceau
+
+ * perl-install/install_gtk.pm: override tex color when selected as
+ well, it's white per default, and with the grey selected
+ background it's ugly
+
+2003-10-16 17:41 Pixel <pixel at mandriva.com>
+
+ * move/: .cvsignore, Makefile, move.pm, xwait.c: add xwait and use
+ it
+
+2003-10-16 17:33 Guillaume Cottenceau
+
+ * perl-install/install_gtk.pm: no steps in move mode; for the
+ moment, no logo as well, we'll see what graphical aspect look
+ like with ln
+
+2003-10-16 17:02 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/: install_gtk.pm, install_steps_gtk.pm: merge in
+ gc's fix from HEAD for anti-aliasing with xf4 server
+
+2003-10-16 17:01 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/partition_table.pm: add XFS to amd64
+
+2003-10-16 17:00 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * rescue/list.x86_64: add grub stuff
+
+2003-10-16 16:59 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/: list_modules.pm, modules.pl: add sata_promise, sata_via
+
+2003-10-16 16:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: force user|group|other rights
+ order in edit dialog (previously order was random)
+
+2003-10-16 14:57 Fançois Pons
+
+ * perl-install/crypto.pm: fixed typo.
+
+2003-10-16 14:34 Fançois Pons
+
+ * perl-install/crypto.pm: fixed code to avoid opening 2 files
+ simultaneously.
+
+2003-10-16 14:29 Fançois Pons
+
+ * perl-install/pkgs.pm: fixed small typo.
+
+2003-10-16 14:29 Fançois Pons
+
+ * perl-install/pkgs.pm: fixed to avoid opening 2 ftp files at the
+ same time.
+
+2003-10-16 13:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-17mdk
+
+2003-10-16 11:50 Fançois Pons
+
+ * perl-install/pkgs.pm: fixed stupid typo.
+
+2003-10-16 11:49 Fançois Pons
+
+ * perl-install/pkgs.pm: make sure a pubkey file can be found if a
+ hdlist handle is given when creating a media.
+
+2003-10-16 11:46 Fançois Pons
+
+ * perl-install/crypto.pm: added pubkey in update management.
+
+2003-10-16 11:44 Fançois Pons
+
+ * perl-install/pkgs.pm: added external pubkey file management.
+
+2003-10-15 19:25 Guillaume Cottenceau
+
+ * perl-install/any.pm: maybe perl_checker should have told me? but
+ that's a bit complicated for his poor soul?
+
+2003-10-15 19:21 Guillaume Cottenceau
+
+ * perl-install/any.pm: fix default value still in location|name
+ form in case of move
+
+2003-10-15 19:17 Guillaume Cottenceau
+
+ * perl-install/any.pm: sorting according to transliteration in
+ languages-selection-as-images is broken, can't remember if I did
+ that special on purpose, seems it was just dumb from me, nothing
+ more
+
+2003-10-15 19:14 Guillaume Cottenceau
+
+ * perl-install/install_gtk.pm: override gtk theme selection color
+ since we won't do inverse-video on the text when it's images
+
+2003-10-15 19:06 Guillaume Cottenceau
+
+ * perl-install/install_gtk.pm: setting background color is normally
+ not needed anymore since XFree starts with "mandrake color" by
+ default now
+
+2003-10-15 17:34 Guillaume Cottenceau
+
+ * perl-install/any.pm: titi doesn't suck
+
+2003-10-15 17:24 Pixel <pixel at mandriva.com>
+
+ * move/move.pm, perl-install/install2.pm: - rename exitMove to
+ startMove - remove the blinks before kde start by relaying the
+ last X connection (using gmessage for now, will use "xtest
+ --wait" later)
+
+2003-10-15 17:22 Guillaume Cottenceau
+
+ * perl-install/any.pm: don't show a tree in move mode, we have only
+ a limited number of languages
+
+2003-10-15 16:41 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: fix typo
+
+2003-10-15 16:40 Pixel <pixel at mandriva.com>
+
+ * move/move.pm, perl-install/install2.pm: set move steps, add
+ exitMove step, pass $o to move::init()
+
+2003-10-15 16:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_any.pm: pass $o to
+ getNextStep
+
+2003-10-15 16:33 Guillaume Cottenceau
+
+ * move/Makefile, move/make_live, move/move.pm,
+ perl-install/lang.pm: have necessary png lang files installed and
+ limit percent-langs of langs.pm accordingly
+
+2003-10-15 16:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_any.pm, install_steps.pm,
+ install_steps_auto_install.pm, steps.pm: drop field {next} in
+ {steps} since it is duplicated in orderedSteps => it allows
+ simpler modification of orderedSteps (as already done in upgrade)
+ for mandrake move
+
+2003-10-15 15:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/: keyboard.pm, standalone/keyboarddrake: move
+ setxkbmap to keyboard.pm
+
+2003-10-15 15:40 Guillaume Cottenceau
+
+ * perl-install/install_gtk.pm: use installed galaxy gnome theme in
+ move
+
+2003-10-15 15:34 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: fix typo
+
+2003-10-15 15:33 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: load sound modules
+
+2003-10-15 15:32 Guillaume Cottenceau
+
+ * perl-install/any.pm: fix code that selects images for the choice
+ of languages to not base on FB as well
+
+2003-10-15 15:17 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: to be able to adduser, one need to have /etc/passwd
+ and /etc/group writable
+
+2003-10-15 15:15 Pixel <pixel at mandriva.com>
+
+ * move/Makefile: don't look for /usr/lib/libDrakX on build box,
+ only in the live_tree
+
+2003-10-15 15:07 Guillaume Cottenceau
+
+ * move/Makefile: try to lock to avoid problems with pixel
+
+2003-10-15 15:06 Pixel <pixel at mandriva.com>
+
+ * move/make_live: install SOUND packages
+
+2003-10-15 14:59 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: using uk instead of us keyboard for now to have
+ less warnings
+
+2003-10-15 14:52 Guillaume Cottenceau
+
+ * perl-install/: install_gtk.pm, install_steps_gtk.pm: better
+ disabling of anti-alias, fix non-fb based start of drakx (amd64,
+ move)
+
+2003-10-15 14:39 Guillaume Cottenceau
+
+ * move/move.pm: misc pixel fix
+
+2003-10-15 14:36 Guillaume Cottenceau
+
+ * move/move.pm: misc opt
+
+2003-10-15 14:30 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: - add many /etc/X11/* symlinks - add
+ /var/run/console (to be able to run X as a user)
+
+2003-10-15 14:26 Pixel <pixel at mandriva.com>
+
+ * move/move.pm: add some more links in /etc to the cdrom
+
+2003-10-15 13:15 Guillaume Cottenceau
+
+ * move/move.pm: tell Xconfig we allow proprietary modules and no
+ package needs to be installed (empty arrayref)
+
+2003-10-14 16:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakgw: let drakgw work...
+
+2003-10-14 15:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: - translate all server
+ names - harmonize server names
+
+2003-10-14 15:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakgw: revert back to stable version
+
+2003-10-14 15:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakgw: show up a combo box with detected
+ network interfaces but still let the user manually type it sg
+ like ppp0 if needed
+
+2003-10-14 15:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/shorewall.pm: (default_interfaces) -
+ simplify: ask_from already optimize the one item case for us -
+ make it show up a pull-down menu rather than forcing one to type
+ in the interface - fix it: $conf{net_interface} was *not* set
+ on multiple interfaces case
+
+ (read) fix it (conf was uselely initialized)
+
+2003-10-14 12:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: simplify advanced settings
+ detection in expert mode
+
+2003-10-14 12:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: check the right items in order
+ to display advanced stuff if needed
+
+2003-10-13 21:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: perl_checker fix (this one is
+ needed because else perl_checker stop package build [hint
+ perl_checker my love you really should not die on such stugg:
+ this should be a warning, not an error])
+
+2003-10-13 21:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: timezone.pm: syntax fix
+
+2003-10-13 21:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: ethernet.pm, network.pm, tools.pm:
+ forward: - fix #425, #1881: wireless adapters settings were lost
+ when altering network configuration when not from wizard mode -
+ when steping back in wizard, do not overwrite first card
+ parameters with last one's (#3276) - do not overwrite current
+ config from ifcfg-INTF with old.ifcfg-INTF
+
+2003-10-13 21:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: fix first part of #5315: honour
+ expert mode while installing in drakconnect (aka when expert mode
+ checkbox was checked)
+
+2003-10-13 21:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: forward: - fix lost checkbox
+ states when "expert mode" option is checked - fix first part of
+ #5315: honour expert mode while installing in drakconnect (aka
+ when expert mode checkbox was checked)fix
+
+2003-10-13 21:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/main.pm: forward "corrected parameters of
+ LPD info line"
+
+2003-10-13 21:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: forward untranslated title &
+ broken error dialog fixes
+
+2003-10-13 21:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakgw: forward "now one can now choose
+ the interface" fix
+
+2003-10-13 21:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/zh_TW.po: fix for hp release
+
+2003-10-13 21:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: timezone.pm: only list one tz for chinas (hp
+ release)
+
+2003-10-13 19:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: readd strict & diagnostics
+ pragma removed by florin
+
+2003-10-13 15:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: fix lost checkbox states when
+ "expert mode" option is checked
+
+2003-10-13 15:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: merge pablo fix for hp: "Some KDE screens
+ require new chinese translations naming (zh_CN/zh_TW) to display
+ the translations"
+
+2003-10-13 14:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: - get rid of a perl_checker
+ warning (thx pixel)
+
+ - this uncover the missing arg to parse_file when called from
+ net_monitor, thus enabling to show up which file is currently
+ parsed
+
+2003-10-13 14:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: - save "mail alert" wizard
+ options into /etc/sysconfig/mail_alert and restore them when
+ configuring it again
+
+ - make cron task reuse /etc/sysconfig/mail_alert
+
+2003-10-13 13:41 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/rpmsrate: default to use mdkkdm
+
+2003-10-13 13:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: - ensure services are always
+ listed in the same order - simplify installed services list build
+
+2003-10-12 22:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: cron: only mail if there's
+ really sg to warn about (aka do not sent empty mails)
+
+2003-10-12 19:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: restore previous subject in
+ mails
+
+2003-10-12 18:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: generate perl_checker compliant
+ cron tasks
+
+2003-10-12 18:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: simplify cron writing
+
+2003-10-10 21:25 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Move set_help_tip for new
+ perl_checker.
+
+2003-10-10 19:20 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: lang.pm, share/po/wa.po: Some KDE screens require
+ new chinese translations naming (zh_CN/zh_TW) to display the
+ translations
+
+2003-10-10 19:19 Guillaume Cottenceau
+
+ * move/move.pm: configure automatically xfree in move
+
+2003-10-10 19:19 Guillaume Cottenceau
+
+ * mdk-stage1/config-stage1.h: call move, move
+
+2003-10-10 17:14 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/modules.pl: qlogicisp is seldom used and it is doubtful
+ the normal user would ever make HD installs from disks connected
+ to Qlogic ISP SCSI adapters.
+
+2003-10-10 16:38 Guillaume Cottenceau
+
+ * perl-install/: install2.pm, install_steps_gtk.pm: configure
+ automatically XFree and allow to launch interactive_gtk with it
+
+2003-10-10 15:40 Guillaume Cottenceau
+
+ * perl-install/install_steps_gtk.pm: remove unused (perl_checker,
+ my love, where are you?)
+
+2003-10-10 13:18 Guillaume Cottenceau
+
+ * move/move.pm: order init stuff and tell a bit about it
+
+2003-10-10 13:08 Guillaume Cottenceau
+
+ * perl-install/class_discard.pm: give more details when using
+ class_discard
+
+2003-10-10 10:59 Guillaume Cottenceau
+
+ * perl-install/install_any.pm: aaaah that's why I had all the stuff
+ done twice after shell could not be run :)
+
+2003-10-10 00:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: only clean packages shit when isInstall
+
+2003-10-10 00:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: setsid trick to make XF4 work
+ in fbdev (!?!)
+
+2003-10-10 00:06 Guillaume Cottenceau
+
+ * perl-install/install_steps.pm: alpha is DEAD okay? so remove that
+ **** from here
+
+2003-10-09 23:48 Guillaume Cottenceau
+
+ * move/: .cvsignore, Makefile, hack_boot_img, hack_network,
+ move.pm, pkgs.pm, runstage2: mandrake-move can nearly start
+ (shell starts, X config not done so X server currently crashes)
+
+2003-10-09 23:45 Guillaume Cottenceau
+
+ * perl-install/install_any.pm: help dumb perl_checker
+
+2003-10-09 22:06 Guillaume Cottenceau
+
+ * perl-install/install_any.pm: thx perl checker
+
+2003-10-09 21:34 Guillaume Cottenceau
+
+ * perl-install/install2.pm: first shot as starting up mandrake-move
+ from install2.pm as well (so many code shared)
+
+2003-10-09 21:33 Guillaume Cottenceau
+
+ * perl-install/modules.pm: use /sbin/modprobe in move also
+
+2003-10-09 21:32 Guillaume Cottenceau
+
+ * perl-install/install_any.pm: first try with /bin/bash which is
+ available in move. specify --rcfile or else it'll try /.bashrc
+ which doesn't exist, and miss good definitions from /etc/bashrc
+ (aliases, home/end keys, etc)
+
+2003-10-09 19:41 Guillaume Cottenceau
+
+ * move/make_live: /etc/pango/pango.modules is normally a dynamic
+ file
+
+2003-10-09 18:47 Guillaume Cottenceau
+
+ * move/make_live: use FBDev server until XF4 support is commited in
+
+2003-10-09 18:22 Guillaume Cottenceau
+
+ * move/: devices, symlinks, data/devices, data/symlinks: don't act
+ like a pig at the beginning!
+
+2003-10-09 18:21 Guillaume Cottenceau
+
+ * mdk-stage1/: cdrom.c, config-stage1.h, network.c, stage1.c: boot
+ live_tree! :)
+
+2003-10-09 18:20 Guillaume Cottenceau
+
+ * mdk-stage1/Makefile: build move stuff from within move directory
+
+2003-10-09 18:19 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: perform kernel logging anyway, it's cool to
+ have it for init-stage2 as well
+
+2003-10-09 15:58 Guillaume Cottenceau
+
+ * perl-install/fs.pm: allow mounting devfs as well (move)
+
+2003-10-09 15:57 Guillaume Cottenceau
+
+ * perl-install/install_any.pm: report error why /dev/tty2 is not
+ available for opening a shell
+
+2003-10-09 14:48 Guillaume Cottenceau
+
+ * mdk-stage1/: .cvsignore, Makefile, init.c, minilibc.h: we need to
+ have an 'init' for stage2 as well, because if we exec directly
+ runinstall2 and it fails/stops for any reason, this will
+ immediately block the kernel ('Attempted to kill init'), making
+ debugging more difficult
+
+2003-10-09 14:47 Guillaume Cottenceau
+
+ * move/: devices, symlinks: add "devices" and "symlinks", two files
+ that dynamically speficy to stage1-for-move how to basically set
+ up the / in tmpfs before starting stage2
+
+2003-10-09 14:45 Guillaume Cottenceau
+
+ * mdk-stage1/stage1.c: create a few devices dynamically in the
+ tmpfs / to start up stage2, so that we don't use devices from the
+ live mount, so that we will be able to umount the live mount
+
+2003-10-09 13:37 Guillaume Cottenceau
+
+ * move/make_live: remove /lib/dev-state stuff from devfsd.conf
+
+2003-10-09 00:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: network.pm, tools.pm: simplify "do not
+ remove wireless parameters from ifcfg when not in wizard mode"
+ fix
+
+2003-10-08 23:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: network interface configuration
+ step: using network interface from interface/driver list is more
+ robust that relying on possibly empty int variable (better #3276
+ fix)
+
+2003-10-08 23:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: forward #3276 fix: when steping
+ back in drakconnect wizard, do not overwrite first card
+ parameters with last one's
+
+2003-10-08 17:20 Guillaume Cottenceau
+
+ * kernel/update_kernel: allow specifying a kernel
+
+2003-10-08 17:05 Guillaume Cottenceau
+
+ * mdk-stage1/: Makefile, cdrom.c, config-stage1.h, init.c,
+ stage1.c, tools.c, tools.h: first attempt of updating stage1 for
+ MandrakeMove
+
+2003-10-08 15:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: mark a few strings as
+ translatable (part of #5670)
+
+2003-10-08 14:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/msec.pm: forward #6103 fix:
+
+ - workaround buggy msec not listing MAIL_USER in its defaults
+ whereas it does list MAIL_WARN
+
+ - while keeping "prevent including MAIL_* in check list"
+ behavior, we still have to load them in order to be able to
+ save them back
+
+2003-10-08 13:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/msec.pm: fix #6103:
+
+ - workaround buggy msec not listing MAIL_USER in its defaults
+ whereas it does list MAIL_WARN
+
+ - while keeping "prevent including MAIL_* in check list"
+ behavior, we still have to load them in order to be able to
+ save them back
+
+2003-10-08 13:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: log values too in explanations
+
+2003-10-07 15:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: split readCompssUsers(): parsing is done in
+ readCompssUsers_raw
+
+2003-10-07 10:43 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: lib64 fixes for proprietary modules
+ (mainly nvidia)
+
+2003-10-06 15:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: fix #3276: when steping back in
+ drakconnect wizard, do not overwrite first card parameters with
+ last one's
+
+2003-10-06 14:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/nfs.pm: check both nfs servers version 2 and
+ version 3, and remove duplicates (bug #6055)
+
+2003-10-06 14:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: add usleep()
+
+2003-10-06 14:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: add common::nonblock()
+
+2003-10-04 19:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: use mkdir_p
+
+2003-10-04 02:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: perl_checker cleanups
+
+2003-10-03 18:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: cleanups
+
+2003-10-03 17:20 Fançois Pons
+
+ * perl-install/install_steps.pm: fixed important glitches about
+ oem-theme.rpm not capable of being copied
+
+2003-10-03 17:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_any.pm: notice bug
+
+2003-10-03 17:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/TODO: minor update
+
+2003-10-03 16:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: only read
+ /etc/sysconfig/network-scripts/ifcfg-*, not old.ifcfg-* and the
+ like...
+
+2003-10-03 16:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: fix #425, #1881 (was there since
+ 20021020 :-() : wireless adapters settings were lost when
+ altering network configuration when not from wizard mode
+
+2003-10-03 16:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: network.pm, tools.pm: factorize wireless
+ card detection into network::tools:is_wireless_intf()
+
+2003-10-03 16:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: consolidate network conf
+ reread
+
+2003-10-02 22:14 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/printer/main.pm: fixed an involuntary typo
+
+2003-10-02 21:11 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/printer/main.pm: fixed parameters for LPD printer
+ information line
+
+2003-10-02 21:08 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/printer/main.pm: corrected parameters of LPD info
+ line
+
+2003-10-01 16:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, network/smbnfs.pm, standalone/harddrake2,
+ standalone/localedrake, standalone/logdrake: perl_checker
+
+2003-10-01 16:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: perl_checker compliance
+
+2003-10-01 14:59 Erwan Velu <erwan at mandriva.com>
+
+ * kernel/modules.pl: Removing sundance
+
+2003-10-01 14:24 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ca.po, pt_BR.po, zh_TW.po: updated
+ Catalanf, Brazilian and Chinese files
+
+2003-10-01 11:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: perl_checker compliance
+
+2003-10-01 10:49 Fançois Pons
+
+ * perl-install/install_any.pm: added missing kernel-i686-up-4GB
+ entry for kernel modules.
+
+2003-09-30 23:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, network/adsl.pm,
+ network/network.pm: no need to escape " in /xxx \" xxx/
+
+2003-09-30 21:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: help Gi_perl_check
+
+2003-09-30 20:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Makefile, standalone/drakautoinst,
+ standalone/drakfont, standalone/drakgw, standalone/scannerdrake:
+ don't check *all* for test_pms_all, skip horrible stuffs
+
+2003-09-30 20:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: don't care about printer::*
+
+2003-09-30 20:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/: standalone.pm: perl_checker compliance
+
+2003-09-30 19:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: "Processor #129 invalid" doesn't
+ mean 129 processors are available
+
+2003-09-30 17:13 Fançois Pons
+
+ * perl-install/pkgs.pm: removed obsoleted togglePackageSelection
+ method no more used.
+
+2003-09-30 17:07 Fançois Pons
+
+ * perl-install/install_steps_gtk.pm: perl_checker fixes.
+
+2003-09-30 16:48 Fançois Pons
+
+ * perl-install/install_steps_gtk.pm: improved invidual package
+ selection as toggle, a bit faster and give reason why package
+ cannot be selected.
+
+2003-09-29 19:07 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated
+
+2003-09-29 16:20 Fançois Pons
+
+ * perl-install/install_steps_gtk.pm: fixed log about toggle of
+ package.
+
+2003-09-29 16:19 Fançois Pons
+
+ * perl-install/install_steps_gtk.pm: add reason of package not
+ selected (or unselected).
+
+2003-09-29 16:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/: .perl_checker, install_any.pm, ugtk2.pm,
+ Xconfig/card.pm, network/drakfirewall.pm, printer/detect.pm:
+ perl_checker fixes
+
+2003-09-29 15:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/shorewall.pm: small cleanup (thanks to
+ perl_checker) !! default_interfaces() is still wrong !!
+
+2003-09-29 15:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: cleanup
+
+2003-09-29 11:45 Fançois Pons
+
+ * perl-install/pkgs.pm: commiting uncommitted fixes about
+ kernel-i686 needed prefered in choices.
+
+2003-09-26 14:24 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/eu.po: updated Basque file
+
+2003-09-25 17:04 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: Uzbek console keyboard is now in
+ console-tools; enabling it
+
+2003-09-24 23:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/az.po: updated Azeri file
+
+2003-09-24 17:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: a better grepping of Processor in
+ dmesg (it works when we don't have acpi=ht)
+
+2003-09-24 15:18 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakgw: now one can now choose the
+ interface
+
+2003-09-24 15:14 Florin Grad <florin at mandriva.com>
+
+ * perl-install/network/: drakfirewall.pm, shorewall.pm: allow
+ drakfirewall to choose the interface
+
+2003-09-24 14:19 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: af.po, zh_CN.po: updated Chinese and
+ Afrikaans files
+
+2003-09-23 23:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: clean fonts renaming and make
+ it log renames (through explanations)
+
+2003-09-23 23:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: (move_fonts) factorize clean
+ fonts move
+
+2003-09-23 23:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: fix font copy (catched by
+ #5157): - prevent looking for "*.pfm*.afm" fonts - prevent
+ displaying spurious error messages on console while converting
+ fonts
+
+2003-09-23 23:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: fix ttf font conversion
+ (catched by #5157)
+
+2003-09-23 16:43 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: mnemonics by default suck bigtime!
+
+2003-09-23 15:05 Fançois Pons
+
+ * perl-install/network/netconnect.pm: futile to try starting
+ network service, dhcp cannot work as no module are suitable for
+ dhclient from boot kernel.
+
+2003-09-23 15:03 Fançois Pons
+
+ * perl-install/any.pm: fixed hdInstallPath not working on some
+ cases.
+
+2003-09-23 14:13 Fançois Pons
+
+ * perl-install/network/netconnect.pm: make sure network is started
+ for start_internet.
+
+2003-09-23 13:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: ensure ->kill kills all the open
+ windows (fixes mke2fs failure causing $::WizardTable to be kept
+ empty)
+
+2003-09-23 11:03 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/eu.po: updated Basque file
+
+2003-09-23 10:24 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nl.po: updated Dutch file
+
+2003-09-23 10:17 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: eu.po, it.po, uk.po: updated Basque,
+ Italian and Ukrainian files
+
+2003-09-22 18:43 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Bug 5916, all users overrides
+ individual selection in wizard.
+
+2003-09-22 17:05 Fançois Pons
+
+ * perl-install/pkgs.pm: simplified code.
+
+2003-09-22 17:04 Fançois Pons
+
+ * perl-install/pkgs.pm: use kernel-i686 or kernel-enterprise as
+ other kernel.
+
+2003-09-22 16:56 Fançois Pons
+
+ * perl-install/install2.pm: keep use_existing_root for recovery
+ (behaviour changed later)
+
+2003-09-22 16:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: dmi doesn't detect ht, but acpi
+ does, so use it
+
+2003-09-22 16:56 Fançois Pons
+
+ * perl-install/install_steps.pm: avoid mounting partitions in
+ recovery mode.
+
+2003-09-22 16:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: fix error message
+
+2003-09-22 16:10 Fançois Pons
+
+ * perl-install/network/netconnect.pm: make sure module are loaded
+ only during installation.
+
+2003-09-22 15:41 Fançois Pons
+
+ * perl-install/network/netconnect.pm: try loading boot kernel
+ modules before trying to start internet connection...
+
+2003-09-22 15:39 Fançois Pons
+
+ * perl-install/network/network.pm: simplified perl writing, make
+ sure bool2yesno has a chance to be called for MII_NOT_SUPPORTED
+
+2003-09-22 15:38 Fançois Pons
+
+ * perl-install/network/network.pm: fixed strange perl writing sense
+ less...
+
+2003-09-22 15:30 Fançois Pons
+
+ * perl-install/install_steps.pm: avoid urpmi source in oem to use
+ cdrom (we now use disk instead, avoiding supermount problems).
+
+2003-09-22 12:25 Fançois Pons
+
+ * perl-install/install_steps_gtk.pm: try to follow what is wrong
+ when requiring multiple cds.
+
+2003-09-22 10:30 Pixel <pixel at mandriva.com>
+
+ * rescue/tree/etc/oem-all: - fix typo - add CVS Id
+
+2003-09-22 00:57 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: bs.po, eu.po, fa.po, it.po, pt.po,
+ pt_BR.po, zh_CN.po: updated Bosnian, Basque, Farsi, Italian,
+ Portuguese and Chinese files
+
+2003-09-21 13:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: allowing consolefonts to be ungzip'ed
+ (adapting to new console-tools) (thanks to Mark Draheim)
+
+2003-09-20 22:32 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: Updates soft/ftw/po/da.po
+ gi/perl-install/share/po/da.po
+
+2003-09-19 22:50 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: de.po, pt_BR.po, sv.po, vi.po: updated
+ German, Brazilian, Swedish and Vietnamese files
+
+2003-09-19 19:25 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: switch the other way too
+
+2003-09-19 19:21 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: switch to kdebase-kdm while the
+ reboot options aren't fixed
+
+2003-09-19 18:38 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: do not install lisa by default
+ (reduce to 3)
+
+2003-09-19 17:43 Fançois Pons
+
+ * rescue/tree/etc/oem-all: updated with oem
+
+2003-09-19 17:43 Fançois Pons
+
+ * rescue/tree/etc/oem: fixed severe bug of directory not created.
+
+2003-09-19 16:35 Fançois Pons
+
+ * rescue/tree/etc/: oem, oem-all: fixed too many files copied.
+
+2003-09-19 16:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-16mdk
+
+2003-09-19 16:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix the fix
+
+2003-09-19 15:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix #5825 (hostname set as
+ ARRAY(0x...))
+
+2003-09-19 14:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: next FreeWnn is not a naughtyServers
+ anymore
+
+2003-09-19 14:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: final update naughtyServers for 9.2
+
+2003-09-19 13:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/is.po: updated Icelandic file
+
+2003-09-19 12:42 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: az.po, cs.po, fi.po, hu.po, ja.po, pl.po,
+ pt_BR.po, zh_TW.po: updated Azeri, Czech, Finnish, Hungarian,
+ Japanese, Polish, Brazilian and Chinese files
+
+2003-09-19 00:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: one more typo fix
+
+2003-09-19 00:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: typo fix
+
+2003-09-18 21:45 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-09-18 19:28 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2003-09-18 18:21 Guillaume Cottenceau
+
+ * mdk-stage1/: disk.c, probing.c: close file descriptors
+
+2003-09-18 17:34 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nb.po: updated Norwegian file
+
+2003-09-18 17:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: update naughtyServers
+
+2003-09-18 16:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-15mdk
+
+2003-09-18 16:51 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: last license message update
+
+2003-09-18 16:12 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2003-09-18 16:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: prevent some obscure crash at
+ install time
+
+2003-09-18 15:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: don't "probeall scsi_hostadapter
+ usb-storage" (as requested by flepied and planel)
+
+2003-09-18 15:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sq.po: updated Albanian file
+
+2003-09-18 15:54 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-09-18 15:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: the install package dialog box
+ must be explictly destroyed when quitting installation (esp. this
+ occurs when answering "No" to "There was an error installing
+ packages")
+
+ rationale: the $w (created with ugtk2->new) is not reference
+ counted correctly (it was already workarounded when leaving
+ installPackages the normal way)
+
+2003-09-18 15:38 Fançois Pons
+
+ * perl-install/share/rpmsrate: added kdeutils in rpmsrate to help
+ upgrading it.
+
+2003-09-18 15:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: when installing, remember the
+ new sound driver so that the user isn't confused if he ever want
+ to configure it again
+
+2003-09-18 15:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: fix slot number when
+ configuring sound cards
+
+2003-09-18 15:23 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Add kdemultimedia-common to allow
+ kaudiocreator to work
+
+2003-09-18 15:20 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: gl.po, he.po, hr.po, hu.po, id.po, is.po,
+ it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po, nb.po, nl.po,
+ pl.po, pt.po, pt_BR.po, ro.po: updated pot file
+
+2003-09-18 15:16 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po: updated pot file
+
+2003-09-18 15:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Makefile, share/po/Makefile: don't remove some
+ po's from drakxtools, only from install (ar/fa disabled because
+ not working at install, ga/sl not translated enough)
+
+2003-09-18 15:12 Fançois Pons
+
+ * rescue/tree/etc/oem-all: updated with oem
+
+2003-09-18 15:11 Fançois Pons
+
+ * rescue/tree/etc/oem: fixed for %{ARCH} used in hdlists.
+
+2003-09-18 15:05 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install_messages.pm: paragraph about patents was not
+ tagged as translatable; added N( )
+
+2003-09-18 14:49 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cs.po, uk.po: updated Czech and Ukrainian
+ files
+
+2003-09-18 13:50 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/Makefile: Arabic and Farsi po files not
+ used at install, as there isn't available font during install
+
+2003-09-18 12:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: - fix grub/menu.lst -> lilo.conf -
+ cleanup
+
+2003-09-18 11:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakboot: ensure
+ update_bootloader_label() won't break when called in text
+ interactive (hint: in that case, $boot_label is unset)
+
+2003-09-18 10:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: sanitize ld.so.conf *before*
+ calling ldconfig
+
+2003-09-17 23:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/pixmaps/langs/lang-en_IE.png: readded with binary
+ flag
+
+2003-09-17 23:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/pixmaps/langs/lang-en_IE.png: removed binary file
+
+2003-09-17 23:21 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: Fixed "Configure CUPS" function of
+ printerdrake adding a second "<Location />...</Location>" in
+ /etc/cups/cupsd.conf instead of replacing the existing one (fix
+ of Titi's newly introduced bug from May 19 14:17:58 2003 UTC).
+
+2003-09-17 23:12 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/zh_TW.po: removed duplicate entry
+
+2003-09-17 23:09 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/zh_TW.po: Completed a translation
+
+2003-09-17 23:04 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/zh_TW.po: s:country:country/region:
+
+2003-09-17 22:51 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: it.po, pt_BR.po, zh_TW.po: updated
+ Italian, Brazilian and Chinese files
+
+2003-09-17 22:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-14mdk
+
+2003-09-17 21:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/handle_configs.pm: (comment_directive) fix it
+
+2003-09-17 20:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: lang.pm, pixmaps/langs/lang-en_IE.png,
+ share/po/wa.po: Added "English (Ireland)" choice; make Russian
+ encoding compatible with Ukrainian (choosin 'ru' and 'uk'
+ languages doesn't force utf-8 but keeps koi8)
+
+2003-09-17 18:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: don't warn about FreeWnn being an open port
+ (gc will try to only open it to localhost)
+
+2003-09-17 17:02 Fançois Pons
+
+ * perl-install/install_steps.pm: moved update-menu after
+ installation of oem-theme.rpm
+
+2003-09-17 17:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: we still are 13mdk
+
+2003-09-17 17:00 Fançois Pons
+
+ * perl-install/install_steps.pm: allow exit code of detached
+ process to be seen.
+
+2003-09-17 16:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: do not log changes that got
+ reversed between two releases
+
+2003-09-17 16:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-13mdk
+
+2003-09-17 16:29 Fançois Pons
+
+ * perl-install/install_steps.pm: fixed closing of rpmdb directly in
+ pkgs
+
+2003-09-17 16:29 Fançois Pons
+
+ * perl-install/pkgs.pm: make always sure rpmdb is closed before
+ attempting installation.
+
+2003-09-17 16:19 Fançois Pons
+
+ * perl-install/install_steps.pm: install urpmi before update-menus
+ is called.
+
+2003-09-17 16:17 Fançois Pons
+
+ * perl-install/install2.pm: make sure use_existing_root is not set.
+
+2003-09-17 16:11 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakbug: - drakhelp will load online
+ drakbug help file
+
+2003-09-17 15:09 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/install_steps.pm: remove deprecated function call
+ (thanks to guillaume 'eagle eye' Cottenceau)
+
+2003-09-17 15:08 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: force mandrake_doc-en if language is
+ not fr, it or es
+
+2003-09-17 14:57 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakhelp: - replace mdklaunchhelp by
+ konqueror
+
+2003-09-17 14:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: fix ugliness: don't display
+ $advanced_pack when there are no @widgets_advanced (esp. since
+ $advanced_pack is now in its own scrolled window)
+
+2003-09-17 14:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: when the checking the mount point is not
+ already used, don't take into account current partition
+
+2003-09-17 14:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: don't display a
+ wait_message together with the write_partitions() dialog
+
+2003-09-17 14:10 Fançois Pons
+
+ * perl-install/install_steps.pm: fixed to close rpm db whenever
+ possible.
+
+2003-09-17 13:42 Guillaume Cottenceau
+
+ * perl-install/: install_steps.pm, lang.pm: treat C encoding
+ specially when computing utf8 flag, it should not trigger utf8
+ set by itself
+
+2003-09-17 13:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fs.pm, partition_table.pm: ensure that a number is
+ not written as the type in fstab
+
+2003-09-17 13:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: cancel in
+ setRootPassword means "No password", not cancel
+
+2003-09-17 12:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: add /usr/lib/qt3/lib (and sometimes
+ /usr/lib/qt3/lib64) in ld.so.conf (needed for upgrade where
+ package renaming can cause this to disappear)
+
+2003-09-17 12:39 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: fresh updates
+
+2003-09-17 12:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: run nisdomainname et ypbind so that nis is
+ correctly set up *now*, not at next reboot.
+
+ TODO: also do it during install since nis can be useful to
+ resolve domain names. Not done because 9.2-RC
+
+2003-09-17 12:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakauth: display errors occuring in
+ any::set_authentication() (esp. for "Can't use broadcast with no
+ NIS domain")
+
+2003-09-17 10:25 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cy.po, et.po, hu.po, nb.po, pt.po:
+ updated Welsh, Estonian, Hungarian, Norwegian and Portuguese
+ files
+
+2003-09-17 03:23 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2003-09-17 02:59 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-09-16 19:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix typos
+
+2003-09-16 19:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: fix #5403: - make sure to use
+ OptionMenu instead of Combo boxes - move help into a tooltip
+
+2003-09-16 19:08 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: af.po, ar.po, az.po, be.po, bg.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, ga.po, gl.po, he.po, hr.po, hu.po,
+ id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po,
+ nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po,
+ sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po:
+ updated pot files
+
+2003-09-16 18:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: pixelization
+
+2003-09-16 18:22 Fançois Pons
+
+ * perl-install/install_steps.pm: make sure / and /usr are formatted
+ in recovery mode.
+
+2003-09-16 16:16 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: fix firmware testing at
+ installation
+
+2003-09-16 16:16 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, help-de.pot, help-es.pot,
+ help-it.pot, help-ru.pot: updated pot files
+
+2003-09-16 16:08 Fançois Pons
+
+ * perl-install/install2.pm: made mouse, keyboard, packages
+ selection, timezone and security selection automatic...
+
+2003-09-16 16:01 Fançois Pons
+
+ * perl-install/install2.pm: / and /usr should be formatted, keep
+ default for installation.
+
+2003-09-16 15:59 Fançois Pons
+
+ * perl-install/install2.pm: fixed stupid typo preventing mouse
+ modules to be loaded.
+
+2003-09-16 15:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: Gtk2::CheckButton->new is
+ Gtk2::CheckButton->new_with_mnemonic, it's better to use
+ Gtk2::CheckButton->new_with_label (bug #5728)
+
+2003-09-16 15:17 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/share/rpmsrate: wireless packages fix
+
+2003-09-16 15:14 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: add minichinput in X 5
+
+2003-09-16 15:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: one more fix
+
+2003-09-16 14:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: fix expert mode resulting in
+ advanced setting being displayed by default but label still being
+ "advanced" instead of "basic"
+
+2003-09-16 13:57 Pixel <pixel at mandriva.com>
+
+ * Makefile: don't upload live_update (tis deprecated)
+
+2003-09-16 13:48 Fançois Pons
+
+ * perl-install/install_any.pm: removing update media tag (except
+ for update medium)
+
+2003-09-16 13:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-12mdk
+
+2003-09-16 12:58 Fançois Pons
+
+ * perl-install/install2.pm: added automatic steps in recovery mode.
+
+2003-09-16 12:51 Fançois Pons
+
+ * perl-install/install2.pm: disable recovery mode if recovery.cfg
+ file has not been read successfully.
+
+2003-09-16 12:49 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: added question to ask
+ for recovering the system in recover mode.
+
+2003-09-16 00:33 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/share/rpmsrate: Added usbutils to the packages
+ needed for installation. This package is needed for setting up
+ the HP PSC 1xxx and OfficeJet 4xxx with HPOJ.
+
+2003-09-16 00:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: fix #5488: do not overwrite
+ current driver if it's a viable driver for the current sound card
+
+2003-09-16 00:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: show the current driver too
+ (being preselected) so that users do not get confused
+
+2003-09-16 00:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: typo fixes
+
+2003-09-16 00:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: fix hidden or cutted buttons
+ (#1919, #2364, #2705, #3667, ...)
+
+2003-09-15 23:04 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: initialize $adsl, fix #5674 and
+ pppoe.conf problems
+
+2003-09-15 21:57 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/netconnect.pm: net install autodetection fix
+
+2003-09-15 21:37 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbug: New, improved, compact code,
+ courtesy of Thierry.
+
+2003-09-15 21:00 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fi.po, fr.po, is.po: updated Finnish,
+ French and Icelandic files
+
+2003-09-15 20:47 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbug: Updates for stable release bug
+ submission to anthill (vdanen)
+
+2003-09-15 20:35 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: help-de.pot, help-es.pot, help-fr.pot,
+ help-it.pot, help-ru.pot: put back previous versions of
+ help-*.pot files to be in synch with help.pm
+
+2003-09-15 19:13 Fançois Pons
+
+ * perl-install/Xconfig/resolution_and_depth.pm: avoid using other
+ depth than 24 for fglrx in automatic mode.
+
+2003-09-15 18:38 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: Small fix on LIDIL workaround.
+
+2003-09-15 18:31 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: Put device identity info into the
+ HPOJ config file also when HPOJ configuration was not verified
+ (LIDIL devices).
+
+2003-09-15 18:08 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: Added workaround to make HP PSC
+ 1xxx and OfficeJet 4xxx really working.
+
+2003-09-15 16:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: use locale_special when $::prefix is set
+ (so that X test is i18n)
+
+2003-09-15 16:33 Fançois Pons
+
+ * perl-install/standalone.pm: improved speed by invoking once `rpm
+ -qa` instead of 4.
+
+2003-09-15 16:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table.pm: associate partition table 0xeb
+ (BeOS) with filesystem befs (part of bug #5523)
+
+2003-09-15 16:11 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: fix #5056 (mostly workaround as
+ kernel is frozen)
+
+2003-09-15 16:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/XFdrake: - call
+ any::ask_window_manager_to_logout() after forking so that exit
+ doesn't happen before it is done (otherwise it can loose Xauth
+ access) - fix checking config_changed (it can be string
+ 'config_changed' or the new $raw_X)
+
+2003-09-15 16:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/main.pm: configure_resolution() must return
+ 'config_changed' when a new resolution is chosen
+
+2003-09-15 15:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: set ICEAUTHORITY for "gnome-session-save
+ --kill" (it would be better to set it in usermode, but it works
+ :)
+
+2003-09-15 15:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/run_program.pm: better logging of killed runaway
+ processes
+
+2003-09-15 14:54 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-09-15 14:49 Fançois Pons
+
+ * perl-install/c/Makefile: fixed possible typo...
+
+2003-09-15 14:49 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/: drakTermServ, drakbackup: drakTermServ
+ - translation issues (Arpad Biro), fix help text format
+ drakbackup - translation issues (Arpad Biro) fix
+ user, cron misbehavior (Keld Jørn Simonsen)
+
+2003-09-15 13:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: fix growing ext2/ext3
+ partitions
+
+2003-09-15 12:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: fix typo (pixel sux)
+
+2003-09-15 12:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: when "Back" is pressed, restore the list of
+ entries in bootloader (bug #5680)
+
+2003-09-15 10:39 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/strip_modules: fix strip
+
+2003-09-15 08:22 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: af.po, hu.po, it.po, mt.po, pt.po:
+ updated Afrikaans, Hungarian, Italian, Maltese and Portuguese
+ files
+
+2003-09-15 08:16 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/help.pm: reverted to previous version, to avoid huge
+ strings break at this stage
+
+2003-09-15 05:10 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: perl_checker fix.
+
+2003-09-15 04:17 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: Added support
+ for user-mode-only HPOJ devices (HP PSC 1xxx and OfficeJet 4xxx).
+ Fixes bug #5641.
+
+2003-09-14 20:54 Warly <warly at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: stop bootsplash silent
+ mode if something is detected
+
+2003-09-14 19:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: add a warning for / on LVM: "You may not
+ be able to install lilo (since lilo doesn't handle a LV on
+ multiple PVs)"
+
+2003-09-14 16:04 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: last updates, fixed some typos
+
+2003-09-14 11:38 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fa.po, he.po, hu.po, pt_BR.po, sq.po,
+ uk.po: updated Farsi, Hebrew, Hungarian, Brazilian, Albanian and
+ Ukrainian files
+
+2003-09-13 16:27 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2003-09-13 14:51 Nicolas Planel <nplanel at mandriva.com>
+
+ * perl-install/install2.pm: back to i810fb xcon=4 (bad docummented
+ option)
+
+2003-09-13 11:00 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cy.po, zh_CN.po: updated Welsh and
+ Chinese files
+
+2003-09-13 10:57 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: put quotes around the XIM_PROGRAM values
+ that use spaces
+
+2003-09-13 02:25 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: bg.po, he.po, it.po, pt_BR.po, ro.po,
+ sk.po: updated Bulgarian, Hebrew, Italian, Brazilian and Romanian
+ files; fixed syntax errors in Slovak file
+
+2003-09-13 01:29 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: hd as default daemon media
+
+2003-09-12 22:37 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2003-09-12 21:34 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: corrections
+ gi/perl-install/share/po/da.po
+
+2003-09-12 21:03 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: corrections
+ soft/wizard_perl/po/da.po gi/perl-install/share/po/da.po
+
+2003-09-12 20:42 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates soft/menu-messages/da.po
+ soft/ftw/po/da.po gi/perl-install/share/po/da.po
+
+2003-09-12 20:13 Guillaume Cottenceau
+
+ * perl-install/lang.pm: fix garbled font when asking UTF8 in text
+ install
+
+2003-09-12 19:08 Guillaume Cottenceau
+
+ * perl-install/c/: Makefile.PL, stuff.xs.pl: stuff doesn't contain
+ gtk stuff anymore
+
+2003-09-12 19:07 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/az.po: updated Azeri file
+
+2003-09-12 19:04 Guillaume Cottenceau
+
+ * tools/make_mdkinst_stage2: die if cp failed
+
+2003-09-12 18:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-11mdk
+
+2003-09-12 18:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix #5586 (profiles with
+ spaces in name)
+
+2003-09-12 18:05 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/tools.pm: added sub copy_firmware, sub
+ use_windows(), sub use_floppy firmware copy works from floppy and
+ windows/winnt
+
+2003-09-12 18:01 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: - dropped sub load_firmware_floppy
+ - handle windows firmware's copy
+
+2003-09-12 17:31 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cs.po: updated Czech file
+
+2003-09-12 17:16 David Baudens <baudens at mandriva.com>
+
+ * perl-install/standalone/icons/: drakfont.620x57.png,
+ wiz_default_up.png, wiz_drakconnect.png, wiz_drakgw.png,
+ wiz_firewall.png, wiz_logdrake.png, wiz_printerdrake.png,
+ wiz_scannerdrake.png: Update
+
+2003-09-12 16:36 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/compssUsers: Always install a termunal
+ emulator and don't install GNOME by default
+
+2003-09-12 16:28 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: nb.po, sv.po, vi.po: updated Norwegian,
+ Swedish and Vietnamese files
+
+2003-09-12 15:18 Guillaume Cottenceau
+
+ * perl-install/share/themes-galaxy.rc: fix progressbar color
+ (should be blue)
+
+2003-09-12 14:05 Fançois Pons
+
+ * perl-install/share/rpmsrate: fixed fatal error in rpmsrate.
+
+2003-09-12 12:30 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2003-09-12 12:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix #5586 (netprofile package
+ still need be fixed)
+
+2003-09-12 11:31 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Fix gnome-audio entry
+
+2003-09-12 11:09 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: removed nautilus-gtkhtml
+
+2003-09-12 11:06 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: added rnboifd and cm2020 packages
+
+2003-09-12 10:50 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Update
+
+2003-09-12 09:50 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated
+
+2003-09-12 02:54 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translation
+
+2003-09-12 02:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po,
+ sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po,
+ th.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
+ zh_TW.po: updated pot file
+
+2003-09-12 00:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: fix #5571
+
+2003-09-11 23:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules/interactive.pm: if some module has no
+ parameter, instead of not displaying the config window, show that
+ there's no parameters to configure
+
+2003-09-11 23:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: help making printerdrake icon bar be
+ shorter (#5282 again)
+
+2003-09-11 23:17 Guillaume Cottenceau
+
+ * perl-install/install_steps_gtk.pm: don't display a watch when
+ slow things because due to the large number of gtkflush(), the
+ ask_ok_cancel appears before its Gtk->main is called, hence
+ clicking too fast will call Gtk->main_quit before Gtk->main, but
+ the dialog doesn't disappear; then on the next click on
+ ok/cancel, the call to another Gtk->main_quit will lead to two
+ Gtk->main being exited, hence destroying the ok/cancel dialog but
+ alors the main window (choose of individual packages)
+
+2003-09-11 23:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: fix infamous #4136
+
+ rationale: our own SIG_CHLD handler intercept the child death
+ after run_program's waitpid() got interrupted by the signal but
+ before it get rescheduled by the kernel (at which stage the child
+ it wait for does not exists anymore)
+
+2003-09-11 22:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules/interactive.pm: translate one more string
+
+2003-09-11 21:22 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: don't pack_end two times a button, this
+ causes a Gtk Critical and we never know what can happen after
+ that :/
+
+2003-09-11 20:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps.pm, lang.pm: move configuring kdmrc
+ to lang::write so that it is done in localedrake
+
+2003-09-11 20:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: don't configure kde config files when they
+ are not present (otherwise minimal install followed by urpmi kde
+ gives a badly configured kde)
+
+2003-09-11 20:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/: ugtk2.pm, Xconfig/test.pm: use center_always for
+ popped windows (if transient is not used), and force centering in
+ Xconfig test
+
+2003-09-11 20:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/c/Makefile.PL: libXext seems to be needed, i don't
+ know why...
+
+2003-09-11 18:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: do not set hostname if
+ there's a dynamic interface
+
+2003-09-11 17:52 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: eo.po, he.po, lt.po, ms.po, sl.po, ta.po,
+ tg.po, wa.po: updated po files (country names strings merged from
+ drakfw)
+
+2003-09-11 17:36 Fançois Pons
+
+ * perl-install/install_steps.pm: simplified oem theme generation,
+ now use oem-theme.rpm
+
+2003-09-11 17:33 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakgw: silly me, I forgot the debug
+ messages
+
+2003-09-11 17:23 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: one fix
+
+2003-09-11 17:20 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: typo fixes
+
+2003-09-11 16:49 Florin Grad <florin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: add the network interface
+ window as in the drakgw's case
+
+2003-09-11 16:49 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakgw: some Cancel interface fix
+
+2003-09-11 16:42 Fançois Pons
+
+ * perl-install/Xconfig/resolution_and_depth.pm: fixed depth to 24
+ when using driver fglrx (it won't work unless 24 bits)
+
+2003-09-11 15:46 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/it.po: updated Italian file
+
+2003-09-11 15:32 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Add 5 LOCALES"zh_CN" miniChinput
+ (#4408)
+
+2003-09-11 15:24 Guillaume Cottenceau
+
+ * perl-install/install_gtk.pm: inactivate antialias in VGA16
+ because it makes fonts look worse
+
+2003-09-11 15:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: always display the log domain
+ names in the same order, that is in english (not l10n) alphabetic
+ order
+
+2003-09-11 15:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: remove debugging assertion
+
+2003-09-11 15:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: display "the current level is
+ X" instead of "the current level is level X"
+
+2003-09-11 14:59 Fançois Pons
+
+ * perl-install/any.pm: fixed to use meta_class desktop instead of
+ virtual discovery (mapped to desktop).
+
+2003-09-11 14:57 Fançois Pons
+
+ * perl-install/install_steps.pm: wait for processes that need to be
+ correctly finished before.
+
+2003-09-11 14:54 Guillaume Cottenceau
+
+ * perl-install/any.pm: don't use images for language choice in
+ vga16, it's too ugly
+
+2003-09-11 14:50 Fançois Pons
+
+ * perl-install/run_program.pm: added detach option to handle
+ detached process running (for update-menus).
+
+2003-09-11 14:41 Fançois Pons
+
+ * perl-install/bootloader.pm: protected restore entry to be only
+ visible if restore option added during boot.
+
+2003-09-11 14:39 Fançois Pons
+
+ * perl-install/install2.pm: added restore option to allow restore
+ entry to be created (refused by default)
+
+2003-09-11 14:35 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cy.po, uz.po, uz@Cyrl.po: updated Welsh
+ and Uzbek files
+
+2003-09-11 12:04 Guillaume Cottenceau
+
+ * mdk-stage1/disk.c: fix recovery behaviour thx to francois
+ comments
+
+2003-09-11 02:04 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/it.po: updated Italian file
+
+2003-09-10 23:01 Guillaume Cottenceau
+
+ * mdk-stage1/: automatic.h, disk.c, disk.h, stage1.c, stage1.h,
+ tools.c: recovery
+
+2003-09-10 22:31 Guillaume Cottenceau
+
+ * rescue/tree/etc/issue: 9.2
+
+2003-09-10 20:59 Nicolas Planel <nplanel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: fixup default fglrx config to be
+ included in Device Section. thanks pixel
+
+2003-09-10 18:37 Guillaume Cottenceau
+
+ * mdk-stage1/Makefile: 9.2
+
+2003-09-10 18:28 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/: compssUsers.desktop, rpmsrate: Update
+
+2003-09-10 17:23 Frederic Crozat <fcrozat at mandriva.com>
+
+ * perl-install/share/rpmsrate: Don't install nautilus-gtkhtml by
+ default
+
+2003-09-10 17:06 Guillaume Cottenceau
+
+ * perl-install/Xconfig/test.pm: clean
+
+2003-09-10 17:06 Guillaume Cottenceau
+
+ * perl-install/Xconfig/test.pm: we don't have .jpg loader in
+ install, file needs to be in .png (mandrake_desk 9.2-8mdk)
+
+2003-09-10 16:48 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: updated one string
+
+2003-09-10 16:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-10mdk
+
+2003-09-10 16:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: - do not comply on filter
+ change (system, user or system & user) - default to "system &
+ user" by default - show customized rules after system ones since
+ these are managed once system ones get applied - add new rules
+ to end of list
+
+2003-09-10 16:30 Fançois Pons
+
+ * perl-install/mouse.pm: fixed the fix of fpons trick...
+
+2003-09-10 16:28 Fançois Pons
+
+ * perl-install/mouse.pm: fixed the fpons trick (which was false
+ moreover)
+
+2003-09-10 16:14 Fançois Pons
+
+ * perl-install/Xconfig/card.pm: fixed perl_checker fixes.
+
+2003-09-10 16:11 Fançois Pons
+
+ * perl-install/install2.pm: make sure mouse modules are loaded
+ before using them (usefull for defcfg or recovery).
+
+2003-09-10 16:07 Fançois Pons
+
+ * perl-install/mouse.pm: added load_modules to load mouse module
+ according to configuration.
+
+2003-09-10 15:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: network/netconnect.pm, standalone/drakedm: follow
+ std explanations policy
+
+2003-09-10 15:26 Fançois Pons
+
+ * perl-install/bootloader.pm: restore entry is a recovery entry.
+
+2003-09-10 15:24 Fançois Pons
+
+ * perl-install/bootloader.pm: restore entry shouldn't have
+ reference of vga=... in append, moved to vga.
+
+2003-09-10 15:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: no more "dos" label in bootloader (it
+ seems WinXP use the "DOS FAT16" for fat partitions)
+
+2003-09-10 15:04 Fançois Pons
+
+ * perl-install/: standalone/XFdrake, install_steps_interactive.pm,
+ Xconfig/card.pm: added nplanel patch for ATI proprietary drivers.
+
+2003-09-10 13:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: add higher level explanations
+
+2003-09-10 13:00 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: 2 typo fixes
+
+2003-09-10 12:19 Fançois Pons
+
+ * perl-install/network/adsl.pm: added sagem support for dhcp (as
+ used by Free degroupped ;-))
+
+2003-09-10 12:07 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: az.po, cs.po, et.po, hu.po, nb.po, pl.po,
+ pt_BR.po, zh_CN.po: updated Azeri, Czech, Estonian, Hungarian,
+ Brazilian and Chinese files
+
+2003-09-10 11:05 Fançois Pons
+
+ * perl-install/install2.pm: save recovery file if disk
+ installation.
+
+2003-09-10 10:54 Fançois Pons
+
+ * perl-install/install2.pm: take recovery option into account.
+
+2003-09-10 09:22 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated
+
+2003-09-10 00:12 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/scanner.pm: Fixed functions for scanner database
+ (ScannerDB) generation.
+
+2003-09-09 22:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: handle a new sound module
+
+2003-09-09 22:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: workaround broken snd-usb-audio
+
+2003-09-09 21:19 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-09-09 19:46 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/de.po: updated German file
+
+2003-09-09 18:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakxtv: install xawtv if needed
+
+2003-09-09 18:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: re-enable supermount
+
+2003-09-09 18:23 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/netconnect.pm: profile is 'default' if no
+ configuration file found
+
+2003-09-09 17:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, standalone/diskdrake: ensure userdrake
+ works when diskdrake --fileshare is embedded or run through kdesu
+
+2003-09-09 17:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: fix #5448 (infinite entries)
+
+2003-09-09 17:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix window size in when non
+ embedded & non wizard
+
+2003-09-09 17:31 Fançois Pons
+
+ * perl-install/bootloader.pm: avoid lilo-graphic for ProSavageDDR
+ card as this card seems to report bad window size.
+
+2003-09-09 17:24 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ help-de.pot, help-es.pot, help-it.pot, help-ru.pot, hr.po, hu.po,
+ id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po,
+ nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po,
+ sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po:
+ updated pot file
+
+2003-09-09 17:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: fix #5040 (too small drakboot's
+ window width)
+
+2003-09-09 17:05 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/any.pm: - userdrake is in /usr/sbin/ (#5447)
+
+2003-09-09 17:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: remove too verbose _XSetInputFocus log
+
+2003-09-09 16:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix drakboot layout
+
+2003-09-09 16:49 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Fixed bug #5423: Some
+ option settings were not be recognized or changed.
+
+2003-09-09 16:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: fix default size without
+ draksplash
+
+2003-09-09 16:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: increase sleep time after modprobing
+ usb-uhci/usb-ohci (otherwise USB mouse may be undetected)
+
+2003-09-09 16:31 Fançois Pons
+
+ * perl-install/standalone/drakautoinst: try again if no floppy (or
+ error during creation of floppy)
+
+2003-09-09 16:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: don't ask security
+ level when upgrading
+
+2003-09-09 16:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: write "MOVE YOUR WHEEL!" only for ps2 mice
+
+2003-09-09 16:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/: help.pm, share/po/help-de.pot,
+ share/po/help-es.pot, share/po/help-fr.pot, share/po/help-it.pot,
+ share/po/help-ru.pot: update from xml help
+
+2003-09-09 15:25 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates soft/GtkMdkWidgets/po/da.po
+ soft/wizard_perl/po/da.po gi/perl-install/share/po/da.po
+
+2003-09-09 14:57 Fançois Pons
+
+ * perl-install/install_messages.pm: fixed reference to 9.1 errata,
+ (now http://www.mandrakelinux.com/en/92errata.php3).
+
+2003-09-09 12:41 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/printerdrake: - help call - reportbug via
+ bugzilla
+
+2003-09-09 12:29 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/po/: fi.po, ko.po, sq.po, ta.po: Fix s/9.1/9.2
+
+2003-09-09 11:13 Pixel <pixel at mandriva.com>
+
+ * Makefile: no need to upload rpmtools.pm anymore (in /misc)
+
+2003-09-09 11:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_steps.pm: fix network install
+
+2003-09-09 10:42 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: eu.po, pt.po, uk.po: updated Basque,
+ Portuguese and Ukrainian files
+
+2003-09-09 10:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: fix #5430: do not confuse
+ users with debug messages
+
+2003-09-09 09:46 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/update_kernel: nuke obsolete code
+
+2003-09-09 07:57 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated
+
+2003-09-08 22:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: drakperm, draksec: add help buttons
+
+2003-09-08 21:50 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: eu.po, hu.po: updated Basque and
+ Hungarian files
+
+2003-09-08 21:42 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cy.po, nb.po: updated Welsh and Norwegian
+ files
+
+2003-09-08 20:00 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/: 01-thanks.pl,
+ 04-configuration.pl, 06-development.pl: Update
+
+2003-09-08 19:51 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po,
+ sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po,
+ th.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
+ zh_TW.po: s/9\.1/9\.2/g
+
+2003-09-08 19:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: last 9.2-9mdk bits
+
+2003-09-08 19:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix net_monitor not working as root
+
+2003-09-08 18:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix current profile load in
+ wizard mode
+
+2003-09-08 18:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: increase drakconnect
+ robustness regarding profiles managment
+
+ - fix set_profiles() call on profiles menu user change
+
+ - (set_profiles) consolidate netcnx->{PROFILE} setting where we
+ call set_profile
+
+ - (update_profiles) rely on netcnx->{PROFILE}
+
+ - fix profiles list update when wizard exits
+
+2003-09-08 18:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: save_conf() really is dead
+
+2003-09-08 18:14 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/: network/netconnect.pm, standalone/drakconnect: -
+ do not call anymore network::netconnect::save_conf - good
+ set_profiles($netcnx) call
+
+2003-09-08 18:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: perl_checker compliance
+
+2003-09-08 18:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/diskdrake: remove obsolete code
+
+2003-09-08 17:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-9mdk
+
+2003-09-08 17:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, standalone/diskdrake: ~fix~ calling
+ userdrake in "diskdrake --fileshare"
+
+2003-09-08 17:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: fix #4964 (not being able to
+ select directories)
+
+2003-09-08 17:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: my_gtk.pm, ugtk.pm: no more used (drakcronat just
+ removed from distro) => less dependancies :-)
+
+2003-09-08 17:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: don't
+ warnAboutNaughtyServers when upgrading
+
+2003-09-08 17:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: - use OptionMenu's
+ instead of Combo's (better looking and mcc doesn't like embedding
+ combos) - cleanup
+
+2003-09-08 16:56 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: shrink
+
+2003-09-08 16:54 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/: adsl.pm, isdn.pm, netconnect.pm,
+ network.pm, nfs.pm: - fix/use explanations - fix #5307 (firmware)
+
+2003-09-08 16:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: az.po, et.po, fi.po, zh_CN.po: updated
+ Azeri, Estonian, Finnish and Chinese files
+
+2003-09-08 16:38 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: last updates
+
+2003-09-08 16:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/XFdrake: Xdrakres is "XFdrake resolution"
+ not simply "XFdrake"
+
+2003-09-08 16:29 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/printerdrake: Fixed copyright notice.
+
+2003-09-08 15:10 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po,
+ sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po,
+ th.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
+ zh_TW.po: updated pot file
+
+2003-09-08 14:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile.config, perl-install/install_steps_gtk.pm,
+ perl-install/ugtk2.pm, tools/Makefile: fixing keyboard focus
+ during install: - removed aewm-drakx which doesn't work nicely -
+ fix @interactive::objects handling (don't push non pop_it
+ windows, ensure destroyed windows are removed) - ensure
+ XSetInputFocus is called on $::WizardWindow
+
+2003-09-08 13:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: fix check_mntpoint to get back error
+ "There is already a partition with mount point %s\n"
+
+2003-09-08 13:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/diskdrake: use formatError to have the
+ error message instead of SCALAR(0x....)
+
+2003-09-08 13:46 Fançois Pons
+
+ * perl-install/install2.pm: set xcon=6 when loading i810fb module
+ (to have console 7 with X).
+
+2003-09-08 13:41 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-09-08 11:21 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/share/po/fr.po: s/Utiliserer une disquette/Utiliser
+ une disquette/
+
+2003-09-08 11:05 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/printerdrake: - support new help call
+
+2003-09-08 05:07 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/scannerdrake: Show an error message if
+ saned could not be installed.
+
+2003-09-08 03:22 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: printer/cups.pm, printer/main.pm,
+ printer/printerdrake.pm, standalone/printerdrake: - Use a field
+ in the $printer data structure and no a global variable for the
+ expert mode. - Fixed bug of database not being re-read when
+ switching between normal and expert mode with the new GTK2 main
+ window.
+
+2003-09-07 21:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-8mdk
+
+2003-09-07 20:35 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/: network/netconnect.pm, standalone/drakconnect: -
+ $netcnx->{PROFILE} is current profile name (now scalar) - fix non
+ working profiles loading/saving - perl_checker
+
+2003-09-07 16:18 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Fixed first-time dialog.
+
+2003-09-07 13:12 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: typo fix
+
+2003-09-07 05:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2003-09-07 00:39 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: bs.po, cy.po, he.po, hu.po, vi.po:
+ updated Bosnian, Welsh, Hebrew, Hungarian and Vietnamese files
+
+2003-09-07 00:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: fix #1837: add support for two more
+ wireless network cards
+
+2003-09-06 15:09 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Update
+
+2003-09-05 22:25 Guillaume Cottenceau
+
+ * perl-install/lang.pm: add support for "variants" as explained by
+ pablo (in uz@Cyrl the @Cyrl is a variant)
+
+2003-09-05 21:54 Guillaume Cottenceau
+
+ * perl-install/keyboard.pm: /me sux
+
+2003-09-05 21:53 Guillaume Cottenceau
+
+ * perl-install/keyboard.pm: apply patch asked by pablo so that
+ users are not confused during install that their chosen
+ grp_toggle is not usable. yes it's too late for additional
+ translations but it's not very important that this is
+ untranslated, it's better to have it in.
+
+2003-09-05 19:13 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/network.pm: workaround messed up ppp0
+ configration
+
+2003-09-05 19:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update fr translation
+
+2003-09-05 18:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: help making printerdrake icon bar be
+ shorter (#5282)
+
+2003-09-05 18:29 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/printerdrake: Reverted button texts to
+ not break existing translations, added hints for translators to
+ make the button texts short.
+
+2003-09-05 17:39 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates soft/control-center/po/da.po
+ gi/perl-install/share/po/da.po
+
+2003-09-05 16:28 Florin Grad <florin at mandriva.com>
+
+ * perl-install/network/: netconnect.pm, network.pm: small fixes for
+ drakgw and drakfirewall
+
+2003-09-05 15:23 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/printerdrake: Shorter button texts, so
+ that translations do not let the buttons go out of the window.
+
+2003-09-05 15:12 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-09-05 15:00 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/pt.po: updated Portuguese file
+
+2003-09-05 14:51 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: increazed size of Arabic font in KDE
+
+2003-09-05 14:13 David Baudens <baudens at mandriva.com>
+
+ * perl-install/pixmaps/: monitor-1024.png, monitor-1152.png,
+ monitor-1280.png, monitor-1400.png, monitor-1600.png,
+ monitor-1920.png, monitor-2048.png, monitor-640.png,
+ monitor-800.png, monitor.png: Update
+
+2003-09-05 11:27 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cs.po, ru.po, sk.po, uz.po, uz@Cyrl.po,
+ zh_CN.po: updated Czech, Slovak, Uzbek and Chinese files
+
+2003-09-05 03:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fa.po, hu.po, nb.po: updated pot files
+
+2003-09-05 02:38 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Change the strings again for
+ Pablo
+
+2003-09-05 01:33 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2003-09-04 22:51 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: passed spellchecking, fixed some
+ typos
+
+2003-09-04 21:52 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: last updates
+
+2003-09-04 21:19 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: CDROM -> CDR
+
+2003-09-04 21:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: - printerdrake needs
+ foomatic-db-engine
+
+ - printerdrake is moved to drakxtools since it does not anymore
+ run on the console
+
+2003-09-04 20:21 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/scannerdrake: Abort scannerdrake when
+ SANE packages cannot be installed.
+
+2003-09-04 20:18 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: et.po, sq.po: updated Estonian and
+ Albanian files
+
+2003-09-04 19:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: remove doble entry
+
+2003-09-04 19:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-7mdk (arghh, 9.2-6mdk was
+ really uploaded)
+
+2003-09-04 19:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-6mdk last bits
+
+2003-09-04 18:18 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/icons/: drakTS.620x57.png,
+ drakbackup.540x57.png: No longer needed with reworked banners.
+
+2003-09-04 18:11 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Add application title in
+ banner.
+
+2003-09-04 17:34 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nb.po: updated Norwegian file
+
+2003-09-04 16:45 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po,
+ sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po,
+ th.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
+ zh_TW.po: updated pot file
+
+2003-09-04 16:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix buildrequires for 64bit ports
+
+2003-09-04 15:45 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/compssUsers.desktop: Update
+
+2003-09-04 15:39 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/modem.pm: always ask for modem device even
+ if not detected, unless user has winmodem
+
+2003-09-04 15:36 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/modem.pm: fix #5242, don't go back to main
+ menu if winmodem isn't found
+
+2003-09-04 11:40 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/pt.po: updated Portuguese file
+
+2003-09-04 11:05 Fançois Pons
+
+ * perl-install/Xconfig/resolution_and_depth.pm: XF 3.3 should use
+ depth 16 if use_UTAH_GLX, this has been glitched in XF4 mode (so
+ never available).
+
+2003-09-04 10:14 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/eu.po: updated Basque file
+
+2003-09-04 10:10 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/it.po: updated Italian file
+
+2003-09-04 09:52 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Fully updated
+
+2003-09-03 21:52 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/tr.po: updated Turkish file
+
+2003-09-03 21:37 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Update
+
+2003-09-03 21:12 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Update
+
+2003-09-03 21:04 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: nb.po, nl.po: updated Norwegian and Dutch
+ files
+
+2003-09-03 19:58 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Update
+
+2003-09-03 19:42 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Default to all users for
+ wizard->Users (as root). Only allow 1 media select from wizard.
+ Limit possible user list to self for nonroot users.
+
+2003-09-03 18:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps.pm, install_steps_auto_install.pm,
+ install_steps_interactive.pm, install_steps_newt.pm,
+ install_steps_stdio.pm: - move call to ->charsetChanged from
+ install_steps_interactive to install_steps so that we can use
+ it in install_steps_auto_install_non_interactive - don't overload
+ ->selectLanguage to call lang::load_console_font(), overload
+ ->charsetChanged instead
+
+2003-09-03 17:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/: mouse.pm, pixmaps/arrow_down.png,
+ pixmaps/arrow_down.xpm, pixmaps/arrow_up.png,
+ pixmaps/arrow_up.xpm, pixmaps/mouse_2b.png,
+ pixmaps/mouse_2b_left.png, pixmaps/mouse_2b_right.png,
+ pixmaps/mouse_3b+.png, pixmaps/mouse_3b+.xpm,
+ pixmaps/mouse_3b+_middle.png, pixmaps/mouse_3b+_mini.xpm,
+ pixmaps/mouse_3b.png, pixmaps/mouse_3b.xpm,
+ pixmaps/mouse_3b_left.png, pixmaps/mouse_3b_middle.png,
+ pixmaps/mouse_3b_mini.xpm, pixmaps/mouse_3b_right.png,
+ pixmaps/mouse_left.xpm, pixmaps/mouse_middle.xpm,
+ pixmaps/mouse_right.xpm: - much cleanup in test_mouse() - new
+ images for mouse test (thanks to Jerome Villette)
+
+2003-09-03 17:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/: hd_gtk.pm, interactive.pm: require
+ resize_fat::main when needed (fix bug #5204)
+
+2003-09-03 17:09 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: use command line parameter to specify
+ traditional or simplified style for Chinput
+
+2003-09-03 16:43 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Last untranslated string.
+ Rework banner with title ala rpmdrake.
+
+2003-09-03 16:30 Fançois Pons
+
+ * perl-install/standalone/drakautoinst: fixed missing import of
+ ugtk2
+
+2003-09-03 11:17 Fançois Pons
+
+ * isolinux-graphic.bmp: updated pictures of 9.2 (style fixes
+ according lilo one)
+
+2003-09-03 11:16 Fançois Pons
+
+ * make_boot_img: updated for newer pictures.
+
+2003-09-03 09:06 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * make_boot_img: acpi=ht is x86 only
+
+2003-09-03 08:30 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakhelp: - change to handle documentaion
+ system other than drakxtools one (for instance MandrakeGalaxy)
+
+2003-09-03 02:03 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Fix some untranslated strings
+ - Arpad Biro
+
+2003-09-03 01:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: eu.po, fa.po: updated Basque and Farsi
+ files
+
+2003-09-03 00:18 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fi.po, pt.po: Updated Finnish and
+ Portuguese files
+
+2003-09-02 21:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2003-09-02 21:07 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: fixed some errors in license message
+
+2003-09-02 19:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update french translation
+
+2003-09-02 19:16 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-09-02 17:00 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/printerdrake: Prevent main window crash
+ when queue list gets empty by deleting all print queues.
+
+2003-09-02 16:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/Makefile: do not translate in arabic during
+ install since there's no font available
+
+2003-09-02 16:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: do not disable arabic completly (tis very
+ ugly to do this, better remove the arabic choice!)
+
+2003-09-02 15:00 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/fonts.tar.bz2: updated 12x13 bitmap font
+ (replaced hebrew glyphs with a copy from nachlieli font, under
+ gpl)
+
+2003-09-02 14:38 Fançois Pons
+
+ * perl-install/pkgs.pm: fixed XFree86-75dpi-fonts not available
+ (seems like a problem with length of rpmsrate computation,
+ strange as it fails now and not before).
+
+2003-09-02 14:31 Fançois Pons
+
+ * perl-install/install_steps_gtk.pm: fixed duplicate entries in src
+ architecture.
+
+2003-09-02 14:09 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Fixed major number of
+ libsane-hpoj.
+
+2003-09-02 13:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: add description for option "umask=0" (bug
+ #4310)
+
+2003-09-02 04:38 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: eu.po, hu.po: updated po files
+
+2003-09-02 00:31 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/pt.po: updated Portuguese file
+
+2003-09-02 00:29 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: bs.po, nb.po: updated Bosnian and
+ Nrowegian files
+
+2003-09-01 23:07 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/he.po: updated Hebrew file
+
+2003-09-01 22:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/printerdrake: do not explicitely reject
+ embedding there, it has to be done in mcc.
+
+ else, mcc wait forever for rpmdrake to embed in, then display an
+ error dialog explaining that rpmdrake has failled (since it
+ exited before displaying anything in mcc...)
+
+2003-09-01 19:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, install_steps.pm: chksession gives GNOME
+ for gnome, not Gnome
+
+2003-09-01 19:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: oops, really kill gconfd silently
+
+2003-09-01 18:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: don't warn when killing /usr/lib/gconfd-2
+ when runs in background
+
+2003-09-01 15:12 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/drakxtools.spec: Fix lsnsetdrake on AMD64
+
+2003-09-01 14:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cs.po, uz.po, uz@Cyrl.po: updated Czech
+ and Uzbek files
+
+2003-09-01 14:25 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: az.po, da.po, de.po, ru.po, sk.po, sq.po,
+ uk.po, vi.po, zh_CN.po: updated Azeri, Albanian, Ucrainian,
+ Vietnamese and Chinese files
+
+2003-09-01 13:59 Pixel <pixel at mandriva.com>
+
+ * tools/ntp_servers.pl: update to new timezone.pm and adapt to new
+ web page listing ntp servers
+
+2003-09-01 13:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/timezone.pm: update stratum 2 ntp servers
+
+2003-09-01 13:24 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: _ask_file: don't forget to overwrite
+ $o->{window} as well or else it will be ->show'ed as a blank
+ window (#5083)
+
+2003-09-01 13:20 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: Update soft/urpmi/po/da.po
+ gi/perl-install/share/po/da.po
+
+2003-09-01 08:18 Stefan Siegel <siegel at linux-mandrake.com>
+
+ * perl-install/share/po/de.po: updates german translation
+
+2003-08-31 23:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix profiles list refreshing
+
+2003-08-31 23:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-6mdk
+
+2003-08-31 23:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: harddrake2 help dialog: use
+ the new scrolled dialog API for scrolled labels
+
+2003-08-31 23:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_dialog) do not scroll labels by
+ default
+
+2003-08-31 23:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: ugtk2.pm, standalone/drakconnect,
+ standalone/drakfloppy, standalone/harddrake2: fix dialogs height:
+ replace"small" option by "height" & "weight" ones
+
+ rationale: make thecommon path be the easiest one to set up (and
+ make the uncommon path be the hardest one to follow)
+
+2003-08-31 23:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: in non expert mode, only display
+ the list of *installed* display managers. (interface team
+ request)
+
+ if no dm is installed, then switch back to expert mode behaviour
+ and display all dm and install them if needed.
+
+2003-08-31 23:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix draksec french translation
+
+2003-08-31 23:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: conflicts with older drakxtools doc
+ due to new ctxhelp (drakhelp being broken until ctxhelp module is
+ splited out as perl-MDK-Doc)
+
+2003-08-31 23:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: requires perl-Gtk2 >= 0.95-6mdk for
+ working XSetInputFocus()
+
+2003-08-31 23:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: since we renewed network profiles
+ feature, we shall require netprofile for drakconnect
+
+2003-08-31 23:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: explanations now work again
+ thanks to pixel, no need to duplicate them
+
+2003-08-31 22:53 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2003-08-31 21:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: don't check ext3 filesystems nor mount them
+ as ext2 during upgrade (bug #5067)
+
+2003-08-30 15:25 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/pixmaps/: about.png, cups_config.png, help.png,
+ printer_add.png, printer_conf.png, printer_default.png,
+ printer_del.png, printerdrake.png, redhat-config-users.png,
+ refresh.png, selected.png, slpash-drakeprint-2.png,
+ unselected.png: Re-uploaded binary files added with "cvs add -kb
+ ...".
+
+2003-08-30 15:20 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/pixmaps/: about.png, cups_config.png, help.png,
+ printer_add.png, printer_conf.png, printer_default.png,
+ printer_del.png, printerdrake.png, redhat-config-users.png,
+ refresh.png, selected.png, slpash-drakeprint-2.png,
+ unselected.png: Binary files uploaded without "cvs add -kb ...",
+ removed for re-upload.
+
+2003-08-30 14:25 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: current updates
+
+2003-08-30 12:15 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/hu.po: updated Hungarian file
+
+2003-08-30 10:13 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: et.po, pt.po: updated Estonian and
+ Portuguese files
+
+2003-08-30 02:33 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated
+
+2003-08-30 02:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: since XFree86-VGA16-3.3.6-29mdk is bad,
+ insist on having XFree86-VGA16 28mdk instead
+
+2003-08-30 02:03 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/icons/wiz_printerdrake.png: Updated head
+ image for add-printer wizard to have the new printerdrake icon.
+
+2003-08-30 01:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: set {perImageAppend} to the append=
+ line from the default entry or the first image= entry
+
+2003-08-30 01:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: set_minmax_width was commented which
+ caused the individual package selection tree to be to large (fix
+ bug #4548 #4865)
+
+2003-08-29 23:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-08-29 23:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-5mdk
+
+2003-08-29 23:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: restore profiles feature
+
+2003-08-29 23:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: restore profiles feature
+ through new netprofile package
+
+2003-08-29 23:33 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: nb.po, nl.po, pl.po, pt.po, pt_BR.po,
+ ro.po, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po:
+ updated pot file
+
+2003-08-29 23:21 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: el.po, eo.po, es.po, et.po, eu.po, fa.po,
+ fi.po, fr.po, ga.po, gl.po, he.po, hr.po, hu.po, id.po, is.po,
+ it.po, ja.po, ko.po, lt.po, lv.po, ms.po, mt.po: updated pot file
+
+2003-08-29 22:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po: updated pot file
+
+2003-08-29 22:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix title when not embedded
+ (print right number of network interfaces instead of displaying a
+ big random number)
+
+2003-08-29 22:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ctxhelp.pm: provided by mandrake_doc-drakxtools-LL
+
+2003-08-29 18:19 Fançois Pons
+
+ * perl-install/pkgs.pm: try to make sure additional CD are taken
+ into account if low memory available for configuring urpmi.
+
+2003-08-29 16:33 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/modules.pm: no imm/ppa on ia64
+
+2003-08-29 16:08 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/list_modules.pm: Add inflate_fs.o module for SCSI cdroms
+ on IA-64 (!)
+
+2003-08-29 15:40 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: pixmaps/about.png, pixmaps/cups_config.png,
+ pixmaps/help.png, pixmaps/printer_add.png,
+ pixmaps/printer_conf.png, pixmaps/printer_default.png,
+ pixmaps/printer_del.png, pixmaps/printerdrake.png,
+ pixmaps/redhat-config-users.png, pixmaps/refresh.png,
+ pixmaps/selected.png, pixmaps/slpash-drakeprint-2.png,
+ pixmaps/unselected.png, standalone/printerdrake: New GTK2-based
+ main window for printerdrake (only after installation).
+
+2003-08-29 13:54 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cs.po, uk.po, zh_CN.po: updated Czech,
+ Ukrainian and Chinese files
+
+2003-08-29 12:18 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: major cleaning
+
+2003-08-29 12:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: translation just means translation,
+ not gratuitously speaking about the whole universe
+
+2003-08-29 11:55 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: remove system("cp..."); (I suck so
+ much...)
+
+2003-08-29 09:26 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: Updates soft/menu-messages/da.po
+ soft/GtkMdkWidgets/po/da.po soft/urpmi/po/da.po
+ soft/wizard_perl/po/da.po gi/perl-install/share/po/da.po
+
+2003-08-29 02:16 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Do not show hidden options
+ in the options dialog.
+
+2003-08-29 02:02 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Enabled Wizards in embedded
+ mode. They work there now!
+
+2003-08-29 01:12 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Partially updated
+
+2003-08-29 01:00 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated
+
+2003-08-28 23:49 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-08-28 21:46 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Moved some stuff from
+ mainwindow_interactive() to main() and init() as it has nothing
+ to do with the main window.
+
+2003-08-28 20:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nb.po: updated Norwegian file
+
+2003-08-28 20:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix dialogs heigh
+
+2003-08-28 19:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_dialog) enable to pass an already
+ created Gtk2::Label
+
+2003-08-28 19:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: - configure /etc/sysconfig/autologin in case
+ of xdm, but remove it if kde/gnome - create any::sessions()
+
+2003-08-28 19:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: don't install autologin if using
+ KDE or Gnome desktop (not needed nor used)
+
+2003-08-28 18:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: if there is only one users and meta_class is
+ discovery, choose autologin without asking
+
+2003-08-28 18:24 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/: compssUsers.desktop, compssUsers: select
+ Documentation for all classes
+
+2003-08-28 18:19 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: removed drakprofile
+
+2003-08-28 17:54 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/fi.po: updated Finnish file
+
+2003-08-28 17:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone.pm: (output) remove buggy warn
+
+2003-08-28 17:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone.pm: fix MDK::Common::* explainations
+
+2003-08-28 14:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_gtk.pm: fix direction setting for bidi (need
+ perl-Gtk2-0.95-5mdk though)
+
+2003-08-28 14:36 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: uz.po, uz@Cyrl.po: updated Uzbek files
+
+2003-08-28 13:34 Guillaume Cottenceau
+
+ * perl-install/detect_devices.pm: detect a laptop if cpu name
+ contains "mobile" as many recent laptops are in that case (in
+ case other means would fail)
+
+2003-08-28 12:17 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2003-08-28 12:12 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: fix #4372
+
+2003-08-28 11:43 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/ctxhelp.pm: - put ctxhelp modules to prevent broken
+ drakx build
+
+2003-08-28 10:14 Fançois Pons
+
+ * perl-install/share/compssUsers: make selected=all by default (so
+ that RC1 (in meta_class=download will see them)
+
+2003-08-28 09:25 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: removed linuxconf and gnome-network
+
+2003-08-28 00:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: fix pot regeneration at package build time
+
+2003-08-28 00:07 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/he.po: updated Hebrew file
+
+2003-08-27 23:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/cups.pm: fix pot regeneration at package
+ build time
+
+2003-08-27 23:51 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/hu.po: updated Hungarian file
+
+2003-08-27 23:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-4mdk
+
+2003-08-27 22:29 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nl.po: updated po file
+
+2003-08-27 20:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nb.po: updated Norwegian file
+
+2003-08-27 20:34 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: updated
+
+2003-08-27 20:19 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: fix firmware name (shame on me)
+
+2003-08-27 20:15 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: fix #4363 (titi's so beautiful)
+
+2003-08-27 19:23 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakbug: - help connects to
+ qa.mandrakesoft.com
+
+2003-08-27 19:20 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - new drakhelp args
+
+2003-08-27 19:16 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cs.po: updated Czech file
+
+2003-08-27 19:11 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/harddrake2: - new drakhelp args
+
+2003-08-27 19:06 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakbackup: - new drakhelp args
+
+2003-08-27 19:06 Nicolas Planel <nplanel at mandriva.com>
+
+ * perl-install/install_steps.pm: fixup last hack
+
+2003-08-27 19:04 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/diskdrake: - new drakhelp call schema
+
+2003-08-27 18:53 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakhelp: - perl-checker
+
+2003-08-27 18:36 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po,
+ sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po,
+ th.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
+ zh_TW.po: updated pot file
+
+2003-08-27 18:26 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/cups.pm: Added lpstat_lpv() function to list
+ remotely defined printers with description and location.
+
+2003-08-27 18:24 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: Determine default printer already
+ when reading in the queue data, this is much faster than running
+ "foomatic-configure" a second time.
+
+2003-08-27 17:43 Nicolas Planel <nplanel at mandriva.com>
+
+ * make_boot_img, perl-install/any.pm,
+ perl-install/install_steps.pm: Now acpi=ht to prevent HT
+ detection only
+
+2003-08-27 17:26 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakhelp: - New drakhelp to increase
+ accuracy in help system - contextual help
+
+2003-08-27 16:37 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nb.po: updated Norwegian file
+
+2003-08-27 16:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/v4l.pm: resync with current bttv card and
+ tuner lists
+
+2003-08-27 15:56 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fa.po, pt.po, sq.po, uk.po: updated
+ Farsi, Portuguese, Albanian and Ukrainian files
+
+2003-08-27 15:44 Guillaume Cottenceau
+
+ * perl-install/install_interactive.pm: scandisk is not enough! you
+ can destroy your windows XP if you don't use chkdsk and then
+ ntfsresize is used on a buggy partition (drakx should detect it
+ via ntfsresize though), running chkdsk is *mandatory*
+
+2003-08-27 15:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: rename vbox2 as param_vbox
+
+2003-08-27 15:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: remove useless bbox8 (due to
+ use of std dialog button box)
+
+2003-08-27 15:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: get rid of useless/badly
+ named bbox0
+
+2003-08-27 15:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: rename combo1 as
+ profile_combo
+
+2003-08-27 15:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - fix hostname setting - set
+ hostname at the same time we apply dns changes, that is when one
+ ask to apply changes
+
+2003-08-27 12:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: let draconnect banner fit in french
+
+2003-08-27 11:24 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakboot: typo fix
+
+2003-08-27 02:51 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-08-27 00:15 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: current update
+
+2003-08-26 23:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/pt.po: updated Portuguese file
+
+2003-08-26 22:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: et.po, fi.po, hu.po, nb.po, sv.po:
+ updated Estonian, Finnish, Hungarian, Norwegian and Swedish files
+
+2003-08-26 18:01 Fançois Pons
+
+ * perl-install/install2.pm: alias meta_class=discovery with
+ meta_class=desktop
+
+2003-08-26 17:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-3mdk
+
+2003-08-26 17:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: hide profile in "internet
+ config" dialog if profiles are disabled
+
+2003-08-26 17:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix "Internet Connection
+ Configuration" dialog does not show up its contents
+
+2003-08-26 17:50 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po,
+ sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po,
+ th.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
+ zh_TW.po: updated pot file
+
+2003-08-26 17:42 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/fonts.tar.bz2: updated Nimbus Sans font with
+ more cyrillic glyphs
+
+2003-08-26 17:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: updated list of available kde-i18n-xx
+ packages
+
+2003-08-26 17:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: rename --gui option as
+ --skip-wizard option on interface team request
+
+2003-08-26 17:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: only write conf & install
+ packages on exit (Ok press) if something really has been altered
+ so that we do not write the config twice if the user already
+ pressed the "apply" button
+
+2003-08-26 17:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - "Configure hostname..."
+ button: offer to configure DNS too - (configure_hostname) kill it
+ since it only duplicate code from network/*pm
+
+2003-08-26 16:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: fix pkg to install for
+ samba
+
+2003-08-26 16:16 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: et.po, hu.po, uk.po: updated Estonian,
+ Hungarian and Ukrainian files
+
+2003-08-26 16:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/i18n_compssUsers: adapt to new flag
+ [selected=...]
+
+2003-08-26 16:02 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakfont: fix buttons sensitive behavior
+
+2003-08-26 15:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: still more dialogs cleanups
+
+2003-08-26 15:45 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/pixmaps/printer-mdk.png: Updated icon for
+ printerdrake's dialog windows.
+
+2003-08-26 15:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: add --gui in order to start
+ in "mcc" state (aka not in wizard mode)
+
+2003-08-26 15:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: more dialog misusage and
+ some indent fixes
+
+2003-08-26 15:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: enfore gc style for gtk+2
+ widgets creation
+
+2003-08-26 15:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: more layout fixes: cance/ok
+ order coherency, no VBoxes/HButtonBoxes abuses, ...
+
+2003-08-26 15:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (configure_net) Gtk2::Dialog
+ main area is already a vbox, so it's useless to pack a vbox there
+ idem for action area and Gtk2::HButtonBox
+
+2003-08-26 15:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (get_intf_status) kill
+ duplicate
+
+2003-08-26 15:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: net & lan configuration
+ dialogs: prevent one to do concurrent config changes from the gui
+
+2003-08-26 15:18 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: drop security level
+ selection for desktop user.
+
+2003-08-26 15:16 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: do not ask user for
+ group selection if desktop meta class is used.
+
+2003-08-26 15:14 Fançois Pons
+
+ * perl-install/share/compssUsers.desktop: added [selected=desktop]
+ when needed (same as default selection (PowerPack) but Gnome is
+ removed).
+
+2003-08-26 15:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (sensitive_buttons) fix it
+
+2003-08-26 15:11 Fançois Pons
+
+ * perl-install/share/compssUsers.server: added [selected=server]
+ for groups to be selected by default.
+
+2003-08-26 15:10 Fançois Pons
+
+ * perl-install/share/compssUsers: added [selected=default] for all
+ section which needed to be selected (approximative map of
+ existing packages).
+
+2003-08-26 15:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - only allow to run one
+ wizard at once (insensitive button if one is already started) -
+ reload the configuration once the wizard exited - prevent one to
+ do concurrent config changes from the gui while the wizard is
+ run (proper fix involve both fix modality/transcientness when
+ embedded and running the wizard within the same process instead
+ of forking it]
+
+2003-08-26 15:08 Fançois Pons
+
+ * perl-install/pkgs.pm: get selected list from compssUsers for
+ readCompssUsers.
+
+2003-08-26 15:07 Fançois Pons
+
+ * perl-install/install_any.pm: added default compssUsers group
+ selection from compssUser file directly (use [selected=...] where
+ ... is a list of comma separated meta_class (or default for no
+ meta_class or all for all meta_class). fixed all radeon card are
+ using 3D for 3D package group.
+
+2003-08-26 14:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: install "autofs" pkg when using ldap (thanks
+ to Buchan Milne)
+
+2003-08-26 14:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: more last bits for 9.2-2mdk for
+ lord pixel
+
+2003-08-26 14:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: use fs=ext2:vfat or fs=udf:iso9600 for
+ supermount (it needs supermount-ng)
+
+2003-08-26 14:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/keyboard.pm: - don't set XkbCompat to group_led,
+ it's better to use grp_led:scroll in XkbOptions
+
+ - also set compose:rwin if GRP_TOGGLE is not rwin_toggle.
+ rationale:
+
+ Also, for multilayout keyboards, it would be nice to
+ also
+ in XkbOptions "compose:rwin" to define the right
+ windows
+ key as the compose key (unless "rwin_toggle" has been
+ choosen to toggle the layouts) "compose:rwin" is the
+ default when loading a single latin layout, but is lost
+ when loading several layouts...
+
+2003-08-26 14:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-2mdk
+
+2003-08-26 13:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: harddrake/sound.pm, standalone/service_harddrake:
+ while bootstrapping, only write /etc/modules.conf only if we
+ really altered it (thus preventing depmod to be runned everytime)
+
+2003-08-26 13:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: (add_alias) override current setting
+ when adding an alias
+
+2003-08-26 13:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: explain data struct
+
+2003-08-26 12:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/diskdrake: do embed WebDAV configuration
+ (fix bug #4703)
+
+2003-08-26 12:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/dav.pm: focus_first on the webdav server
+ field
+
+2003-08-26 02:32 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: If an HPOJ-controlled HP MF device
+ on a parallel port has an URI with model reference (and not port
+ number) tell at least in the menues that it is on a parallel
+ port.
+
+2003-08-26 02:10 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Let names of automatically
+ generated queues not contain the word "Series".
+
+2003-08-26 01:15 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: cups.pm, main.pm, printerdrake.pm:
+ Distinguish between printers "Configured on this machine" and
+ "Configured on other machines", not any more "Local Printers" and
+ "Remote Printers", so the current dialog is compatible to the new
+ GTK2 dialog.
+
+2003-08-26 00:38 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Modularized the function
+ main() to have separate subroutines for adding, setting as
+ default, editing, and removing a printer (for new main window).
+ - Cleaned up the code of the former function main(). -
+ Re-activated the wizard mode for adding a printer, it works
+ again!
+
+2003-08-25 20:51 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/fa.po: updated po file
+
+2003-08-25 18:56 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: update
+
+2003-08-25 18:11 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po,
+ sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po,
+ th.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
+ zh_TW.po: updated pot file
+
+2003-08-25 17:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: fix drakboot always showing
+ advanced stuff even when --expert was not passed
+
+2003-08-25 17:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-1mdk
+
+2003-08-25 17:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update french translation
+
+2003-08-25 15:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix drakconnect not working
+ on console (found by poulpy) due to having killed pre_func()
+ which used to set a background pixmap in the old days, thus the
+ bogus test that went in.
+
+2003-08-25 15:16 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-08-25 14:43 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: Fixed recognition of installed
+ parallel HPOJ-driven MF devices.
+
+2003-08-25 13:54 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Add /etc/modules for local
+ hardware config.
+
+2003-08-25 13:00 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm: Removed use of "parport_probe",
+ we do not need to support kernel 2.2.x any more.
+
+2003-08-25 12:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: this tool really is gtk2
+ ported, so do not trash languages not handled by gtk+-1.x
+
+2003-08-24 23:22 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: Adapted version mark in HPOJ config
+ files to the current HPOJ.
+
+2003-08-24 23:18 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Made the HP DeskJet 450
+ really being recognized as a printer needing HPOJ.
+
+2003-08-24 21:04 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Added HP DeskJet 450 to the
+ models which need HPOJ.
+
+2003-08-24 15:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: require a perl-Gtk2 that properly
+ handle perl exceptions in gtk+ callbacks
+
+2003-08-24 13:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: eu.po, fa.po, hu.po, uk.po, zh_CN.po:
+ updated Basque, Farsi, Hungarian, Ukrainian and Chinese files
+
+2003-08-24 13:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: typo fix
+
+2003-08-24 02:47 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: - Fixed
+ expert/normal mode switch (it will perhaps be removed, but a
+ working switch makes the further development easier). - Added
+ connectionstr() function which produces a human-readable string
+ for the connection type, needed for new main window. - Added
+ missing parantheses (there was a warning complaining about this).
+
+2003-08-24 01:04 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po,
+ sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po,
+ th.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
+ zh_TW.po: updated pot file
+
+2003-08-24 00:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: rename $treeModel as $model
+ since it really is a ListModel, not a TreeModel anymore
+ (cosmetic)
+
+2003-08-24 00:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.35mdk
+
+2003-08-24 00:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: - disable up button when
+ selected rule is the first one - disable down button when
+ selected rule is the latest one or when next rule is non
+ editable
+
+2003-08-23 23:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: always add newly created
+ setting at top of editable settings so that we're we can sort
+ them since they're no non editable items between old & new
+ editable ones
+
+2003-08-23 23:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: once we start to alter settings
+ ordering, we need to save it on exit; so just tell it to drakperm
+
+2003-08-23 23:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: - fix gtk bug on moving down
+ line - merge moving up & down callbacks - we do not have a
+ hierarchy, so just use a s/tree/list/
+
+2003-08-23 21:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: a few more translations
+
+2003-08-23 21:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/icons/non-editable.png: add new icon for
+ drakperm
+
+2003-08-23 21:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.34mdk
+
+2003-08-23 21:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: translate last remaining non
+ translated languages with google help
+
+2003-08-23 20:01 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/handle_configs.pm: if_($A, $B) got extremely slow,
+ replaced by ( $A ? $B : () ).
+
+2003-08-23 19:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: as discussed with david, gc, laurent &
+ pixel early this week, since gtk+ dialogs are HIG-ed and since
+ most drakxtools' explicit gtk+ windows follow cancel/ok order for
+ now, let implicit windows (that is interactive written ones)
+ follow the same order in standalone mode.
+
+ after release, we'll have to make ugtk2 handle one more
+ abstractions, that is taking some buttons callbacks, add buttons
+ that have callbacks and pack them in kde or gnome order depending
+ of interface team decision or maybe of runtime detection of
+ desktop.
+
+2003-08-23 14:22 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: eu.po, hu.po, zh_CN.po: updated Basque,
+ Hungarian and Chinese files
+
+2003-08-23 10:31 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2003-08-23 08:02 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: updated
+
+2003-08-22 22:26 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm: Adapted to scli 0.2.12.
+
+2003-08-22 22:23 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: Support for the
+ new "ptal://..." (two slashes) URIs of the new HPOJ.
+
+2003-08-22 19:47 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nb.po: updated Norwegian file
+
+2003-08-22 19:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: renew drakperm gui (interface
+ team feedback): - indicate if current setting is editable or not
+ - only display current security level, editable settings or both
+
+2003-08-22 17:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: translate default value in help
+ tooltips too
+
+2003-08-22 16:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update french translation
+
+2003-08-22 16:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: minor fix (due to ala latex format
+ used in draksec)
+
+2003-08-22 16:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update french translation
+
+2003-08-22 16:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: offer samba in services
+ list
+
+2003-08-22 16:15 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ru.po: updated Russian file
+
+2003-08-22 14:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (ask_fromW) split $set_advanced
+ into $set_advanced and $set_advanced_raw to fix drakconnect
+ "failling" to detect network interfaces in standalone mode when
+ in expert mode
+
+2003-08-22 14:41 Guillaume Cottenceau
+
+ * perl-install/interactive/gtk.pm: fix keyboard browsing in
+ treeviews not always centering on selected row (workaround gtk2
+ bug not honouring centering on the given row if node was closed
+ by updating ui before requesting the scrolling to the cell)
+
+2003-08-22 14:26 Guillaume Cottenceau
+
+ * perl-install/share/po/fr.po: fix titi
+
+2003-08-22 14:21 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: updated Spanish translations
+
+2003-08-22 13:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update french translation
+
+2003-08-22 13:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update french translation
+
+2003-08-22 13:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: translate draksec main label
+
+2003-08-22 12:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: ugtk2.pm, standalone/draksec: CJK fixes: use newly
+ introduced Gtk2::WrappedLabel package
+
+2003-08-22 12:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: introduce Gtk2::WrappedLabel to factorize
+ fixed labels for CJK languages
+
+2003-08-22 12:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (gtkset_line_wrap) export it
+
+2003-08-22 12:08 Guillaume Cottenceau
+
+ * tools/cvslog2changelog.pl: add erwan
+
+2003-08-22 12:03 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: use "Sans" as default font name
+
+2003-08-22 12:00 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cs.po: updated po file
+
+2003-08-22 11:19 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: typo fix s/succeed/succeeded/
+
+2003-08-22 02:24 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po,
+ sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po,
+ th.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
+ zh_TW.po: updated pot file
+
+2003-08-22 02:04 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: fix crash on file select of
+ "Other" finish custom cron configuration - normal users can now
+ do cron backups
+
+2003-08-22 00:45 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/network/adsl.pm: s/alcatel/Alcatel/
+
+2003-08-21 23:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: - (gtkset_line_wrap) introduce a
+ Gtk2::Label wrapper for set_line_wrap()
+
+ - (create_box_with_title) o factorize label creation o fix
+ label wrongly wrap cjk languages by enabling its wrapping
+ (real bugs is that GtkLabel does not really know its geometry:
+ see gtk+ bugs #118045, #118046, #101968 and #104188)
+
+2003-08-21 20:26 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: - more use info in
+ load_firmware_floppy - catch no floppy in drive error - catch
+ wizcancel - add '-e 1' pppoa option for speedtouch USB - N_
+ instead of N, won't translate twice (guillaume has the greatest
+ member)
+
+2003-08-21 20:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: workaround gtk bug #118047
+
+2003-08-21 20:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: have bootsplash also for smp &
+ enterprise kernels
+
+2003-08-21 19:46 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-08-21 19:17 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cs.po: updated Czech file
+
+2003-08-21 19:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: typo fixes from Arpad Biro
+
+2003-08-21 19:10 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/zh_CN.po: updated Chinese file
+
+2003-08-21 19:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: only access $::o->{mouse}{unsafe} during
+ install
+
+2003-08-21 19:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: don't care if insmod'ing ohci1394 fail
+ (bug #1972)
+
+2003-08-21 19:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/draksec: fix english (thanks to Reinout
+ van Schouwen)
+
+2003-08-21 18:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/resize_ntfs.pm: display the error returned
+ by ntfsresize (need i18n though)
+
+2003-08-21 18:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: standalone.pm, ugtk2.pm: move ugtk2 related
+ language fixes into ugtk2 jail
+
+2003-08-21 18:31 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/modem.pm: fix no winmodem message/behavior
+
+2003-08-21 18:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/fr.po: updated French file
+
+2003-08-21 18:19 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nl.po: updated Dutch file
+
+2003-08-21 17:52 Guillaume Cottenceau
+
+ * mdk-stage1/pcmcia_/merge_from_pcitable: also display probe.c
+ entries that are completely missing from pcitable
+
+2003-08-21 17:35 Guillaume Cottenceau
+
+ * mdk-stage1/pcmcia_/probe.c: 0x1524 0x1411 is a yenta_socket on
+ Asus Pundit machine (laurent at pschit.net)
+
+2003-08-21 17:25 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: - strip_modules on every arch - discard
+ error messages (there are normal and ugly)
+
+2003-08-21 17:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: no need for NC(), doing it in translate()
+ in any case
+
+2003-08-21 17:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: don't propose XF3 when $force_xf4
+
+2003-08-21 17:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: fix typo ($::force_xf4 doesn't
+ exist anymore)
+
+2003-08-21 17:17 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po,
+ sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po,
+ th.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
+ zh_TW.po: updated pot file
+
+2003-08-21 17:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: when umount fails, try killing fam and trying
+ again
+
+2003-08-21 17:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.33mdk
+
+2003-08-21 16:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone.pm: set $::o in standalone mode too
+ (because of guillaume fixes for "pango vs cjk" match)
+
+2003-08-21 16:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: chinese badly wrap with labels too
+
+2003-08-21 16:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/test.pm: fix typo
+
+2003-08-21 16:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table.pm: - fix call to openit() - replace
+ *F with $F
+
+2003-08-21 16:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/test.pm: - use $TMPDIR before using
+ $HOME/tmp - if $HOME doesn't exist, it will use /tmp which is
+ safe when using secured_file()
+
+2003-08-21 16:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakxtv: only offer to configure xawtv if
+ bttv was configured
+
+2003-08-21 16:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/v4l.pm: return ok/cancel state
+
+2003-08-21 16:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakxtv: fix warnings with diagnostics
+ pragma
+
+2003-08-21 16:00 Fançois Pons
+
+ * isolinux-graphic.bmp: 9.2 pictures from LN
+
+2003-08-21 15:59 Fançois Pons
+
+ * make_boot_img: updated with newer pictures of 9.2.
+
+2003-08-21 15:34 Guillaume Cottenceau
+
+ * perl-install/share/rpmsrate: s/freeciv/freeciv-client/
+
+2003-08-21 15:29 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: - allow user to copy firmware from
+ a floppy - fix 'previous' behavior - change wrong url
+
+2003-08-21 15:25 Fançois Pons
+
+ * perl-install/pkgs.pm: use perl-URPM 0.94
+
+2003-08-21 15:25 Fançois Pons
+
+ * perl-install/install_any.pm: updated with new perl-URPM 0.94
+ (simplified code)
+
+2003-08-21 15:18 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/share/po/: af.po, ar.po, az.po, be.po, bg.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, ga.po, gl.po, he.po, hr.po, hu.po,
+ id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po, mt.po, nb.po,
+ nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po,
+ sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po,
+ uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: fix firmware
+ url
+
+2003-08-21 14:17 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: updated to current pot
+
+2003-08-21 14:13 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/logdrake: Changed back NC() to N()
+ (functionality will be merged)
+
+2003-08-21 13:57 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/drakbackup: fixed English typos
+
+2003-08-21 13:30 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/common.pm: perl_checker complain avout using N(@_)
+ so NC() has been rewritten as a duplicate of N() plus one line
+
+2003-08-21 13:15 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: common.pm, standalone/logdrake: definition and use
+ of an NC() function (translation with context, kde like)
+
+2003-08-21 13:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: the scrolled text is correctly sized, so
+ do not let it compete with the options box and the advanced box
+ for availlable space
+
+2003-08-21 12:01 Fançois Pons
+
+ * perl-install/install_any.pm: avoid 0 to be dumped in urpmi.cfg :(
+
+2003-08-21 11:46 Fançois Pons
+
+ * perl-install/pkgs.pm: really fixed bad content generated.
+
+2003-08-21 11:31 Fançois Pons
+
+ * perl-install/pkgs.pm: fixed next key block not taken into
+ accound.
+
+2003-08-21 11:27 Fançois Pons
+
+ * perl-install/install_any.pm: added some log when importing pbukey
+ block and when key id have been found.
+
+2003-08-21 10:58 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates soft/GtkMdkWidgets/po/da.po
+ soft/mdkkdm/po/da.po soft/urpmi/po/da.po soft/userdrake2/po/da.po
+ gi/perl-install/share/po/da.po
+
+2003-08-21 10:36 Fançois Pons
+
+ * perl-install/install_any.pm: make sure other key are added to
+ urpmi.cfg when imported.
+
+2003-08-21 03:26 Pixel <pixel at mandriva.com>
+
+ * kernel/modules.pl: of course newly added module pdc-ultra doesn't
+ fit on hd.img :-/
+
+2003-08-21 02:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: simplify
+
+2003-08-21 02:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: allocatePartitions() resulted in a small
+ unallocated area at the end of the drive when: - suggest_part()
+ reserves some room for the other partitions which are going to be
+ added next. For maxsize limited partition, it reserves maxsize
+ (if maxsize is reached) - suggest_part() which adds the last
+ partition limited by maxsize can be called on a partition a
+ little bigger than maxsize due to cylinder boundary adjustments
+ on previous partition creations. In that case, it doesn't use the
+ full area.
+
+ It occured for example with the current
+ $fsedit::suggestions{server}.
+
+ The fix chosen is to ensure the last suggest_part() is called
+ with a size defined as maxsize <= size < maxsize + cylinder_size.
+
+2003-08-21 00:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/security/l10n.pm: fix english (thanks to Arpad Biro)
+
+2003-08-20 23:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: fix english (thanks to Arpad Biro)
+
+2003-08-20 20:55 Fançois Pons
+
+ * perl-install/install_any.pm: added missing require.
+
+2003-08-20 20:54 Fançois Pons
+
+ * perl-install/Xconfig/parse.pm: fix bug 3976.
+
+2003-08-20 20:53 Fançois Pons
+
+ * perl-install/install_any.pm: added pubkey and rpmdb key
+ importation.
+
+2003-08-20 20:50 Fançois Pons
+
+ * perl-install/mouse.pm: added emulate wheel support (a bit hacky
+ though) (bug 3976)
+
+2003-08-20 20:48 Fançois Pons
+
+ * perl-install/pkgs.pm: added pubkey support for medium.
+
+2003-08-20 20:42 Fançois Pons
+
+ * perl-install/share/list: added URPM::Signature module needed to
+ parse pubkey and import them to rpmdb.
+
+2003-08-20 19:59 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-08-20 19:43 Guillaume Cottenceau
+
+ * tools/make_lang_png_transparent.c: this file allows to make an
+ antialiased black-on-white png, antialiased black-on-transparent
+ it's used for perl-install/pixmaps/langs/lang-*.png
+
+2003-08-20 19:40 Guillaume Cottenceau
+
+ * perl-install/pixmaps/langs/: lang-as.png, lang-gu.png,
+ lang-ku.png, lang-li.png, lang-ml.png, lang-mr.png, lang-ne.png,
+ lang-se.png, lang-ss.png, lang-st.png, lang-te.png, lang-uz.png,
+ lang-uz@Cyrl.png, lang-ve.png, lang-xh.png, lang-zu.png: make
+ them transparent
+
+2003-08-20 18:27 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/c/smp.c: Use x86 smp detection scheme on amd64
+ instead of the ugly dmesg workaround.
+
+2003-08-20 18:24 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/strip_modules: Add strip_modules script
+
+2003-08-20 18:12 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * Makefile, make_boot_img, kernel/check_mar.pl,
+ kernel/list_modules.pm, kernel/modules.pl, kernel/update_kernel:
+ - Strip modules on AMD64 with K. O. script - Split
+ network_gigabit_usb.img into network_{gigabit,usb}.img on AMD64
+
+2003-08-20 17:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone.pm: frederic crozat said that border is
+ ugly for standalone tools. so let it be used only by install.
+
+2003-08-20 17:45 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: keyboard.pm, share/keyboards.tar.bz2: Added choice
+ of Irish keyboard; updated the Georgian "latin layout" one.
+
+2003-08-20 16:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: standalone wizards: increase height to
+ prevent some hidden or cutted buttons (some locales and some
+ steps may still be partially hidden)
+
+2003-08-20 16:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: annotate load for translators
+ (Arpad Biro)
+
+2003-08-20 16:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: only complain if an error
+ really happened
+
+2003-08-20 15:58 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/Makefile: Use busybox in stage2 on AMD64
+
+2003-08-20 15:55 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * tools/x86_64/busybox: Add busybox/amd64 compiled with dietlibc
+
+2003-08-20 14:23 Guillaume Cottenceau
+
+ * perl-install/share/fonts.tar.bz2: re-put etc/fonts/fonts.conf,
+ pablo removed it in previous commit, it broke the whole
+ installation program starting up :)
+
+2003-08-20 13:07 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/: drakTermServ, drakbackup: Text typos -
+ Arpad Biro
+
+2003-08-20 12:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix #4787
+
+2003-08-20 12:23 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/pcmcia_/cardmgr.c: Use "%p" specifier as "Base" is
+ likely to be an address.
+
+2003-08-20 12:12 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/ppp/pppd/sys-linux.c: Use <net/if_arp.h> thusly
+ bypassing need for <linux/byteorder/generic.h>
+
+2003-08-20 11:55 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * Makefile: Fix typo in last-minute-change commit
+
+2003-08-20 09:37 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/share/rpmsrate: Decreasing weight of pbs (pro),
+ Increasing weight of ScalablePBS & Maui
+
+2003-08-20 08:20 Stefan Siegel <siegel at linux-mandrake.com>
+
+ * perl-install/share/po/de.po: updates
+
+2003-08-20 07:25 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
+ tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
+ zh_TW.po: updated pot file
+
+2003-08-20 05:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/it.po: updated Italian file
+
+2003-08-20 03:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps.pm, install_steps_interactive.pm,
+ modules.pm: load detected firewire modules during install
+
+2003-08-20 02:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: add firewire_probe() and use it
+ in probeall()
+
+2003-08-20 01:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules/interactive.pm: do translate choices
+ N_("Yes"), N_("No"), N_("See hardware info") (thanks to Arpad
+ Biro)
+
+2003-08-20 00:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: help perl_checker somewhat
+
+2003-08-20 00:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: logdrake, drakconnect: mark one more
+ string as translatable (spoted by Arpad Biro)
+
+2003-08-20 00:24 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates soft/rpmdrake/po/da.po
+ gi/perl-install/share/po/da.po soft/bootsplash/po/da.po
+
+2003-08-20 00:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: translate one more string
+ (already translated as this is a double)
+
+2003-08-19 23:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: first bits of 9.2-0.32mdk
+
+2003-08-19 23:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: commands.pm, detect_devices.pm, c/stuff.xs.pl: pci
+ hardware discovery: do full-probe by default
+
+2003-08-19 23:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: readd LANGUAGE=C
+
+2003-08-19 23:14 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/fa.po: updated Farsi file
+
+2003-08-19 23:13 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/fonts.tar.bz2: Updated Nimbus Sans L font
+ (some wrong cyrillic glyphs fixed by Mashrab Kuvatov
+ <kmashrab@uni-bremen.de>)
+
+2003-08-19 22:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_steps.pm: fix brown paper bug #4702 ...
+
+2003-08-19 22:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: pablo say that redefining
+ LC_* is useless if LC_ALL is defined as the later overrides and
+ take priority over the former
+
+2003-08-19 21:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: remove broken and unused gtkexpand()
+
+2003-08-19 21:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/: detect_devices.pm, modules.pm, mouse.pm,
+ harddrake/data.pm, modules/interactive.pm, standalone/draksound,
+ standalone/drakxtv: full pci probe does not freeze anymore,
+ removing code work-arounding the freeze
+
+2003-08-19 21:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/: pkgs.pm, standalone/drakautoinst,
+ standalone/drakhelp, standalone/drakperm: perl_checker compliance
+
+2003-08-19 21:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: remove unused variable
+
+2003-08-19 21:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/adduserdrake: fix
+ any::write_passwd_user() call
+
+2003-08-19 20:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: add perl_checker hint
+
+2003-08-19 20:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakpxe: "xxx or xxx" in list context is
+ always bad!
+
+2003-08-19 20:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/netconnect.pm: perl_checker compliance
+ (revert non usefull titi change)
+
+2003-08-19 20:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (update_intbutt) consolidate
+ internet connection button switch code
+
+2003-08-19 19:08 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Partially updated
+
+2003-08-19 18:44 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/any.pm: Merge from AMD64 branch: lib64 fixes
+
+2003-08-19 18:42 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/update_kernel: Merge from AMD64 branch
+
+2003-08-19 18:41 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * Makefile, make_boot_img: Merge from AMD64 branch, also fix
+ all.rdz generation.
+
+2003-08-19 18:36 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/fsedit.pm: Handle /boot/efi as an EFI partition
+
+2003-08-19 18:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - use real known interface
+ name everywhere not guessed one (having eth0 and eth9 would
+ resulting in displaying eth0 & eth1 before), thus enabling to
+ get rid of get_eth_ip()
+
+ - replace build_list() by update_list() that fix flicker on list
+ update: only add/remove added/removed interfaces, just update
+ fields for others
+
+2003-08-19 18:23 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/: list.ia64, list.x86_64: AMD64 updates for
+ 9.2
+
+2003-08-19 18:21 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/list: lib64 fixes. Make sure we grab Gtk2.pm
+
+2003-08-19 18:21 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/: Xconfig/card.pm, install_steps_gtk.pm: Use xf4 on
+ AMD64 too
+
+2003-08-19 18:20 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/install_any.pm: - Don't care about BIGMEM stuff for
+ IA-64 & AMD64 - Handle platforms that are only aware of all.img
+
+2003-08-19 18:17 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/fs.pm: Handle EFI partitions. umount syscall does
+ not exist on AMD64, use umount2
+
+2003-08-19 18:17 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/partition_table.pm: - Merge in AMD64 tree - Handle
+ EFI partitions on IA-64
+
+2003-08-19 18:15 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/Makefile: Only build mar when needed
+
+2003-08-19 17:34 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/tools.pm: fix internet reconnection in mcc
+
+2003-08-19 17:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: add resume=/dev/XXX where /dev/XXX
+ is the swap partition (when the swap partition is bigger than ram
+ size)
+
+2003-08-19 17:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: show advanced options by default
+ if --expert was passed or if expect checkbox was checked (#4353)
+
+2003-08-19 16:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/help.pm: new version from XML doc
+
+2003-08-19 16:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/help_xml2pm.pl: remove debug code
+
+2003-08-19 16:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/help_xml2pm.pl: adapt to new documentation
+ layout
+
+2003-08-19 15:58 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/install_any.pm: Fixing Nvidia detection.. Many were
+ missing due to wrong regexp
+
+2003-08-19 15:47 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ar.po, cs.po: updated Arabic and Czech
+ files
+
+2003-08-19 11:45 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/share/rpmsrate: Switching to ScalablePBS
+
+2003-08-19 10:57 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/ppp/pppd/utils.c: Fix varargs for AMD64
+
+2003-08-19 10:57 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/Makefile: Build ppp stuff on AMD64 too
+
+2003-08-19 10:00 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
+ tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
+ zh_TW.po: updated pot file
+
+2003-08-19 09:26 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: help.pm, standalone/drakbackup: Fixed typos
+
+2003-08-19 00:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.31mdk (aka do not forget
+ about killing poulpy)
+
+2003-08-19 00:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.30mdk
+
+2003-08-18 22:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/da.po: updated Danish file
+
+2003-08-18 21:46 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2003-08-18 21:25 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: updated with current pot
+
+2003-08-18 21:14 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: hu.po, id.po, it.po: updated pot file
+
+2003-08-18 20:16 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: Updates soft/menu-messages/da.po
+ soft/userdrake2/po/da.po gi/perl-install/share/po/da.po
+
+2003-08-18 20:09 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
+ tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
+ zh_TW.po: updated pot file
+
+2003-08-18 19:50 Pixel <pixel at mandriva.com>
+
+ * kernel/modules.pl: hd.img doesn't fit anymore, removing gdth
+ (chosen randomly)
+
+2003-08-18 18:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: typo fix
+
+2003-08-18 17:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: splitted too big text into
+ smaller chunks for translators
+
+2003-08-18 17:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/.perl_checker: - we do not use anymore perl-GTK -
+ let be able to parse ugtk2
+
+2003-08-18 16:52 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - fix up/down interface
+ detection - do not wipe out IP and NETMASK when "No ip" is filled
+ in - fix typo
+
+2003-08-18 15:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: display the right information
+ when no selected device
+
+2003-08-18 15:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: use new create_dialog api to
+ get better modal dialogs
+
+2003-08-18 15:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (_create_dialog, create_dialog) let
+ support the same api as new() and threat transient option
+
+2003-08-18 15:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: perl_checker fixes
+
+2003-08-18 14:38 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: progess -> progress typo
+
+2003-08-18 12:20 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cs.po, id.po, nb.po, uz.po, uz@Cyrl.po:
+ updated Czech, Indonesian, Norwegian and Uzbek files
+
+2003-08-18 10:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: sort modules and directories
+ in treeview
+
+2003-08-18 10:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: - fix long-standing broken
+ mkbootdisk call bug - btw fix the passing of mkinirtd arguments
+ to mkbootdisk
+
+2003-08-18 10:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: - save the modules list on
+ exit and restore it on load - simplify modules list managment btw
+ - consolidate some code in get_file_size()
+
+2003-08-18 10:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: try to be more user friendly:
+ - if no error, display a success message, then exit - on error,
+ instead of displaying the raw exit code that has no meaning for
+ the end user, display in red the log message of mkbootdisk -
+ remove insane expert button and so called expert frame
+
+2003-08-18 10:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (info_dialog) introduce another dialog
+ helper
+
+2003-08-18 10:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: make testing mode usefull for
+ debugging drakfloppy
+
+2003-08-18 10:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: isdn.pm, modem.pm, netconnect.pm: fix some
+ previous callback in drakconnect wizard mode
+
+2003-08-18 09:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: kill buggy and no more used gtkbuttonset()
+
+2003-08-18 09:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (configure_lan) fix crash on
+ interface enabling/disabling
+
+ (get_intf_status) factorize translations and use upcase initale
+
+2003-08-18 09:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: better message when no ip
+ (aka interface down or broken)
+
+2003-08-18 02:58 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: updated
+
+2003-08-18 01:05 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sv.po: updated Swedish file
+
+2003-08-17 22:26 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: es.po, hu.po, sk.po: updated Hungarian
+ file
+
+2003-08-17 22:07 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2003-08-17 19:59 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fa.po, hu.po: updated Farsi and Hungarian
+ files
+
+2003-08-17 16:52 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: allow hostname change in mcc
+ perl_checker
+
+2003-08-17 00:29 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/hu.po: updated Hungarian file
+
+2003-08-16 14:45 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-08-16 12:13 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: bg.po, et.po, eu.po, hu.po, sq.po, uz.po,
+ uz@Cyrl.po, zh_CN.po: updated Bulgarian, Estonian, Basque,
+ Hungarian, Albanian, Uzbek and Chinese
+
+2003-08-15 13:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
+ tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
+ zh_TW.po: updated pot file
+
+2003-08-14 21:04 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: update
+ gi/perl-install/share/po/da.po
+
+2003-08-14 17:59 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nl.po: updated Dutch file
+
+2003-08-14 16:48 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates soft/drakcronat/po/da.po
+ soft/rpmdrake/po/da.po soft/urpmi/po/da.po
+ gi/perl-install/share/po/da.po
+
+2003-08-14 13:16 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: Updates po/po/da.po
+ gi/perl-install/share/po/da.po
+
+2003-08-14 12:07 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: bg.po, nb.po: updated Bulgarian and
+ Norwegian files
+
+2003-08-14 04:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: in floppy_info(), check ioctl success
+ and use FDPOLLDRVSTAT (copied from kudzu code)
+
+2003-08-14 04:11 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: start user definable crontab
+ entry - sorry translators, new strings :(
+
+2003-08-14 04:09 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm: add kahlua and snd-ice1724
+
+2003-08-14 02:57 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
+ tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
+ zh_TW.po: updated Turkish file
+
+2003-08-14 01:40 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: fixed typo
+
+2003-08-13 22:36 Guillaume Cottenceau
+
+ * mdk-stage1/probing.c: full pci probe can't be run with
+ fopen/fread because we might read too many bytes. this was the
+ reason for freezes on some boxes from drakx, that may impact
+ stage1 also, so better change that.
+
+2003-08-13 22:14 Guillaume Cottenceau
+
+ * perl-install/: install_steps_interactive.pm, share/po/af.po,
+ share/po/ar.po, share/po/az.po, share/po/be.po, share/po/bg.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/ga.po,
+ share/po/gl.po, share/po/he.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/lt.po, share/po/lv.po, share/po/mt.po,
+ share/po/nb.po, share/po/nl.po, share/po/pl.po, share/po/pt.po,
+ share/po/pt_BR.po, share/po/ro.po, share/po/ru.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/tr.po, share/po/uk.po,
+ share/po/uz.po, share/po/uz@Cyrl.po, share/po/vi.po,
+ share/po/wa.po, share/po/zh_CN.po, share/po/zh_TW.po,
+ standalone/drakbackup, standalone/drakboot: some english typo
+ fixes thx to Arpad Biro
+
+2003-08-13 21:34 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: el.po, eo.po, es.po, et.po, eu.po, fa.po,
+ fi.po, fr.po, ga.po, gl.po, he.po, hr.po, hu.po, id.po, is.po,
+ it.po, ja.po, ko.po, lt.po, lv.po, mt.po, nb.po, nl.po, pl.po,
+ pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-08-13 19:50 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * rescue/: list, list.x86_64: Merge with amd64-branch (rpm libdir
+ is always /usr/lib/rpm, update lists)
+
+2003-08-13 19:01 Fançois Pons
+
+ * perl-install/install_any.pm: fixed to build an inflexion point in
+ list file (so that urpmi can found it).
+
+2003-08-13 18:45 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/Makefile: Use bash in stage2 on IA-64
+
+2003-08-13 18:44 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/Makefile: Fix merge from amd64-branch
+
+2003-08-13 18:42 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: az.po, be.po, bg.po, bs.po, ca.po, cs.po,
+ cy.po, da.po, de.po: updated pot file
+
+2003-08-13 18:31 Fançois Pons
+
+ * perl-install/install_any.pm: generate a list file if a macro is
+ used (and only in this case).
+
+2003-08-13 18:23 Fançois Pons
+
+ * perl-install/install_any.pm: fixed with_hdlist possibly
+ incorrect.
+
+2003-08-13 18:05 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: af.po, ar.po: updated pot file
+
+2003-08-13 17:56 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/DrakX.pot: updated pot file
+
+2003-08-13 17:40 Fançois Pons
+
+ * perl-install/install_any.pm: added tiny support for arch
+ dependant directory.
+
+2003-08-13 16:53 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix mcc lan changes (fix at
+ least #4088)
+
+2003-08-13 15:14 Fançois Pons
+
+ * perl-install/pkgs.pm: added log for checking deselection (check
+ deadlock unless gtk are doing them). workaround for rpmdb
+ problems of opening Conflictname and Triggername files.
+
+2003-08-13 14:31 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: corrected typo
+
+2003-08-13 14:12 Fançois Pons
+
+ * perl-install/standalone/drakpxe: fixed to match new pxe dhcp.conf
+ configuration file.
+
+2003-08-13 14:05 Fançois Pons
+
+ * perl-install/share/list.i386: updated with newer xfs_progs.
+
+2003-08-13 13:57 Fançois Pons
+
+ * rescue/list.i386: updated with xfs_progs.
+
+2003-08-13 12:49 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-08-13 07:33 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
+ tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
+ zh_TW.po: updated pot file
+
+2003-08-12 17:38 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cs.po: updated Czech file
+
+2003-08-12 17:32 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: medias -> media
+
+2003-08-12 15:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/smbnfs_gtk.pm: do pop the "do you want to
+ install samba?" (otherwise when cancel is pressed, drakconf
+ thinks the install exited abnormally since no window was embedded
+ whereas "diskdrake --smb" is normally embedded)
+
+2003-08-12 15:35 Guillaume Cottenceau
+
+ * perl-install/drakxtools.spec: drakxtools depends on gurpmi
+ (do_pkgs->install for example)
+
+2003-08-12 15:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: > During the installation when one chooses
+ Uzbek (latin) as a language the next
+ > installation stage comes in English. However, DrakX creates
+ > /usr/share/locale_special/uz/LC_MESSAGES/libDrakX.mo and
+ > /usr/share/locale/uz/LC_* files.
+
+ this comes from during_install__l2charset() returning UNICODE
+ which is not recognised.
+
+2003-08-12 15:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/gen_locales.sh: by the way, gen_locales.sh
+ makes an error because /usr/X11R6/lib/X11/locale/common doesn't
+ exist anymore. It used to contain
+
+ ximcp.so.2 xlcDef.so.2 xlcUTF8Load.so.2
+ xlibi18n.so.2 xlocale.so.2 xomGeneric.so.2
+
+ in mdk9.0, but mdk9.1 install was without it and it was ok...
+
+2003-08-12 14:13 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Mb -> MB [Bug 4381]
+
+2003-08-12 11:31 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cs.po: updated Czech file
+
+2003-08-12 08:54 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/he.po: updated Hebrew file
+
+2003-08-12 01:01 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: et.po, hu.po, nb.po: updated Estonian,
+ Hungarian and Norvegian files
+
+2003-08-11 21:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
+ tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
+ zh_TW.po: updated pot file
+
+2003-08-11 20:28 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Search for files to restore.
+ Fix looping signal_connect in catalog restore. GUI fixes -
+ Fabrice FACORAT.
+
+2003-08-11 17:37 Fançois Pons
+
+ * perl-install/share/rpmsrate: added bash-completion in TERMINALS
+ section.
+
+2003-08-11 17:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/XFdrake: more newbie-friendly message:
+ "You need to log out and back in again for changes to take
+ effect" instead of "Please relog into %s to activate the changes"
+ (as suggested on cooker, thanks!)
+
+2003-08-11 17:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/lvm.pm: fix typo (fix bug #4239)
+
+2003-08-11 15:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: perl_checker compliance
+
+2003-08-11 15:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_steps_interactive.pm: when
+ any::setupBootloader_simple() fail, use any::setupBootloader()
+ afterwards
+
+2003-08-11 15:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: sanitize_ver() can fail and return ''
+
+2003-08-11 04:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_gtk.pm, install_steps_interactive.pm,
+ scanner.pm, services.pm, ugtk2.pm, security/l10n.pm,
+ security/msec.pm: perl_checker compliance
+
+2003-08-11 04:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: why were c, pkgs and URPM::Resolve
+ excluded? i don't know, but that's much better when perl_checker
+ can see them
+
+2003-08-11 01:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, install_any.pm, install_steps.pm,
+ install_steps_interactive.pm, standalone/adduserdrake: use
+ $::prefix instead of passing $prefix to functions
+
+2003-08-10 23:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: since we wrote the password in
+ /etc/passwd, we must convert to shadow
+
+2003-08-10 23:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/: diskdrake/hd_gtk.pm, interactive/gtk.pm: use
+ Gtk2::Button->new_with_label instead of Gtk2::Button->new for
+ some widgets otherwise underscores become underlines (bug #4678)
+
+2003-08-10 22:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/netconnect.pm: perl_checker compliance
+
+2003-08-10 21:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/netconnect.pm: replace "Press \"Forward\" to
+ continue" with "Press \"%s\" to continue" (bug #4564)
+
+2003-08-10 16:48 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/bg.po: updated Bulgarian file
+
+2003-08-09 23:04 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sv.po: updated Swedish file
+
+2003-08-09 17:02 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/fa.po: updated Farsi file
+
+2003-08-08 23:46 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: Updates soft/control-center/po/da.po
+ soft/ftw/po/da.po soft/mdkhtmlbrowser/po/da.po
+ soft/rpmdrake/po/da.po soft/urpmi/po/da.po
+ soft/userdrake2/po/da.po gi/perl-install/share/po/da.po
+
+2003-08-08 19:09 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sq.po: updated Albanian file
+
+2003-08-08 12:51 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2003-08-08 12:18 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: add gtkset_alignment
+
+2003-08-08 10:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
+ tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
+ zh_TW.po: updated pot file
+
+2003-08-07 21:28 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Fix removed users code
+ (thanks gc). Enable .backupignore. Clean up spastic progress
+ bar. Add more info in "View Config"
+
+2003-08-07 18:27 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/he.po: updated Hebrew file
+
+2003-08-07 17:17 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Deal with users that are
+ deleted from the system [Bug 4541].
+
+2003-08-07 16:51 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/de.po: Small fix (too long string)
+
+2003-08-07 15:29 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-08-07 03:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: - drakxservices: xinetd services
+ have a special treatment - localedrake: fix the "zh_TW with
+ country China" case - no more stock icons
+
+2003-08-07 02:48 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: he.po, sv.po: updated Hebrew and Swedish
+ files
+
+2003-08-07 00:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/services.pm: in drakxservices, display differently
+ services handled by xinetd (bug #4516)
+
+2003-08-07 00:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/services.pm: create services_raw() which returns all
+ the info out of "chkconfig --list"
+
+2003-08-06 23:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/services.pm: perl_checker compliance
+
+2003-08-06 23:25 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Update (partially)
+
+2003-08-06 22:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: try to restore the MBR using "lilo -u" for
+ users not liking the default bootloader automatic configuration
+ (eg: bug #4415)
+
+2003-08-06 18:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/az.po: updated Azeri file
+
+2003-08-06 17:18 David Baudens <baudens at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: Use capital letter when
+ needed
+
+2003-08-06 15:03 Guillaume Cottenceau
+
+ * kernel/modules.pl: add gigabit ethernet modules in all.rdz as
+ well :/
+
+2003-08-06 01:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: it.po, sk.po: updated Italian file
+
+2003-08-05 21:48 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: Turkish "F" keyboard was unavailable
+ due to a typo
+
+2003-08-05 18:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: - fix system_locales_to_ourlocale()
+ returning { lang => 'zh' } for $locale_lang == 'zn_CN.UTF8' - in
+ standard_locale, return zh_TW instead of zh_CN for lang=zh_TW
+ country=CN - cleanup standard_locale
+
+2003-08-05 18:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: fix an old typo
+
+2003-08-05 18:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: add flag UTF8 for rpmsrate
+
+2003-08-05 17:38 Guillaume Cottenceau
+
+ * perl-install/lang.pm: ghanese ppl don't talk french!?
+
+2003-08-05 16:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: do not invert Ok/Cancel for mdk 9.2 (per
+ IHM team request)
+
+2003-08-05 16:11 Fançois Pons
+
+ * perl-install/pkgs.pm: checking transaction allow ordering them
+ ;-)
+
+2003-08-05 16:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/: services.pm, ugtk2.pm, Xconfig/main.pm,
+ Xconfig/resolution_and_depth.pm, diskdrake/hd_gtk.pm,
+ interactive/gtk.pm, standalone/drakbackup, standalone/drakboot,
+ standalone/drakbug, standalone/drakconnect,
+ standalone/drakfloppy, standalone/drakfont, standalone/drakgw,
+ standalone/drakperm, standalone/draksec, standalone/harddrake2,
+ standalone/logdrake, standalone/mousedrake,
+ standalone/net_monitor: remove stock icons (per IHM team request)
+
+2003-08-05 15:53 Fançois Pons
+
+ * perl-install/pkgs.pm: make default size of transaction to 13 (?)
+ and avoid rpm ordering which seems nasty at present (missing
+ configuration read ?).
+
+2003-08-05 15:41 Fançois Pons
+
+ * perl-install/install2.pm: added discovery and download meta_class
+ facility in VERSION file.
+
+2003-08-05 14:22 Fançois Pons
+
+ * perl-install/pkgs.pm: fixed ordering of packages.
+
+2003-08-05 14:12 Fançois Pons
+
+ * perl-install/pkgs.pm: fixed otherOnly for package selection not
+ correctly updated (according to changes in perl-URPM).
+
+2003-08-05 13:35 Guillaume Cottenceau
+
+ * perl-install/ftp.pm: revert my bad change
+
+2003-08-05 12:00 Guillaume Cottenceau
+
+ * perl-install/drakxtools.spec: commit titi's requested typos
+ changes
+
+2003-08-05 00:00 Guillaume Cottenceau
+
+ * perl-install/ftp.pm: don't have two / in the urpmi url or it
+ seems it causes problems for some people (some ftp servers?
+ wget/curl? proxy? no sé..)
+
+2003-08-04 23:43 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2003-08-04 20:26 Fançois Pons
+
+ * perl-install/pkgs.pm: added log.
+
+2003-08-04 20:06 Fançois Pons
+
+ * perl-install/pkgs.pm: updated with newer perl-URPM
+
+2003-08-04 18:59 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2003-08-04 17:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: fix ask_window_manager_to_logout for gnome
+
+2003-08-04 17:15 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/he.po: updated Hebrew file
+
+2003-08-04 17:15 Guillaume Cottenceau
+
+ * perl-install/drakxtools.spec: 9.2-0.27mdk
+
+2003-08-04 17:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: gc: commit pixel's 9.2-0.26mdk
+ changelog diff (pixel sux)
+
+2003-08-04 17:13 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: removed bad keyboard from list for
+ Swedish;
+
+2003-08-04 17:03 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: removed 'xh_ZA' in double in @locales
+
+2003-08-04 16:12 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-08-04 16:04 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: fix not possible to select with mouse
+ anymore (rpmdrake etc)
+
+2003-08-04 16:00 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: revert "use checkboxes instead of icons"
+
+2003-08-04 13:56 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/uk.po: updated Ukrainian file
+
+2003-08-04 12:15 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
+ tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po,
+ zh_TW.po: updated pot file
+
+2003-08-04 11:57 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: updated list of available locales
+
+2003-08-04 10:44 Warly <warly at mandriva.com>
+
+ * perl-install/share/logo-mandrake.png: Add new cooker logo for
+ installation
+
+2003-08-04 02:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: don't export destroy_window(), this
+ function doesn't exist! (thanks to perl_checker)
+
+2003-08-04 02:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: perl_checker compliance
+
+2003-08-04 02:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: disable selecting text and popping the
+ contextual menu (GUI team says it's *horrible* to be able to do
+ select text!)
+
+2003-08-04 01:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: OptionMenus do not have an
+ horizontal scroll-bar. This can cause havoc for long strings. So
+ use combo box as we used to do in those cases (eg: diskdrake
+ Create dialog box in expert mode) (bug #4484)
+
+2003-08-03 23:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: don't overwrite
+ $o->{bootloader}{method} (much nicer for auto_installs)
+
+2003-08-03 23:50 Pixel <pixel at mandriva.com>
+
+ * rescue/guessmounts: - copy /etc/mtab to /mnt/etc/mtab to have a
+ nice chrooted "mount" or "df" - some perl_checker compliance
+
+2003-08-03 23:48 Pixel <pixel at mandriva.com>
+
+ * rescue/make_rescue_img: fix /sbin/insmod /sbin/rmmod and
+ /sbin/lsmod which were dead symlinks (to
+ /etc/alternatives/something)
+
+2003-08-03 21:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: more complete name for
+ the setRootPassword step: "Set root password and network
+ authentication methods" instead of simply "Set root password"
+
+2003-08-03 16:40 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Tool tips.
+
+2003-08-03 15:49 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/fa.po: Added Farsi file
+
+2003-08-02 14:18 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sv.po: updated Swedish file
+
+2003-08-02 00:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/: pixmaps/langs/lang-as.png,
+ pixmaps/langs/lang-gu.png, pixmaps/langs/lang-ku.png,
+ pixmaps/langs/lang-li.png, drakxtools.spec,
+ pixmaps/langs/lang-ml.png, pixmaps/langs/lang-ne.png,
+ pixmaps/langs/lang-se.png, pixmaps/langs/lang-sr@Latn.png,
+ pixmaps/langs/lang-ss.png, pixmaps/langs/lang-st.png,
+ pixmaps/langs/lang-uz@Cyrl.png, pixmaps/langs/lang-ve.png,
+ pixmaps/langs/lang-xh.png, pixmaps/langs/lang-zu.png: re-adding
+ with -kb
+
+2003-08-02 00:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/pixmaps/langs/: lang-as.png, lang-gu.png,
+ lang-ku.png, lang-li.png, lang-ml.png, lang-ne.png, lang-se.png,
+ lang-sr@Latn.png, lang-ss.png, lang-st.png, lang-uz@Cyrl.png,
+ lang-ve.png, lang-xh.png, lang-zu.png: removing for re-adding
+ with -kb
+
+2003-08-02 00:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Makefile.config, drakxtools.spec,
+ standalone/drakauth: add drakauth
+
+2003-08-02 00:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, install2.pm, install_any.pm,
+ install_steps.pm, install_steps_interactive.pm, network/smb.pm: -
+ move write_smb_conf() from install_any to network::smb - rename
+ setAuthentication() to set_authentication() - move the work of
+ set_authentication() from install_any to any - move the
+ per-authentification kind questions from
+ install_steps_interactive::setRootPassword() to
+ any::ask_authentification_parameters() - various cleanup in code
+ prompting authentification questions - call
+ install_any::set_authentication() in
+ install_steps::setRootPassword() instead of waiting for the
+ installPackages step to be done (since setRootPassword occurs
+ *after* packages installation) - don't call
+ set_authentification() in install_steps::addUser() (why was
+ this done there??)
+
+ => these changes will allow drakauth
+
+2003-08-01 22:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, install_any.pm: use $::prefix
+
+2003-08-01 22:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/: parse.pm, xfree3.pm, xfree4.pm, xfreeX.pm:
+ => do as Chris Picton suggested
+
+ Chris Picton said (nearly one year ago :-/) :
+
+ I have found the need for many low res screen resolutions for
+ such thingas as movie playing, xmame, etc.
+
+ The method XFdrake uses to enable modes is to enumerate each mode
+ in the XF86Config file. For example (a newly created file):
+
+ Subsection "Display" Depth 24 Modes "1280x960" "1152x864"
+ "1024x768" "800x600" "640x480" EndSubsection
+
+ It would be better (at least under XFree 4, which automatically
+ provides resoltions from the monitor, if it is capable), to not
+ limit the modes provided to the user
+
+ If I use instead, the following:
+
+ Subsection "Display" Depth 24 Virtual 1280 960
+ EndSubsection
+
+ My maximum mode is exactly the same as before, but I have many
+ more low resolution modes.
+
+2003-08-01 22:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: printer::printerdrake is not
+ perl_checker compliant, don't pretend it is!
+
+2003-08-01 22:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/draksec: perl_checker compliance
+
+2003-08-01 22:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: s/head -1/head -n 1/
+
+ (am i the only one who thinks changing head's usage is really
+ stupid? well...)
+
+2003-08-01 22:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/smbnfs_gtk.pm: instead of removing the
+ "Search servers" button when the search is over, keep it to allow
+ searching for new servers (the label is changed from "Search
+ servers" to "Search new servers") (bug #4297)
+
+2003-08-01 22:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: don't warn when label is used
+ with no text for boot entries (i want titi's explaination on this
+ first)
+
+2003-08-01 22:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: replace signal_disconnect with
+ signal_handler_disconnect (needed for perl-gtk2-xs)
+
+2003-08-01 19:29 Frederic Crozat <fcrozat at mandriva.com>
+
+ * perl-install/share/rpmsrate: Add gnome calculator and charmap
+
+2003-08-01 18:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: Intel drivers don't need
+ DontVTSwitch anymore (dixit Arnaud de Lorbeau)
+
+2003-08-01 14:20 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/zh_CN.po: updated Chinese file
+
+2003-08-01 14:17 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/rpmsrate: Added locale->fonts-* dependencies
+
+2003-08-01 14:09 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: Added some more languages to the list;
+ defined kde fonts for some languages
+
+2003-08-01 12:40 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/pixmaps/langs/: lang-as.png, lang-gu.png,
+ lang-ku.png, lang-li.png, lang-ml.png, lang-mr.png, lang-ne.png,
+ lang-se.png, lang-sr@Latn.png, lang-ss.png, lang-st.png,
+ lang-te.png, lang-uz.png, lang-uz@Cyrl.png, lang-ve.png,
+ lang-xh.png, lang-zu.png: New/updated images with language names
+
+2003-08-01 10:27 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated po file
+
+2003-08-01 01:44 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po,
+ es.po, et.po, eu.po, fi.po, fr.po, ga.po, gl.po, he.po, hr.po,
+ hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po, mt.po,
+ nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po,
+ sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po:
+ updated pot file
+
+2003-07-31 19:46 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: UI issues from cooker list.
+ Push help off to drakhelp.
+
+2003-07-31 18:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: use "splash=silent" instead of
+ "quiet". kernel messages will still be written, but will be
+ hidden (can be seen if pressing F2 or escape at boot time)
+
+2003-07-31 18:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: - drakxtools-newt must not require
+ perl(interactive::gtk) or perl(ugtk2) - only drakbackup require
+ perl(Net::FTP) & perl(Time::localtime), i don't want this require
+ for all drakxtools. What about moving drakbackup to a separate
+ package?
+
+2003-07-31 16:43 Fançois Pons
+
+ * perl-install/install_steps.pm: added redo of initrd files for oem
+ changes to take effects for bootsplash...
+
+2003-07-31 15:25 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sv.po: updated Swedish file
+
+2003-07-31 14:41 Fançois Pons
+
+ * perl-install/install_steps.pm: fixed /usr/share/bootsplash
+ directory not created for images.
+
+2003-07-31 14:38 Fançois Pons
+
+ * perl-install/install_steps.pm: apply oem image modification to
+ bootsplash too.
+
+2003-07-31 10:59 Fançois Pons
+
+ * rescue/tree/etc/oem: make oem-all by default (obsoleted previous
+ oem)
+
+2003-07-30 19:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: perl_checker compliance
+
+2003-07-30 19:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: - cleanup debug code - use read_gnomekderc &
+ update_gnomekderc instead of getVarsFromSh & substInFile
+
+2003-07-30 17:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: fix typo
+
+2003-07-30 17:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps_interactive.pm, timezone.pm: -
+ cleanup - add pool.ntp.org (and make it the default) (cf bug
+ #4197)
+
+2003-07-30 16:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: Aurora doesn't exist anymore (and
+ it's been that way for quite a few time)
+
+2003-07-30 16:15 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: removed remaining code
+ of eval (eq nop).
+
+2003-07-30 15:59 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: remove eval around
+ choosePackagesTree as it display something even if it doesn't
+ run...
+
+2003-07-30 15:56 Fançois Pons
+
+ * perl-install/ugtk2.pm: intermediate commit to completely broken
+ ugtk2 for handling tree, in order for gc or pixel to fix this...
+
+2003-07-30 15:51 Fançois Pons
+
+ * perl-install/pkgs.pm: allow testing locally, should not avoid
+ pkgs to work in real place.
+
+2003-07-30 15:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/ethernet.pm: fix typo (thanks to
+ perl_checker)
+
+2003-07-30 15:30 Fançois Pons
+
+ * perl-install/interactive/gtk.pm: removed ugly code for scrollbars
+ as pixel has fixed it now.
+
+2003-07-30 14:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/ethernet.pm: cleanup (especially ensure
+ $interface is not something like "eth0 (using module ...)" but
+ only "eth0" (cf network/network.pm 1.130 nasty change)
+
+2003-07-30 14:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/network.pm: revert to 1.129: it's no good
+ removing " (using module ...)" from {DEVICE} field, it's much
+ better not having it in the first place. See network/ethernet.pm
+ v1.81 for the real fix
+
+2003-07-30 13:18 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-07-30 13:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/test.pm: - move from perl-GTK2 to perl-Gtk2
+ - fix an old weird typo
+
+2003-07-30 12:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: ensure "No details" is
+ displayed instead of "Details" when beginning a new package
+ installation round and "No details" was pressed in previous round
+
+2003-07-30 12:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: allow other=/dev/fd0 (bug #4405)
+
+2003-07-30 12:01 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cs.po, he.po, sq.po: updated Albanian,
+ Czech and Hebrew files
+
+2003-07-29 18:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: use formatError for the error message
+ occuring when auto_install.cfg is bad
+
+2003-07-29 16:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: labels are not able to correctly handle
+ long texts, so rollback to using TextView instead.
+
+ For information on this pb: - IHM team doesn't like TextView
+ because the text can be selected, and a contextual menu is
+ available - IHM team doesn't like the difference between small
+ text (using a Label) and longer text (using a TextView) - Label
+ can wrap automatically but not nicely (it doesn't use the full
+ width) - Label can't wrap CJK text which have no spaces
+
+ Apart from this Label vs TextView pb, Titi only left some code
+ which takes care of small text, causing the text to be wrapped
+ using warp_text (which is not proportional font aware) and not
+ using a scrolled window (causing the license to take more than
+ the screen, the buttons disappearing at the bottom of the screen)
+
+2003-07-29 16:14 Pixel <pixel at mandriva.com>
+
+ * docs/README: remove some really obsolete doc
+
+2003-07-29 16:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: there is no good url for
+ drakxtools, but at least don't give a broken one! (thanks to Raul
+ Dias)
+
+2003-07-29 15:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: re-export %fsedit::suggestions as needed
+ (why did titi my-ed it?) (fixes bug #4298)
+
+2003-07-29 15:16 Frederic Crozat <fcrozat at mandriva.com>
+
+ * perl-install/share/rpmsrate: Add vera font by default
+
+2003-07-29 14:56 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, da.po, sk.po, uz.po,
+ uz@Cyrl.po, wa.po, zh_CN.po: updated pot file
+
+2003-07-28 21:34 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2003-07-28 19:14 Fançois Pons
+
+ * rescue/list.ia64: moved xfs files (problably the same for ia64
+ ?).
+
+2003-07-28 19:13 Fançois Pons
+
+ * rescue/list.i386: moved xfs files.
+
+2003-07-28 19:13 Fançois Pons
+
+ * perl-install/share/list.i386: moved mkfs.xfs
+
+2003-07-28 15:27 Fançois Pons
+
+ * perl-install/interactive/gtk.pm: make sure the split of message
+ is done only in install mode, as standalone has no problem.
+
+2003-07-26 21:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ja.po, uk.po: updated Japanese and
+ Ukrainian files
+
+2003-07-26 15:49 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: small update
+ gi/perl-install/share/po/da.po
+
+2003-07-26 15:35 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: update! soft/menudrake/po/da.po
+ gi/perl-install/share/po/da.po
+
+2003-07-26 02:56 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: update
+ gi/perl-install/share/po/da.po
+
+2003-07-25 22:54 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: Updated Estonian file
+
+2003-07-25 19:26 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po,
+ es.po, et.po, eu.po, fi.po, fr.po, ga.po, gl.po, he.po, hr.po,
+ hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po, mt.po,
+ nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po,
+ sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po:
+ updated pot file
+
+2003-07-25 17:42 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/pixmaps/drakcluster.png: new icon, without
+ alpha-layer (unsupported under 9.0)
+
+2003-07-25 15:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.24mdk
+
+2003-07-25 15:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: work in progress (follow interface team
+ recommendation) : use checkboxes instead of ugly icon
+
+ inconsistent (aka semi-selected) state still need working
+
+ install caller must be fixed like rpmdrake is
+
+2003-07-25 14:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: fix crash on adding new
+ permission
+
+2003-07-25 11:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbug: use std button layout
+
+2003-07-25 11:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.24mdk: work in progress
+
+2003-07-25 11:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbug: use option menus instead of
+ combos in on interface team request
+
+2003-07-24 23:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: remove nonsense expert
+ button
+
+2003-07-24 23:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - (configure_lan) directly
+ use global variables - double click on ethernet lines run lan
+ config dialog
+
+2003-07-24 23:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2003-07-24 22:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: upcase label
+
+2003-07-24 22:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/mousedrake: use std button layout
+
+2003-07-24 22:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: fix #4258
+
+2003-07-24 22:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: bump perl-Gtk2 requires in order to
+ fix drakfont bug with utf8 file names
+
+2003-07-24 21:58 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Update
+
+2003-07-24 21:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.23mdk
+
+2003-07-24 21:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: since we've replace save
+ "button" by "ok", exit the tool after saving the preferences
+
+2003-07-24 21:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: fix tree filling
+
+2003-07-24 21:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: - ugtk2-ize dialog construction
+ - fix tip setting
+
+2003-07-24 20:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: localize level option menu
+
+2003-07-24 19:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: one more typo (still fabrice)
+
+2003-07-24 19:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: typo fix (spoted by Fabrice Facorat)
+
+2003-07-24 19:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/help.pm: better help
+
+2003-07-24 19:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: restore help for msec checks
+
+2003-07-24 19:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: draksec: requires a non broken msec
+
+2003-07-24 19:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/l10n.pm: describe
+
+2003-07-24 19:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/help.pm: - filter dumb characters - strip
+ help from internal msec doc so that it better fit end user
+
+2003-07-24 18:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.22mdk
+
+2003-07-24 18:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: settings dialog: - localize all
+ fields - add tips for all check boxes
+
+2003-07-24 18:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: use stock icons on rule toolbar
+
+2003-07-24 18:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: make label be undserstandable
+
+2003-07-24 18:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: follow english case
+
+2003-07-24 18:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: upcase various widget texts
+ (still have to localize settings dialog fields though)
+
+2003-07-24 18:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: simplify (un|)sensitive
+ property setting of the list
+
+2003-07-24 18:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: use option menus instead of
+ combos in settings dialog too
+
+2003-07-24 18:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: use stock icons and std button
+ layout in settings dialog
+
+2003-07-24 18:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: use option menus instead of
+ combos
+
+2003-07-24 18:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: if the callee explicitely want
+ to force the user to pick sg from a fixed set of options, the
+ right widget to use is an OptionMenu rather than a Combo (see
+ ugtk2 r1.141 log and ugtk2::Gtk2::OptionMenu sub-module)
+
+2003-07-24 17:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: - use option menus instead
+ of combos - fix crash on profile change due to netconnect api
+ change
+
+2003-07-24 16:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: hide splash screen section for
+ now on ihm team request
+
+2003-07-24 16:27 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: removed ncompress (contrib)
+
+2003-07-23 22:25 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: uz.po, uz@Cyrl.po: Added Uzbek cyrillic
+ file
+
+2003-07-23 21:30 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/he.po: fixed "arrows"
+
+2003-07-23 17:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: log drakfont fixes
+
+2003-07-23 17:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: fix #1679 & #3673
+
+2003-07-23 17:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.21mdk
+
+2003-07-23 16:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: we do not need anymore
+ autologin (spec87)
+
+2003-07-23 16:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: new autologin scheme (spec87): directly
+ configure display manager
+
+2003-07-23 14:55 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakhelp: - ru, de and it have no
+ specific drakxtools help packages. Default to english - retest
+ $$path to see if the page exists. - don't launch browser unless
+ help page exists.
+
+2003-07-23 02:37 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Fix catalog restore for
+ perl-Gtk2 Fix rsync behavior - broken in perl_checker fixes Fix
+ wildcard_to_tarfile
+
+2003-07-23 00:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakgw: disable service start/stop too in
+ testing mode
+
+2003-07-23 00:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakgw: do not install package in testing
+ mode
+
+2003-07-23 00:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: first bits of 9.2-0.21mdk
+
+2003-07-22 23:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakgw: no valid reason not to be able to
+ go back at first step
+
+2003-07-22 23:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakgw: fix going backward in the wizard
+ at deepest stages
+
+2003-07-22 23:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakgw: testing mode: enable to go some
+ steps further when testing this tool
+
+2003-07-22 23:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakgw: fix back step
+
+2003-07-22 22:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: last but not least ...
+
+2003-07-22 22:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: more unfuzzy
+
+2003-07-22 21:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: unfuzzy...
+
+2003-07-22 21:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: more french translation
+
+2003-07-22 21:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: N_ON_E is of no use, NONE is
+
+2003-07-22 21:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: better phrasing
+
+2003-07-22 19:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: fix fpons sucks (as usuall as he
+ neither tests nor care about bug reports)
+
+2003-07-22 19:26 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-07-22 17:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.20mdk
+
+2003-07-22 17:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: simplify and order vertically
+ OptionMenus
+
+2003-07-22 17:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.20mdk
+
+2003-07-22 17:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - fix "lan config" dialog
+ where fields were not filled - factorize some code in order to
+ achieve it
+
+2003-07-22 17:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2003-07-22 15:34 Fançois Pons
+
+ * perl-install/interactive/gtk.pm: tempory fix for title not having
+ scroll bars (which sounds reasonable ?), as the size of the
+ window is fixed the low part of the window is not visible. titi
+ who makes the portage to newer Gtk2 has not tested this (again,
+ for info).
+
+2003-07-22 14:48 Fançois Pons
+
+ * perl-install/install_gtk.pm: fixed titi sucks (as usually as he
+ never tests nor checks what he is writing).
+
+2003-07-22 10:57 Fançois Pons
+
+ * perl-install/standalone.pm: avoid being clashed by signature
+ checking when installing packages, need a better fix later.
+
+2003-07-21 21:48 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po,
+ es.po, et.po, eu.po, fi.po, fr.po, ga.po, gl.po, he.po, hr.po,
+ hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po, mt.po,
+ nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po,
+ sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-07-21 18:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.19mdk
+
+2003-07-21 18:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/diskdrake: provide some help access in
+ standalone mode
+
+2003-07-21 18:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: draksec, harddrake2: add hints for
+ translators
+
+2003-07-21 18:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: workaround buggy gtk+-2.x
+ that do not wrap textviews when realized
+
+2003-07-21 18:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: make 1st tab title somewhat
+ clearer
+
+2003-07-21 18:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: fix infamous "when embedded
+ draksec can be enlarged but never shrink back"
+
+2003-07-21 18:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: one should not be able to set
+ syadmin when no reports
+
+2003-07-21 18:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: - describe all security levels -
+ make it clean than security admin is not a security level -
+ colorize security levels names - use a label instead of textview
+
+2003-07-21 18:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: mcc view: add an help button
+ (and ugtk2-ize main window buttons btw)
+
+2003-07-21 18:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: dhcp host name cannot be set if
+ one want to get it from dhcp server
+
+2003-07-21 18:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add a hint if we never
+ restore profiles feature
+
+2003-07-21 18:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not gratuitously waste
+ space
+
+2003-07-21 18:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: if we really want the type
+ connection to be translated by translate() call in step_2, we
+ should mark it as translatable for gettext somewhere ...
+
+2003-07-21 18:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix final success message: -
+ fix join usage - fix gtk frontend detection
+
+2003-07-21 18:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: do not loop if one refuse to
+ save changes, just skip the save step
+
+2003-07-21 18:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: keep user changes on back
+ step
+
+2003-07-21 18:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix no previous button when
+ using ask_okcancel() in wizard mode due to *very* ugly
+ "$common->{cancel} = '' if !defined wantarray();" in
+ interactive.pm
+
+ anyway, the whole pre_func() idea was totally dumb
+
+ it now looks a little cleaner
+
+ making all main configuration callbacks having the same prototype
+ and name would enable further cleanups (direct call to
+ network::$net_module{$type}::configure(...);)
+
+2003-07-21 16:52 Fançois Pons
+
+ * perl-install/install_steps_gtk.pm: avoid src package to be seen
+ in tree.
+
+2003-07-21 16:50 Fançois Pons
+
+ * perl-install/pkgs.pm: fixed setSelectedFromCompssList (updated
+ with newer perl-URPM interface), more need to be done. maybe
+ increased speed of unselectAllPackages.
+
+2003-07-19 15:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: fix checks loading
+
+2003-07-19 15:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: fix checks setting
+
+2003-07-19 15:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.18mdk
+
+2003-07-19 15:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: fix config load
+
+2003-07-19 15:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/msec.pm: sort functions & checks when
+ writing configuration
+
+2003-07-18 23:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: add bug ref
+
+2003-07-18 21:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: only catch real wrong callees
+
+2003-07-18 21:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: sync translation with stock
+ item
+
+2003-07-18 14:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: first 9.2-0.17mdk bits
+
+2003-07-18 14:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: now that we display localized
+ descriptions instead of raw function names, we've to sort the
+ formers instead of sorting the laters
+
+2003-07-18 14:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: fix preferences loading & saving
+
+2003-07-18 13:59 Fançois Pons
+
+ * perl-install/Makefile: trying to follow the sucking of titi...
+ use perl-Gtk2 and perl-Glib files.
+
+2003-07-18 11:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: new binding returns a list intead of an
+ array ref
+
+2003-07-18 11:17 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/pixmaps/drakcluster.png: new drakcluster icon from
+ LN
+
+2003-07-17 23:10 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-07-17 22:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: one more bit for 0.16mdk
+
+2003-07-17 22:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: do not exit the whole app when one destroy
+ a dialog
+
+2003-07-17 21:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.16mdk
+
+2003-07-17 21:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (_create_dialog) default is "as much as
+ needed" size
+
+2003-07-17 21:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: adjust dialogs size
+
+2003-07-17 20:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: perl_checker fix
+
+2003-07-17 20:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: correctly align fields in
+ "lan configuration" dialog
+
+2003-07-17 20:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: ugtk2.pm, standalone/drakconnect: perl_checker
+ fixes
+
+2003-07-17 20:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: simplify with gtkshow()
+
+2003-07-17 20:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: ugtk2.pm, standalone/drakconnect: center_always is
+ unuser-friendly
+
+2003-07-17 19:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: - ihm team said: always use labels,
+ textview are stupid nonsenses - fcrozat then said: labels have no
+ wrapping problems with cjk and the like
+
+2003-07-17 19:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: proxy configuration step: do
+ not go back two steps back on "previous" click, but only one back
+
+2003-07-17 19:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: properly use checkboxes
+
+2003-07-17 19:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: use stock items in wizards
+
+2003-07-17 18:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: intercept buggy callees/users of
+ bool type that wrongly pass label instead of text
+
+2003-07-17 18:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix usage of bool type in
+ interactive: put the text in the checkbox's label instead of
+ packing a standalone label *and* a checkbox with an empty label
+
+2003-07-17 16:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix internet gateway buttons
+ layout
+
+2003-07-17 16:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: remove ugly icon
+
+2003-07-17 15:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: frop gtk+1 requires
+
+2003-07-16 15:46 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/fsedit.pm: now swap is before / on client node
+
+2003-07-16 13:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Makefile, commands.pm, swap.pm: remove mkswap from
+ commands.pm, so no need anymore to have mkswap_ (the drawback is
+ that the mkswap command won't create the device anymore)
+
+2003-07-16 11:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: perl_checker fix
+
+2003-07-15 20:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: last 9.2-0.15mdk's bits
+
+2003-07-15 20:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive.pm: fix ask_okcancel due to stock items
+ changes
+
+2003-07-15 20:06 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Update
+
+2003-07-15 19:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: fix button layout
+
+2003-07-15 19:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup: fix help/close layout
+
+2003-07-15 19:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/main.pm: use stock icon in xfdrake too
+
+2003-07-15 19:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.15mdk
+
+2003-07-15 19:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/printerdrake: quick hack to enable
+ printerdrake to run
+
+2003-07-15 18:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: more 9.2-0.15mdk bits
+
+2003-07-15 18:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: - grey theme config instead of
+ hiding it - use option menus instead of combos - describe user
+ and desktop lists
+
+2003-07-15 18:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: ensure we got a valied email in
+ "email alert"
+
+2003-07-15 18:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (warn_dialog, err_dialog) fix passing
+ dialog options to create_dialog() when they get no options
+
+2003-07-15 17:00 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/pixmaps/drakcluster.png: add drakcluster icon
+
+2003-07-15 16:59 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/steps.pm: change icon for drakcluster
+
+2003-07-15 16:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: some 9.2-0.15mdk bits
+
+2003-07-15 15:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: - use option menus rather
+ than non editable combo - grey remove button if no module to
+ remove in modules list - perl-Gt2-0.26.cvs.2003.07.10.1-3mdk has
+ just fixed the impossible to remove the hackish empty line
+ needed to get "expand on the fly" ability
+
+2003-07-15 13:31 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/share/: compssUsers, rpmsrate: adjust configuration
+ of classical server cluster, and remove annoying entries
+
+2003-07-15 11:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: - (new_wrapped_label)wrap labels
+ if needed when embedded - (new_editable_combo) it had always
+ forbid edition, which is now enforced by using OptionMenus, so
+ let rename it new_nonedit_combo()
+
+2003-07-15 01:32 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: More perl-gtk2 fixes
+
+2003-07-14 23:16 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po,
+ es.po, et.po, eu.po, fi.po, fr.po, ga.po, gl.po, he.po, hr.po,
+ hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po, mt.po,
+ nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po,
+ sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-07-14 21:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.14mdk
+
+2003-07-14 21:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: security/l10n.pm, standalone/draksec: translate
+ default values qw(yes no all ignore ...) and provide english
+ (l10n-able) descriptions instead of function names
+
+2003-07-14 21:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: fix logdrake crash when called
+ from net_monitor
+
+2003-07-14 21:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: gtk+2 port
+
+2003-07-14 21:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: let video mode list be availlable
+ when working with cvs files and not stripped files from drakxtool
+
+2003-07-14 21:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: fix /etc/lilo.conf generation when
+ reading grub config by setting valid boot= parameter
+
+2003-07-14 21:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: use new stock dialogs
+
+2003-07-14 21:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: - (create_dialog) o add the stock option
+ in order to be able to use a stock icon o add a new "small"
+ option to net make dialogs too big - (err_dialog, warn_dialog)
+ new wrappers upon create_dialog to use warning and error stock
+ icons - add a new export tag for dialogs
+
+2003-07-14 21:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (destroy_window) kill it since it is no
+ more used for quite some time
+
+2003-07-14 21:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: drakconnect, draksec: use new
+ Gtk2::OptionMenu compatibility layer to get better designed GUIes
+
+2003-07-14 21:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: for more GUIes coherency, GtkOptionMenu is
+ recommended instead of a combo if the user is selecting from a
+ fixed set of options.
+
+ since both GtkCombo and GtkOptionMenu will be deprecated in 2.4.x
+ in favor of much better designed widget (see libegg's combo), we
+ introduce a compatibility layer that makes OptionMenu looks like
+ Combo at API level to minimize changes: - now, when using
+ OptionMenu instead of Combo - when new widget will come to live
+ in gtk+-2.4.x
+
+2003-07-14 21:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: ugtk2.pm, standalone/drakboot,
+ standalone/drakconnect, standalone/draksec: sanitize button
+ layouts: - use stock items everywhere - use ButtonBoxes
+ everywhere - pack buttons always in the same order and places
+
+2003-07-14 21:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: interactive.pm, interactive/gtk.pm,
+ interactive/http.pm, interactive/newt.pm, interactive/stdio.pm:
+ let interactive uses stock items on x11 and old drak translated
+ items in other backends
+
+2003-07-14 21:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: renew drakconnect GUI:
+
+ - make sub windows be modal 'n trancient dialogs - use std layout
+ and stock items for buttons in main window and dialogs - fix
+ "Internet connection configuration" dialog - (new_dialog) reuse
+ ugtk2::_create_dialog (shared with half a dozen other tools -
+ fix layout of main window: o pack together expert mode toggle
+ and wizard button o merge wizard label and button o make a
+ checkbox out of the ugly expert <-> normal button
+
+2003-07-14 21:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: renew drakfloppy GUI:
+
+ - (build_it) : fix old brown paper bug that just pass undef
+ modules to mkinitrd - window with expert options is too big
+ when embedded => move expert options into a sub dialog; we've
+ to save and restore options on dialog creation/ desctruction -
+ when removing a module from selection, enable to pick it again
+ after - make expert <->normal button a checkbox - use std layout
+ for buttons - use stock items
+
+2003-07-14 21:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: split create_dialog() into create_dialog()
+ wrapper and _create_dialog() backend, thus enabling to kill
+ drakconnect::new_dialog and to share code with drakfloppy and
+ others
+
+2003-07-14 21:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: support new 2.5.x kernels'
+ kbuild
+
+2003-07-14 21:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: fix create_dialog() usage
+ (who ever has changed its API should have altered its callers)
+
+2003-07-14 21:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: fix module browsing after
+ gtk2-perl-xs switch
+
+2003-07-14 21:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: fix warning on menu building
+
+2003-07-14 19:25 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Rework for new perl-Gtk2.
+
+2003-07-14 13:13 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-07-13 20:03 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ca.po, he.po: updated Catalan and Hebrew
+ files
+
+2003-07-12 12:34 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: any.pm, help.pm, install_steps_interactive.pm,
+ share/po/DrakX.pot, share/po/af.po, share/po/ar.po,
+ share/po/az.po, share/po/be.po, share/po/bg.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/fi.po, share/po/fr.po,
+ share/po/ga.po, share/po/gl.po, share/po/he.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/lt.po, share/po/lv.po,
+ share/po/mt.po, share/po/nb.po, share/po/nl.po, share/po/pl.po,
+ share/po/pt.po, share/po/pt_BR.po, share/po/ro.po,
+ share/po/ru.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/tr.po,
+ share/po/uk.po, share/po/uz.po, share/po/vi.po, share/po/wa.po,
+ share/po/zh_CN.po, share/po/zh_TW.po: changed "Country" . " /
+ Region" to "Country / Region" and fixed Chinese po's
+
+2003-07-11 16:31 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/fsedit.pm: Removing /var on nodes, bigger /
+
+2003-07-10 21:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.13mdk
+
+2003-07-10 21:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: fix warnings due to new
+ gtk2-perl binding following the same naming as C
+
+2003-07-10 20:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: disable column sorting since it
+ makes gtk+2 crash when moving up a column
+
+2003-07-10 19:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: output buffer should not be
+ editable
+
+2003-07-10 19:20 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po,
+ es.po, et.po, eu.po, fi.po, fr.po, ga.po, gl.po, he.po, hr.po,
+ hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po, mt.po,
+ nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po,
+ sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-07-10 19:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: use stock item for cancelling
+ the app
+
+2003-07-10 19:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: more bits for 9.2-0.12mdk
+
+2003-07-10 17:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix crash on cancel exit
+
+2003-07-10 17:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: typo fix
+
+2003-07-10 17:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.12mdk
+
+2003-07-10 17:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: use stock items in main window
+
+2003-07-10 17:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: use stock icon for close button
+ (noticed by Fabrice Facorat)
+
+2003-07-10 16:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: grey instead of hide stuff
+ in normal mode (more user friendly)
+
+2003-07-10 16:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: fix entry filling
+
+2003-07-10 16:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: - grey instead of hide stuff
+ in normal mode (more user friendly) - do not crash when no
+ iterator when expanding tree
+
+2003-07-10 16:25 Fançois Pons
+
+ * perl-install/swap.pm: fixed mkswap original commands call.
+
+2003-07-10 16:24 Fançois Pons
+
+ * perl-install/Makefile: make sure original mkswap is still living.
+
+2003-07-10 15:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: ugtk2.pm, interactive/gtk.pm: - symbolic keys are
+ back - do not name "use once" variables
+
+2003-07-10 14:57 Fançois Pons
+
+ * rescue/tree/etc/rc.sysinit: make oem defaults to /etc/oem-all
+
+2003-07-10 14:49 Fançois Pons
+
+ * rescue/tree/etc/oem-all: incremented installation partition to
+ 5Go in order to store a full DVD.
+
+2003-07-10 02:48 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Clean up help. Add email
+ explanation. Start to implement .backupignore.
+
+2003-07-10 01:40 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Beginnings of "search for
+ file to restore". Not functional yet. Just want it in before
+ everything get's changed on me.
+
+2003-07-09 22:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.11mdk
+
+2003-07-09 22:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: move toggle_expansion helper in the right
+ namespace
+
+2003-07-09 21:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: add Gtk2::TreeView->toggle_expansion
+ helper for rpmdrake
+
+2003-07-09 21:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: get rid of equals
+
+2003-07-09 21:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: fix row filling
+
+2003-07-09 19:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbug: use new
+ gtk2::entry->new_with_text to complete the port to gtk2-perl-xs
+
+2003-07-09 19:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: fix gtk2::entry->new_with_text
+
+2003-07-09 19:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: ugtk2.pm, standalone/logdrake: remove debugging
+ trace
+
+2003-07-09 18:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: typo fix
+
+2003-07-09 18:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: help stupid perl_checker in
+ being able to parse horrible draksplash despite perl -cw was
+ happy on it
+
+2003-07-09 18:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: drakxtools.spec, install_gtk.pm,
+ install_steps_gtk.pm, mouse.pm, services.pm, ugtk2.pm,
+ Xconfig/resolution_and_depth.pm, Xconfig/test.pm,
+ diskdrake/hd_gtk.pm, diskdrake/smbnfs_gtk.pm, interactive/gtk.pm,
+ interactive/newt.pm, standalone/drakTermServ,
+ standalone/drakautoinst, standalone/drakbackup,
+ standalone/drakboot, standalone/drakbug, standalone/drakconnect,
+ standalone/drakfloppy, standalone/drakfont, standalone/drakperm,
+ standalone/harddrake2, standalone/logdrake,
+ standalone/mousedrake: switch from gtk2-perl to gtk2-perl-xs
+
+2003-07-09 16:54 Guillaume Cottenceau
+
+ * mdk-stage1/pcmcia_/probe.c: some more pci id's from
+ pcmcia-cs-3.2.4
+
+2003-07-09 16:50 Guillaume Cottenceau
+
+ * kernel/list_modules.pm: i82092 is also a controller driver
+
+2003-07-09 16:41 Fançois Pons
+
+ * rescue/tree/etc/oem-all: added tiny fixes for Mandrake 9.1 oem
+ mode (need mandrake-release file) gets root of installation as
+ 9Gb so that no problem should occurs.
+
+2003-07-09 14:50 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
+ tr.po, uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated
+ pot file
+
+2003-07-09 11:34 Fançois Pons
+
+ * rescue/tree/etc/oem-all: deactivate HP specific entries.
+
+2003-07-08 07:18 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: install netprofile on laptops
+
+2003-07-07 22:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: fix stock items usage
+
+2003-07-07 18:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: use stock items in logdrake too
+
+2003-07-07 13:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: Gtk2::CheckButton does not
+ support stock item (gc)
+
+2003-07-06 23:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: use stock items for menu too
+
+2003-07-06 20:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: further bits
+
+2003-07-06 20:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.9mdk
+
+2003-07-06 20:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: drakconnect, drakfloppy, drakperm: let
+ columns be sortable (lmontel request)
+
+2003-07-06 19:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: drakxtools.spec, services.pm, ugtk2.pm,
+ diskdrake/hd_gtk.pm, interactive/gtk.pm, standalone/drakbug,
+ standalone/drakgw, standalone/drakperm, standalone/harddrake2,
+ standalone/mousedrake: increase gui coherency of drakxtools vs
+ other gtk+ apps: use stock icons
+
+2003-07-05 19:48 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: updated Spanish translations
+
+2003-07-05 19:38 Dam's
+
+ * perl-install/network/isdn.pm: isdn : virtual interface ippp0 is
+ started at boot.
+
+2003-07-04 00:56 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Honor user defined limits for
+ backup disk consumption. Log last backup. Enable view of last
+ backup log. Fix base_sys_list. Fix GUI crash on restore. (Keld
+ Jørn Simonsen/Cooker list)
+
+2003-07-03 12:13 Guillaume Cottenceau
+
+ * kernel/modules.pl: allow hd.img to build again..
+
+2003-07-03 03:20 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Show units for hard-drive
+ allocation. Add "View Configuration" 1st screen.
+
+2003-07-02 11:08 Guillaume Cottenceau
+
+ * perl-install/keyboard.pm: looks like a pablo's typo
+
+2003-07-02 00:10 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ro.po: converted to utf-8
+
+2003-07-01 23:52 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: added spaces to make perl_checker happy
+
+2003-07-01 22:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: keyboard.pm, share/keyboards.tar.bz2: iAdded
+ various new keyboard layouts
+
+2003-07-01 19:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_dialog) add use_markup in order to
+ hint the usage of pango attributes
+
+2003-07-01 11:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: colorize help
+
+2003-07-01 10:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: perl_checker fix
+
+2003-07-01 09:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.8mdk
+
+2003-07-01 08:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakxtv: fix testing mode
+
+2003-07-01 08:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/v4l.pm: fix card tree display
+
+2003-07-01 08:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: fix one translation (ie
+ factorize it out)
+
+2003-07-01 08:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: let harddrake gui fit better
+ when embedded
+
+2003-06-30 00:48 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/fi.po: updated Finnish file
+
+2003-06-29 00:02 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: iso code -> kde-i18n-* code for Sotho (st
+ -> nso) and Venda (ve -> ven)
+
+2003-06-28 22:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ca.po, sq.po: Updated Catalan and
+ Albanian files
+
+2003-06-28 17:21 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: nb.po, no.po: Moved Bokmaal file to nb.po
+
+2003-06-28 16:29 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/pt_BR.po: updated Brazilian file
+
+2003-06-27 18:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2003-06-27 14:18 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: harddrake/sound.pm, share/po/DrakX.pot,
+ share/po/af.po, share/po/ar.po, share/po/az.po, share/po/be.po,
+ share/po/bg.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/fi.po, share/po/fr.po, share/po/ga.po,
+ share/po/gl.po, share/po/he.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/lt.po, share/po/lv.po, share/po/mt.po,
+ share/po/nl.po, share/po/no.po, share/po/pl.po, share/po/pt.po,
+ share/po/pt_BR.po, share/po/ro.po, share/po/ru.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/tr.po, share/po/uk.po,
+ share/po/uz.po, share/po/vi.po, share/po/wa.po,
+ share/po/zh_CN.po, share/po/zh_TW.po: Fixed typos; updated
+ Ukrainian po file
+
+2003-06-27 13:42 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: calling Gtk2->set_locale at each ugtk2
+ object creation should be unneeded (Gtk2->init initializes
+ internationalization stuff of Gtk2), and it breaks my setlocale
+ call in rpmdrake
+
+2003-06-27 08:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
+ tr.po, uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated
+ pot file
+
+2003-06-26 03:12 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Local client hardware
+ configuration via drak tools.
+
+2003-06-25 13:50 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Fix GUI in embedded mode -
+ [Bug 4111] - note translate strings changed.
+
+2003-06-24 21:44 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: GUI elements for local
+ client hardware config. Update strings for translators.
+
+2003-06-24 17:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.7mdk
+
+2003-06-24 17:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: fix crash on service restart
+
+2003-06-24 13:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: prevent drakfont from crashing
+ when trying to deleting an empty list
+
+2003-06-24 12:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: (grub2dev)
+
+ - remove dead code - enhance comment
+
+2003-06-24 12:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/devices.pm: (from_devfs)
+
+ - handle read_proc_partitions_raw() / find() faillures - return
+ undef when we failled to find out real device
+
+2003-06-24 12:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: (read_grub) increase readibility
+
+2003-06-24 10:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.6mdk
+
+2003-06-24 10:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: try to fix #3695 : read grub config
+ file when current bootloader is grub
+
+ - make read() a wrapper above read_grub() and read_lilo() (the
+ later being quite identical to older read())
+
+ - introduce 3 new functions: * grub2dev() in order to guess
+ linux device from grub one * ungrubify() in order to replace
+ grub devices in file paths by proper linux mount points *
+ read_grub() in order to parse /boot/grub/menu.lst and create
+ proper bootloader data structure for setup
+
+2003-06-24 10:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: devices.pm, fsedit.pm: - move
+ read_proc_partitions_raw() from fsedit.pm to devices.pm -
+ (devices::from_devfs, devices::from_devfs) handle block devices
+ too, with read_proc_partitions_raw() helper
+
+2003-06-24 10:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: bootloader.pm, fsedit.pm: fix pixel vs strict
+ pragam
+
+2003-06-24 10:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: make log message arch independant
+
+2003-06-24 10:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/fs.pm: remember to update mount options description
+ on util-linux update
+
+2003-06-23 21:09 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sq.po: updated Albanian file
+
+2003-06-22 23:45 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated
+
+2003-06-22 16:43 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: Updates - not comleted
+ soft/GtkMdkWidgets/po/da.po soft/rpmdrake/po/da.po
+ soft/urpmi/po/da.po gi/perl-install/share/po/da.po
+
+2003-06-19 13:08 Erwan Velu <erwan at mandriva.com>
+
+ * kernel/modules.pl: removing more big drivers from stage1
+
+2003-06-19 12:14 Erwan Velu <erwan at mandriva.com>
+
+ * rescue/tree/ka/setup_network.sh: Fixing crappy output during ka
+ duplication
+
+2003-06-19 12:12 Erwan Velu <erwan at mandriva.com>
+
+ * make_boot_img: Fixing isolinux colors
+
+2003-06-19 00:49 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translation
+
+2003-06-18 14:00 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: create_box_with_title: chinese langs also
+ need to always use GtkTextView because GtkLabel won't wrap
+ automatically (fixes problems displaying help non-wrapped in the
+ install, #3670)
+
+2003-06-18 13:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/: swap.pm, share/list: use the mkswap command =>
+ simpler code and mkswap is not big => rely on mkswap for choosing
+ the swap version (note that kernel 2.5 doesn't handle v0 swap
+ anymore)
+
+2003-06-18 12:33 Erwan Velu <erwan at mandriva.com>
+
+ * mdk-stage1/stage1-data/stage1-with-kadeployx86_64.tar.bz2:
+ removing unnecessary file
+
+2003-06-17 21:09 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ar.po, et.po: updated Arabic and Estonian
+ files
+
+2003-06-17 16:39 Erwan Velu <erwan at mandriva.com>
+
+ * kernel/modules.pl: adjusting modules.pl for ka
+
+2003-06-17 16:39 Erwan Velu <erwan at mandriva.com>
+
+ * make_boot_img: fixing x86_64 for ka
+
+2003-06-17 15:27 Erwan Velu <erwan at mandriva.com>
+
+ * kernel/modules.pl: removing old school drivers from stage1
+
+2003-06-17 15:18 Erwan Velu <erwan at mandriva.com>
+
+ * mdk-stage1/stage1-data/stage1-with-kadeployx86_64.tar.bz2: new
+ stage1 for ka (opteron)
+
+2003-06-17 15:17 Erwan Velu <erwan at mandriva.com>
+
+ * make_boot_img: Fixing make_boot_img for x86_64 (ka stage)
+
+2003-06-17 14:54 Erwan Velu <erwan at mandriva.com>
+
+ * rescue/tree/ka/gen_modules_conf.pl: removing autogenerated file
+
+2003-06-17 14:52 Erwan Velu <erwan at mandriva.com>
+
+ * kernel/modules.pl: removing old school drivers from stage1
+
+2003-06-17 10:15 Erwan Velu <erwan at mandriva.com>
+
+ * kernel/: list_modules.pm, modules.pl: fixing missing tg3 for x86,
+ bcm5820 for all
+
+2003-06-17 08:34 Erwan Velu <erwan at mandriva.com>
+
+ * rescue/tree/ka/install.sh: Removing remaining dchp cache for KA
+
+2003-06-16 17:40 Erwan Velu <erwan at mandriva.com>
+
+ * Makefile: Enabling ka generation in Makefile for x86_64
+
+2003-06-16 17:39 Erwan Velu <erwan at mandriva.com>
+
+ * make_boot_img: enabling ka-mode in x86_64
+
+2003-06-16 17:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
+ tr.po, uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated
+ pot file
+
+2003-06-16 14:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: allow encrypted partitions in
+ auto_install (with encrypt_key non encrypted!)
+
+2003-06-16 11:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: fix typo
+
+2003-06-16 10:59 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: Drakcluster only in
+ export mode
+
+2003-06-16 10:59 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/steps.pm: Disabling drakcluster in beginner mode
+
+2003-06-13 16:42 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/share/logo-mandrake.png: MDKC logo
+
+2003-06-13 16:42 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/Makefile.config: Adding drakcluster
+
+2003-06-13 16:41 Erwan Velu <erwan at mandriva.com>
+
+ * isolinux-graphic.bmp: New isolinux-graphic MDKC version
+
+2003-06-13 12:25 Erwan Velu <erwan at mandriva.com>
+
+ * rescue/tree/ka/gen_modules_conf.pl: Removing old school scsi
+ drivers
+
+2003-06-13 12:24 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: Using understandable
+ method : Expert -> Cluster server : Recommanded -> Cluster Node
+
+2003-06-13 12:24 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/fsedit.pm: Changing clic to mdkc
+
+2003-06-13 12:23 Erwan Velu <erwan at mandriva.com>
+
+ * kernel/list_modules.pm: Removing old school scsi drivers (need
+ more places)
+
+2003-06-13 11:31 Erwan Velu <erwan at mandriva.com>
+
+ * mdk-stage1/stage1-data/stage1-with-kadeploy.tar.bz2: Adding ka
+ stage1
+
+2003-06-13 10:54 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: pcmcia_/Makefile, ppp/include/net/ppp_defs.h,
+ ppp/pppd/Makefile, rp-pppoe/src/Makefile: cleaner adaptation to
+ dietlibc from main gi branch
+
+2003-06-13 10:53 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/: network.c, url.c: small fixes in KA special code
+
+2003-06-13 09:37 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakgw: forgot some debug print lines
+
+2003-06-12 22:55 Guillaume Cottenceau
+
+ * perl-install/: install_steps_gtk.pm, ugtk2.pm,
+ share/advertising/01-thanks.pl,
+ share/advertising/02-community.pl,
+ share/advertising/03-software.pl,
+ share/advertising/04-configuration.pl,
+ share/advertising/05-desktop.pl,
+ share/advertising/06-development.pl,
+ share/advertising/07-server.pl, share/advertising/08-store.pl,
+ share/advertising/09-mdksecure.pl,
+ share/advertising/10-security.pl, share/advertising/11-mnf.pl,
+ share/advertising/12-mdkexpert.pl,
+ share/advertising/13-mdkexpert_corporate.pl, share/po/ja.po,
+ share/po/zh_CN.po, share/po/zh_TW.po: change a bit how strings
+ are passed to advertising system so that we don't specify
+ absolute x,y positions for each paragraph, ending with
+ overwritten text in some localizations
+
+2003-06-12 18:59 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/network.pm: - miscellaneous_choose() no
+ longer use uneeded b_clicked - drop $::Expert - perl_checker fix
+
+2003-06-12 18:58 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakproxy: fix too many parameters in
+ miscellaneous_choose call
+
+2003-06-12 18:02 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/ethernet.pm: - drop $::Expert - drop
+ $netc->{ZEROCONF_HOSTNAME}, only need regexp
+
+2003-06-12 17:38 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakgw: read the default network
+ configuration
+
+2003-06-12 17:30 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/ethernet.pm: - drop $::Expert - simplify
+ code
+
+2003-06-12 16:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_steps.pm,
+ install_steps_interactive.pm: really add the configureCluster
+ step
+
+2003-06-12 16:14 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: get_text_coord: fix heights handling: use
+ real height of each line rather than default height from font
+ info (which is bugged in japanese)
+
+2003-06-12 16:10 Pixel <pixel at mandriva.com>
+
+ * Makefile, make_boot_img, docs/README, kernel/Makefile,
+ kernel/check_mar.pl, kernel/list_modules.pm, kernel/modules.pl,
+ kernel/update_kernel, mdk-stage1/Makefile,
+ mdk-stage1/Makefile.common, mdk-stage1/dhcp.c, mdk-stage1/disk.c,
+ mdk-stage1/dns.c, mdk-stage1/frontend.h,
+ mdk-stage1/init-libc-headers.h, mdk-stage1/init.c,
+ mdk-stage1/log.c, mdk-stage1/minilibc.c, mdk-stage1/minilibc.h,
+ mdk-stage1/rescue-gui.c, mdk-stage1/stage1.h,
+ mdk-stage1/stdio-frontend.c, mdk-stage1/tools.c,
+ mdk-stage1/bzlib/Makefile, mdk-stage1/insmod-busybox/Config.h,
+ mdk-stage1/insmod-busybox/Makefile,
+ mdk-stage1/insmod-busybox/busybox.h,
+ mdk-stage1/insmod-busybox/insmod.c,
+ mdk-stage1/insmod-modutils/Makefile,
+ mdk-stage1/insmod-modutils/insmod.c,
+ mdk-stage1/insmod-modutils/include/config.h,
+ mdk-stage1/insmod-modutils/include/elf_alpha.h,
+ mdk-stage1/insmod-modutils/include/elf_arm.h,
+ mdk-stage1/insmod-modutils/include/elf_i386.h,
+ mdk-stage1/insmod-modutils/include/elf_m68k.h,
+ mdk-stage1/insmod-modutils/include/elf_mips.h,
+ mdk-stage1/insmod-modutils/include/elf_ppc.h,
+ mdk-stage1/insmod-modutils/include/elf_s390.h,
+ mdk-stage1/insmod-modutils/include/elf_sparc.h,
+ mdk-stage1/insmod-modutils/include/elf_sparc64.h,
+ mdk-stage1/insmod-modutils/include/elf_x86_64.h,
+ mdk-stage1/insmod-modutils/include/kallsyms.h,
+ mdk-stage1/insmod-modutils/include/kerneld.h,
+ mdk-stage1/insmod-modutils/include/module.h,
+ mdk-stage1/insmod-modutils/include/obj.h,
+ mdk-stage1/insmod-modutils/include/util.h,
+ mdk-stage1/insmod-modutils/include/version.h,
+ mdk-stage1/insmod-modutils/obj/Makefile,
+ mdk-stage1/insmod-modutils/obj/obj_alpha.c,
+ mdk-stage1/insmod-modutils/obj/obj_arm.c,
+ mdk-stage1/insmod-modutils/obj/obj_common.c,
+ mdk-stage1/insmod-modutils/obj/obj_gpl_license.c,
+ mdk-stage1/insmod-modutils/obj/obj_hppa.c,
+ mdk-stage1/insmod-modutils/obj/obj_hppa64.c,
+ mdk-stage1/insmod-modutils/obj/obj_i386.c,
+ mdk-stage1/insmod-modutils/obj/obj_ia64.c,
+ mdk-stage1/insmod-modutils/obj/obj_kallsyms.c,
+ mdk-stage1/insmod-modutils/obj/obj_load.c,
+ mdk-stage1/insmod-modutils/obj/obj_m68k.c,
+ mdk-stage1/insmod-modutils/obj/obj_mips.c,
+ mdk-stage1/insmod-modutils/obj/obj_ppc.c,
+ mdk-stage1/insmod-modutils/obj/obj_reloc.c,
+ mdk-stage1/insmod-modutils/obj/obj_s390.c,
+ mdk-stage1/insmod-modutils/obj/obj_sparc.c,
+ mdk-stage1/insmod-modutils/obj/obj_sparc64.c,
+ mdk-stage1/insmod-modutils/obj/obj_x86_64.c,
+ mdk-stage1/insmod-modutils/util/Makefile,
+ mdk-stage1/insmod-modutils/util/alias.h,
+ mdk-stage1/insmod-modutils/util/arch64.c,
+ mdk-stage1/insmod-modutils/util/config.c,
+ mdk-stage1/insmod-modutils/util/logger.c,
+ mdk-stage1/insmod-modutils/util/snap_shot.c,
+ mdk-stage1/insmod-modutils/util/sys_cm.c,
+ mdk-stage1/insmod-modutils/util/sys_dm.c,
+ mdk-stage1/insmod-modutils/util/sys_gks.c,
+ mdk-stage1/insmod-modutils/util/sys_nim.c,
+ mdk-stage1/insmod-modutils/util/sys_oim.c,
+ mdk-stage1/insmod-modutils/util/sys_qm.c,
+ mdk-stage1/insmod-modutils/util/xmalloc.c,
+ mdk-stage1/insmod-modutils/util/xrealloc.c,
+ mdk-stage1/insmod-modutils/util/xstrcat.c,
+ mdk-stage1/insmod-modutils/util/xstrdup.c,
+ mdk-stage1/insmod-modutils/util/xsystem.c,
+ mdk-stage1/mar/Makefile, mdk-stage1/newt/Makefile,
+ mdk-stage1/newt/form.c, mdk-stage1/slang/Makefile,
+ perl-install/Makefile, perl-install/any.pm,
+ perl-install/bootloader.pm, perl-install/detect_devices.pm,
+ perl-install/drakxtools.spec, perl-install/fs.pm,
+ perl-install/fsedit.pm, perl-install/install_any.pm,
+ perl-install/install_gtk.pm, perl-install/install_steps.pm,
+ perl-install/install_steps_gtk.pm,
+ perl-install/partition_table.pm, perl-install/printerdrake.pm,
+ perl-install/proxy.pm, perl-install/steps.pm,
+ perl-install/Xconfig/card.pm, perl-install/c/smp.c,
+ perl-install/harddrake/data.pm, perl-install/share/list,
+ perl-install/share/list.ia64, perl-install/share/list.x86_64,
+ perl-install/standalone/drakboot, rescue/list, rescue/list.ia64,
+ rescue/list.x86_64, tools/Makefile: merge with x86_64-branch
+
+2003-06-11 22:23 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: get_text_coord: fix wrapping broken (gc
+ sux)
+
+2003-06-11 21:07 Guillaume Cottenceau
+
+ * perl-install/install_steps_gtk.pm: revert fpons' strange 1.345's
+ commit
+
+2003-06-11 20:04 Erwan Velu <erwan at mandriva.com>
+
+ * rescue/tree/ka/setup_network.sh: Fixing typo
+
+2003-06-11 20:04 Erwan Velu <erwan at mandriva.com>
+
+ * rescue/tree/ka/install.sh: Fixing mkreiserfs call
+
+2003-06-11 20:04 Erwan Velu <erwan at mandriva.com>
+
+ * rescue/tree/ka/gen_modules_conf.pl: Updating modules; removing
+ used, adding usual (mpt)
+
+2003-06-11 20:03 Erwan Velu <erwan at mandriva.com>
+
+ * rescue/list.i386: Using good mkreiserfs instead of mkfs.reiserfs
+
+2003-06-11 20:00 Erwan Velu <erwan at mandriva.com>
+
+ * make_boot_img: patching for ka support
+
+2003-06-11 19:56 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/share/compss: CLIC comps
+
+2003-06-11 19:54 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/share/logo-mandrake.png: CLIC's logo
+
+2003-06-11 19:53 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/share/rpmsrate: Clic's rpmrate
+
+2003-06-11 19:52 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/share/compssUsers: CLIC's compuser
+
+2003-06-11 19:49 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/steps.pm: Changing steps order for clic
+
+2003-06-11 19:49 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/fsedit.pm: Adding custom partitioning for clic
+
+2003-06-11 19:44 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/netconnect.pm: -
+ s/interactive_gtk/interactive::gtk/ to get sub pre_func usable -
+ drop write_on_pixmap way
+
+2003-06-11 19:01 Guillaume Cottenceau
+
+ * perl-install/install_steps_gtk.pm: choosePackagesTree: display
+ the "watch" mouse cursor when doing slow operations; display blue
+ text for rpm tags of package descriptions
+
+2003-06-11 18:35 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: change ask_browse_tree_info_given_widgets
+ and ask_browse_tree_info API's so that widgets can be reachable
+ from ask_browse_tree_info clients (install_steps_gtk.pm)
+
+2003-06-11 18:30 Erwan Velu <erwan at mandriva.com>
+
+ * mdk-stage1/dhcp.c: Fixing "dhcp filename bug" Increasing
+ MAX_ARP_RETRY for slow switches
+
+2003-06-11 18:21 Fançois Pons
+
+ * perl-install/pkgs.pm: fixed otherOnly not taken into account for
+ unselectPackage.
+
+2003-06-11 18:12 Erwan Velu <erwan at mandriva.com>
+
+ * kernel/gen_modules_conf.pl.pl: script that create a module list
+ for rescue
+
+2003-06-11 18:12 Erwan Velu <erwan at mandriva.com>
+
+ * kernel/gen_modules_conf.pl.pl: removing wrong file
+
+2003-06-11 18:08 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: bug fixed in upstream gtk2
+
+2003-06-11 18:00 Erwan Velu <erwan at mandriva.com>
+
+ * kernel/list_modules.pm: Removing used modules, adding mpt needed
+ by ia64 & opteron
+
+2003-06-11 17:55 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: ask_browse_tree_info: set_rules_hint(1)
+
+2003-06-09 23:04 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: More GUI quirks from GTK2
+ port. Ensure pcimap from etherboot created for dhcpd server.
+
+2003-06-09 18:40 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Translation fixes (thx, gc,
+ pixel). Another GUI crash fix.
+
+2003-06-06 18:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/pixmaps/langs/lang-sh.png: re-adding with -kb
+
+2003-06-06 18:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/pixmaps/langs/lang-sh.png: removing for re-adding
+ with -kb
+
+2003-06-06 18:27 Guillaume Cottenceau
+
+ * mdk-stage1/mar/Makefile: fix dep of "make clean && make"
+
+2003-06-06 18:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: perl_checker compliance
+
+2003-06-06 17:10 Guillaume Cottenceau
+
+ * perl-install/share/logo-mandrake.png: cooker
+
+2003-06-06 17:01 Guillaume Cottenceau
+
+ * mdk-stage1/Makefile: we're in cooker now
+
+2003-06-06 15:06 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/help.pm: "Country" -> "Country" . " / Region" in a
+ few places still missing that change
+
+2003-06-06 14:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: stricter regexp when looking /dev/xxx
+ otherwise it is used also for nfs names and causes havoc
+
+2003-06-06 14:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/nfs.pm: - handle spaces in exported
+ directories - simplify using --no-headers when calling showmount
+
+2003-06-06 14:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/fileshareset: fileshareset doesn't use
+ MDK::Common
+
+2003-06-06 14:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: fix computeSize which took into account
+ suggested partitions on another drives (which is especially bad
+ for LVMs)
+
+2003-06-06 12:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone.pm: don't use N() so early (beware, this
+ removes translation, some translate() calls must be added!)
+
+2003-06-06 12:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/: common.pm, ugtk2.pm: ensure N() is not called
+ before ugtk2 is initialised, otherwise the gettext is not forced
+ to utf8
+
+2003-06-06 12:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: fix typos + perl_checker
+ fixes
+
+2003-06-05 23:51 Guillaume Cottenceau
+
+ * perl-install/Makefile: fix install crashed X server because
+ /usr/bin/true was no more available :/
+
+2003-06-05 17:58 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/Makefile.common: fix build with new gcc
+
+2003-06-05 17:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/v4l.pm: support more tuners and tv cards
+
+2003-06-05 16:41 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Bug 3647 - Chinese
+ translations. More perl_checker fixes.
+
+2003-06-05 16:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: make perl_checker a happy bot
+
+2003-06-05 15:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: don't use description of fstab options from
+ manpage mount(8), inline them in the source
+
+2003-06-04 20:33 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/stdio-frontend.c: typo from post-rereading
+
+2003-06-04 20:31 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/: Makefile, Makefile.common, disk.c, dns.c,
+ frontend.h, init-libc-headers.h, init.c, log.c, minilibc.c,
+ minilibc.h, rescue-gui.c, stdio-frontend.c, bzlib/Makefile,
+ insmod-busybox/Makefile, insmod-busybox/insmod.c,
+ insmod-modutils/Makefile, insmod-modutils/insmod.c,
+ insmod-modutils/include/config.h,
+ insmod-modutils/include/elf_alpha.h,
+ insmod-modutils/include/elf_arm.h,
+ insmod-modutils/include/elf_i386.h,
+ insmod-modutils/include/elf_m68k.h,
+ insmod-modutils/include/elf_mips.h,
+ insmod-modutils/include/elf_ppc.h,
+ insmod-modutils/include/elf_s390.h,
+ insmod-modutils/include/elf_sparc.h,
+ insmod-modutils/include/elf_sparc64.h,
+ insmod-modutils/include/kallsyms.h,
+ insmod-modutils/include/kerneld.h,
+ insmod-modutils/include/module.h, insmod-modutils/include/obj.h,
+ insmod-modutils/include/util.h,
+ insmod-modutils/include/version.h, insmod-modutils/obj/Makefile,
+ insmod-modutils/obj/obj_alpha.c, insmod-modutils/obj/obj_arm.c,
+ insmod-modutils/obj/obj_common.c, insmod-modutils/obj/obj_hppa.c,
+ insmod-modutils/obj/obj_hppa64.c, insmod-modutils/obj/obj_i386.c,
+ insmod-modutils/obj/obj_ia64.c,
+ insmod-modutils/obj/obj_kallsyms.c,
+ insmod-modutils/obj/obj_load.c, insmod-modutils/obj/obj_m68k.c,
+ insmod-modutils/obj/obj_mips.c, insmod-modutils/obj/obj_ppc.c,
+ insmod-modutils/obj/obj_reloc.c, insmod-modutils/obj/obj_s390.c,
+ insmod-modutils/obj/obj_sparc.c,
+ insmod-modutils/obj/obj_sparc64.c, insmod-modutils/util/Makefile,
+ insmod-modutils/util/alias.h, insmod-modutils/util/arch64.c,
+ insmod-modutils/util/config.c, insmod-modutils/util/logger.c,
+ insmod-modutils/util/snap_shot.c, insmod-modutils/util/sys_cm.c,
+ insmod-modutils/util/sys_dm.c, insmod-modutils/util/sys_gks.c,
+ insmod-modutils/util/sys_nim.c, insmod-modutils/util/sys_oim.c,
+ insmod-modutils/util/sys_qm.c, insmod-modutils/util/xmalloc.c,
+ insmod-modutils/util/xrealloc.c, insmod-modutils/util/xstrcat.c,
+ insmod-modutils/util/xstrdup.c, insmod-modutils/util/xsystem.c,
+ mar/Makefile, newt/Makefile, newt/form.c, pcmcia_/Makefile,
+ ppp/include/net/ppp_defs.h, ppp/pppd/Makefile,
+ rp-pppoe/src/Makefile, slang/Makefile: Merge from R9_0-AMD64,
+ most notably: - AMD64 support to insmod-busybox, minilibc, et al.
+ - Sync with insmod-modutils 2.4.19 something but everyone should
+ use dietlibc nowadays - Factor out compilation and prefix with
+ $(DIET) for dietlibc builds - 64-bit & varargs fixes
+
+2003-06-04 18:03 Fançois Pons
+
+ * perl-install/install_steps_gtk.pm: allow X server to use :9 (:1
+ seems to not working ?) and disable access control (no clients
+ can connect by default).
+
+2003-06-04 17:19 Fançois Pons
+
+ * perl-install/pkgs.pm: updated for newer perl-URPM (0.90 series).
+
+2003-06-04 17:18 Fançois Pons
+
+ * rescue/list: updated with rpm 4.2.
+
+2003-06-04 17:11 Fançois Pons
+
+ * tools/syncrpms: avoid updating kernel-BOOT (as kernel-BOOT of
+ cooker is pure shit).
+
+2003-06-04 17:11 Fançois Pons
+
+ * tools/updatehdlist: update only RPMS1 and RPMS2 to keep other
+ package in RPMS3.
+
+2003-06-04 13:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: allow specifying lv_name in auto_installs
+ (not tested!)
+
+2003-06-04 13:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/: lvm.pm, diskdrake/interactive.pm: allow choosing
+ lv name (thanks to Brian Murrell)
+
+2003-06-04 13:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: don't use framebuffer after
+ install on i845 (even if framebuffer works during install) (this
+ implies no graphical boot)
+
+2003-06-03 16:30 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: et.po, ja.po, sq.po, vi.po: updated
+ Estonien, Japanese, Albanian and Vietnamese po files
+
+2003-06-02 19:55 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Update
+
+2003-06-02 16:42 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: updated Spanish translations
+
+2003-05-31 12:01 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: keyboard.pm, share/po/DrakX.pot, share/po/af.po,
+ share/po/ar.po, share/po/az.po, share/po/be.po, share/po/bg.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/fi.po, share/po/fr.po, share/po/ga.po, share/po/gl.po,
+ share/po/he.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/lt.po, share/po/lv.po, share/po/mt.po, share/po/nl.po,
+ share/po/no.po, share/po/pl.po, share/po/pt.po,
+ share/po/pt_BR.po, share/po/ro.po, share/po/ru.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/tr.po, share/po/uk.po,
+ share/po/uz.po, share/po/vi.po, share/po/wa.po,
+ share/po/zh_CN.po, share/po/zh_TW.po: changed the name of the
+ russian phonetic layout
+
+2003-05-30 20:51 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/de.po: updated German file
+
+2003-05-30 20:31 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
+ tr.po, uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated
+ Vietnamese file
+
+2003-05-30 15:57 Guillaume Cottenceau
+
+ * perl-install/: drakxtools.spec, standalone/mousedrake: add mouse
+ test in non-embedded mode (#2049)
+
+2003-05-28 17:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fi.po, he.po, hr.po, hu.po, id.po, is.po,
+ it.po, lt.po, lv.po, mt.po, nl.po, no.po, ro.po, ru.po, sq.po,
+ ta.po, tg.po, th.po, tr.po: updated Albanian file
+
+2003-05-28 16:49 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/isdn.pm: forgot to commit the new
+ configuration step
+
+2003-05-28 15:39 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/isdn_consts.pm: s/my/our/ to make
+ perl_checker happy in isdn.pm
+
+2003-05-28 15:37 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/isdn.pm: - remove isdn-light config (seen
+ with isdn4net maintainer) - new step to keep old device
+ configuration
+
+2003-05-28 15:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn_consts.pm: fix isdndata export in
+ stripped package
+
+2003-05-28 13:55 Guillaume Cottenceau
+
+ * mdk-stage1/dhcp.c: grow MAX_ARP_RETRIES from 4 to 7 after erwan's
+ suggestion
+
+2003-05-28 13:38 Fançois Pons
+
+ * perl-install/network/modem.pm: remove /dev/ttyS14 link by
+ drakconnect.
+
+2003-05-27 17:37 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: af.po, ar.po, az.po, be.po, bg.po, br.po,
+ bs.po, ca.po, cs.po, cy.po, da.po, de.po, et.po, ga.po, gl.po:
+ updated Estonian file
+
+2003-05-27 16:05 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/any.pm: - user name must begin with a letter but not
+ with a number or - or _
+
+2003-05-27 15:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.5mdk
+
+2003-05-27 15:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.4mdk
+
+2003-05-27 14:23 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: updated Spanish translation
+
+2003-05-26 17:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, el.po, eo.po, es.po, et.po,
+ eu.po, fi.po, fr.po, ja.po, ko.po, pl.po, pt.po, pt_BR.po, sk.po,
+ sl.po, sq.po, sr.po, sr@Latn.po, sv.po, uk.po, uz.po, vi.po,
+ wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-05-26 16:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/commands: use formatError to display the error
+ message (to have a better error message than "SCALAR(0x....) at
+ ...")
+
+2003-05-26 13:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: be perl_checker prototype compliant
+
+2003-05-26 11:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/: interactive.pm, interactive/http.pm,
+ interactive/newt.pm: - methods with no argument are not functions
+ with no argument! - perl_checker fixes
+
+2003-05-24 17:59 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: Added new toggle possibilities to the
+ menu; use "en_US" for US layout
+
+2003-05-23 18:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: .perl_checker, fsedit.pm, handle_configs.pm,
+ install_steps.pm, install_steps_interactive.pm, my_gtk.pm,
+ partition_table.pm, diskdrake/interactive.pm, interactive/gtk.pm,
+ interactive/http.pm, network/modem.pm, network/network.pm,
+ partition_table/bsd.pm, partition_table/raw.pm,
+ partition_table/sun.pm, printer/main.pm, printer/printerdrake.pm,
+ security/msec.pm, standalone/drakTermServ,
+ standalone/drakautoinst, standalone/drakbackup,
+ standalone/drakboot, standalone/drakbug, standalone/drakconnect,
+ standalone/drakfloppy, standalone/drakfont, standalone/drakgw,
+ standalone/drakperm, standalone/drakpxe, standalone/draksec,
+ standalone/draksplash, standalone/fileshareset,
+ standalone/harddrake2, standalone/logdrake,
+ standalone/net_monitor: perl_checker fixes
+
+2003-05-23 18:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: next release
+
+2003-05-23 17:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ja.po: updated Japanese file
+
+2003-05-23 17:37 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2003-05-23 15:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfirewall: please perl_checker
+
+2003-05-23 15:50 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/: install_gtk.pm, share/list.ia64: Clean-ups. Remove
+ /var/log/XFree86.0.log from filelist
+
+2003-05-23 15:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: perl_checker fixes
+
+2003-05-23 13:44 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/drakxtools.spec: Update changelog
+
+2003-05-23 12:15 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/insmod-modutils/obj/Makefile: -Wno-error on IA-64 too
+ for insmod-modutils/obj
+
+2003-05-23 11:18 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/network.pm: #3628 /etc/resolv.conf explicit
+ rights set (by titi)
+
+2003-05-23 10:56 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/: any.pm, bootloader.pm: Kernel and initrd are now
+ in /boot/efi/mandrake on IA-64
+
+2003-05-23 00:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbug: do not mix interactive and
+ ugtk2, let reusse create_dialog()
+
+2003-05-23 00:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbug: do not set twice the title,
+ ugtk2->new already do it for us
+
+2003-05-23 00:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbug: remove unused variable
+
+2003-05-23 00:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: drakbug, drakconnect, draksplash,
+ logdrake: gtk+-2 specs prohibid playing with policy
+
+2003-05-23 00:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbug: (quit_global) inline it
+
+2003-05-23 00:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbug: - further clean gui construction
+ through functionnal ugtk2 - do not gratuitously add: o " "
+ around button labels o empty strings at end of kernel release -
+ (parse_release) simplify - there's no need to keep a reference on
+ field that we do not further use (distro release is parsed
+ again when needed and kernel release is already stored in some
+ variable) - do not pack nothing to widgets
+
+2003-05-22 23:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbug: - simplify gui construction
+ through create_packtable(), we really do not have to offuscate
+ it like c programmers have to
+
+ - one shall not be able to alter kernel or distribution release
+ number
+
+2003-05-22 23:25 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-05-22 19:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: (build_list) simplify ip
+ parsing
+
+2003-05-22 19:39 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
+ tr.po, uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated
+ pot file
+
+2003-05-22 19:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.3mdk
+
+2003-05-22 19:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: workaround #3341: display
+ "Bad ip" instead of a blank field if ip wasn't correctly parsed
+ as an ip ?
+
+2003-05-22 18:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: next 9.2-0.3mdk bits
+
+2003-05-22 18:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: do not fork usb module drivers
+ list but reuse list_modules one instead
+
+2003-05-22 17:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: fix #2291
+
+2003-05-22 17:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: kill some warnings catched by
+ diagnostics pragma
+
+2003-05-22 16:17 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Fix differntial user file
+ naming.
+
+2003-05-22 16:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: better english (#1342)
+
+2003-05-22 12:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix #3485
+
+2003-05-22 10:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update fr translation
+
+2003-05-21 23:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.2-0.3mdk's first bits (more to
+ com tomorrow)
+
+2003-05-21 19:16 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/network.pm: add some ip checking (#853)
+ remove old comments
+
+2003-05-21 17:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: remove unused function that
+ should never have come to live
+
+2003-05-21 17:19 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: fix gc sux in 1.117 modfiying function
+ behaviour
+
+2003-05-21 17:19 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: be.po, bg.po, ru.po, sr.po, uk.po: put
+ "yawerty" in cyrillic for languages using cyrillic alphabet
+
+2003-05-21 17:18 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: gtktext_insert: fix indenting of one line,
+ takes that as a pretext to redo whole function identing without
+ tabs
+
+2003-05-21 17:15 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: beautify titi
+
+2003-05-21 16:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/gimp.pm: please gc
+
+2003-05-21 16:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: - help menu items are not
+ checkable - do not display spurious "/" on menu buttons when
+ embedded - (strip_first_underscore) let speedup the regexp
+
+2003-05-21 16:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (gtktext_append) fix gtktext_insert() call
+
+2003-05-21 16:23 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations
+
+2003-05-21 13:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: we already have fork()+exec()
+ detect_loader, so there's no need to do it again
+
+2003-05-21 01:54 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po,
+ tr.po, uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated
+ pot file
+
+2003-05-21 00:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: (probe_category): one regexp is enough
+ for isdn
+
+2003-05-20 23:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/.perl_checker: check again printerdrake, this would
+ have prevent whoever altered network::netconnect::main() to
+ forget some calle when updating all calle for new parameters
+ signature :-(
+
+2003-05-20 23:52 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: Updates
+ gi/perl-install/share/po/da.po
+
+2003-05-20 23:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/gimp.pm: typo fix
+
+2003-05-20 23:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-0.2mdk
+
+2003-05-20 23:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: printer/detect.pm, printer/main.pm,
+ standalone/printerdrake: perl_checker fixes
+
+ printer::printerdrake::{setup_smb,setup_socket}(): do not use
+ undef values, but reuse those we just calculate
+
+ printer::printerdrake::main(): fix
+ printer::default::printer_type() callee
+
+2003-05-20 23:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - perl_checker fixes, which
+ show up the following bugs:
+
+ - printer::printerdrake::{setup_smb,setup_socket}(): do not use
+ undef values, but reuse those we just calculate
+
+ - printer::printerdrake::main(): fix
+ printer::default::printer_type() callee
+
+ - printer::printerdrake::check_network(): fix
+ network::netconnect::main() callee
+
+2003-05-20 23:32 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Partially updated
+
+2003-05-20 23:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/gimp.pm: (pop_spaces) prevent infinite loop
+
+2003-05-20 23:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/common.pm: (set_permissions): owner and group are
+ optional parameters
+
+2003-05-20 18:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: distriblint fix
+
+2003-05-20 17:26 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/ethernet.pm: #763 #2336 fix alias in
+ modules.conf
+
+2003-05-20 16:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/scannerdrake: (removeverticalbar)
+ pixelate
+
+2003-05-20 16:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/main.pm: prevent set_usermode() vs
+ set_cups_autoconf() conflict
+
+2003-05-20 16:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/main.pm: restore service restart
+
+2003-05-20 15:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: draksplash, scannerdrake: perl_checker
+ fixes
+
+2003-05-20 15:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: try to simplify
+
+2003-05-20 15:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: one last fix
+
+2003-05-20 15:29 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/modules/interactive.pm: fix BUG 2530, no more
+ spurious window when insmoding fail
+
+2003-05-20 15:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: further bits for 9.2-0.1mdk
+
+2003-05-20 15:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: fix #1743: offer to restart the
+ dm service
+
+2003-05-20 15:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/gimp.pm: (addprinter,isprinterconfigured):
+ remove temp variables
+
+2003-05-20 12:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: de.po, et.po, fi.po: updated German,
+ Estonian and Finnish files
+
+2003-05-20 12:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/nfs.pm: (find_servers): chomp is uneeded
+
+2003-05-20 12:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: (put_font_dir): $/variable is
+ unlikely what was initially intended
+
+ (chk_empty_xfs_path): typo fix
+
+ (search_dir_font_uninstall): further simplify
+
+2003-05-20 12:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: (chk_empty_xfs_path): - any {
+ !cdt} equals to every { cdt } - if_ is unneeded
+
+ (search_dir_font_uninstall) map { if_(cdt, $_ } equals to grep {
+ cdt }
+
+2003-05-20 11:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: (file_ok_sel) prevent potential
+ crash in perl regexp engine if sg bad happenned in the
+ translation
+
+2003-05-20 11:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/nfs.pm: (find_exports) better behavior when
+ regexp does not match
+
+2003-05-20 11:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: for whatever reason, the second part
+ of detect_bootloader() consolidation didn't make up into the cvs
+
+2003-05-20 11:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update french translation
+
+2003-05-20 11:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: better explanation of the wp
+ field
+
+2003-05-20 11:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: fix #3960: divide by zero
+ execption
+
+2003-05-20 11:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: fix #3959 : add aic79xx scsi host
+ controller driver
+
+2003-05-20 10:54 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/ethernet.pm: perl_checker compliant
+
+2003-05-20 10:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: first bits of 9.2-0.1mdk
+
+2003-05-20 10:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/my_gtk.pm: fix #3952: do not pass extra argument (gc
+ altered common::take_screenshot() api in r1.172 but forget to
+ alter all callees)
+
+2003-05-20 09:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/msec.pm: - fix #3616 (draksec discarding
+ changes) - add a end of line btw at the end of file to please cat
+
+2003-05-20 09:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/xfreeX.pm: perl_checker fix
+
+2003-05-19 16:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: add a bug reference
+
+2003-05-19 16:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: some drakconnect cleanups
+
+2003-05-19 16:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: in standalone drakboot, raise a wait message
+ window so that the user can figure out what occurs (lilo
+ installation being quite long)
+
+2003-05-19 16:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: dialog window is already modal
+
+2003-05-19 16:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/main.pm: - (read_location, rip_location):
+ simplify loop condition since once we get $location_end, we
+ exit it
+
+ - (rip_location): simplify @location build when no existing one
+
+2003-05-19 16:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/main.pm: - (get_cups_autoconf,
+ set_cups_autoconf, get_usermode, set_usermode): simplify a lot
+ through getVarsFromSh() and setVarsInSh()
+
+ - (set_jap_textmode) simplify a lot through substInFile()
+
+ now all /etc/sysconfig/printing accesses get done by
+ MDK::Common::File (until shell template from libconf is used)
+
+2003-05-19 16:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/gimp.pm: (gimp::pop_spaces): consolidate
+ skipping of lines that are space ended
+
+2003-05-19 16:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/: cups.pm, default.pm, detect.pm, gimp.pm,
+ main.pm, office.pm, printerdrake.pm, services.pm: perl_checker
+ fixes
+
+2003-05-19 16:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: localize drive capabilites
+ (aka burning, dvd managment, ...)
+
+2003-05-19 16:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: bootloader.pm, standalone/drakboot: fix #3560
+ (drakboot not updating bootloader label): the only confusing bug
+ is that when one come back to drakboot main window after having
+ altered the bootloader, the main window still list the old
+ bootloader as the current bootloader.
+
+ let update this label.
+
+ btw consolidate bootloader detection in
+ bootloader::detect_bootloader()
+
+2003-05-19 16:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: further fix #2826 (lilo failling to
+ handle entry with spaces): replace spaces by underscores in
+ labels (image names are not likely to contain spaces) to prevent
+ the error
+
+2003-05-19 16:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: when configuring to install grub
+ bootloader, we first install lilo, then grub.
+
+ the logic is that we only reread /etc/lilo.conf[1], so we need to
+ write /etc/lilo.conf. but when installing grub, we really do not
+ need to run lilo, we only have to write its config file.
+
+ [1] because grub/menu.lst lacks some data and because we do
+ neither want to parse both config files nor to resolve conflicts
+ between configuration
+
+2003-05-19 16:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: let further consolidate
+ make_label_lilo_compatible()
+
+2003-05-19 16:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: update perl-gtk0 users list
+ (drakcronat being ported to gtk+2)
+
+2003-05-19 16:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_steps.pm: fix
+ network::netconnect::save_conf() callee
+
+2003-05-19 15:52 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: updated Spanish translations
+
+2003-05-19 15:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/lsnetdrake: simplify
+
+2003-05-19 15:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/nfs.pm: do not drop return values from
+ regexp but use them to ensure we do not reuse capture buffers
+ from previous one, which is really bad and trully buggy
+
+2003-05-19 15:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: move expert stuff under the
+ "advanced" button like in all other drakx/drakxtools code
+
+2003-05-19 15:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: %langs: first column is supposed to be
+ localized in english
+
+2003-05-19 15:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: last 9.1-38mdk bits
+
+2003-05-16 19:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: first bits of 9.1-38mdk
+
+2003-05-16 17:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: uk.po, uz.po, vi.po, wa.po, zh_CN.po,
+ zh_TW.po: updated pot file
+
+2003-05-16 17:50 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: sk.po, sl.po, sq.po, sr.po, sr@Latn.po,
+ sv.po, ta.po, tg.po, th.po, tr.po: updated pot file
+
+2003-05-16 17:47 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: lv.po, mt.po, nl.po, no.po, pl.po, pt.po,
+ pt_BR.po, ro.po, ru.po: updated pot file
+
+2003-05-16 17:44 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ga.po, gl.po, he.po, hr.po, hu.po, id.po,
+ is.po, it.po, ja.po, ko.po, lt.po: updated pot file
+
+2003-05-16 17:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: da.po, de.po, el.po, eo.po, es.po, et.po,
+ eu.po, fi.po, fr.po: updated pot file
+
+2003-05-16 17:39 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add a step to warn user
+ before writing settings (bug #852 and so)
+
+2003-05-16 17:38 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.po, br.po, bs.po, ca.po, cs.po, cy.po: updated pot file
+
+2003-05-16 16:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn_consts.pm: let it work
+
+2003-05-16 16:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: perl_checker fix
+
+2003-05-15 20:19 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, ja.po: updated pot file
+
+2003-05-15 18:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_dialog) scroll window if needed
+
+2003-05-15 18:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: - describe wp flag on ia32
+ cpus - make all field descriptions begin by a lower case letter
+
+2003-05-15 18:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: - 9.1-37mdk - bump require in order
+ to help rpm to update for new autoreq
+
+2003-05-15 17:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: ugtk2.pm, standalone/harddrake2: - (create_dialog)
+ : o options are passed through a hash ref o wrap text o
+ update caller list - harddrake2: convert to use create_dialog()
+ instead of interactive->warn (fix #3487)
+
+2003-05-15 17:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: bump version
+
+2003-05-15 17:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: ugtk2.pm, standalone/drakfloppy,
+ standalone/drakfont: (create_dialog) : - update caller list - add
+ title parameter and update callers
+
+2003-05-15 17:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk.pm: mark it as deprecated
+
+2003-05-15 16:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: remove unused variable
+
+2003-05-15 16:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: do not use interactive to get
+ root capabilties, directly use require_root_capability()
+
+2003-05-15 16:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: fix #1352 : do not add buggy
+ font directories
+
+2003-05-15 16:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: hide "mode switch" buttons to
+ only enable to switch to the other mode, not the current one
+
+2003-05-15 14:47 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Typo fix
+
+2003-05-15 05:28 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates
+ gi/perl-install/share/po/da.po
+
+2003-05-15 01:02 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Some fixes and so...
+
+2003-05-15 00:37 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated partially
+
+2003-05-14 14:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: - uninline poulpy
+
+ - use map instead of foreach in some places
+
+ - (chk_empty_xfs_path): replacing foreach by map make obvious
+ that we don't have to grep all items, grep will be enough
+
+ - (put_font_dir): consolidate some code into convert_fonts; this
+ make obvious there were some bug due to $/varname typo; this
+ also reduce the message to translate ammount
+
+2003-05-14 13:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: perl_checker fixes
+
+2003-05-14 00:23 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/: drakTermServ, drakbackup: perl_checker
+ cleaning
+
+2003-05-13 21:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: cleanups
+
+2003-05-13 21:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - remove 80% of perl_checker
+ warnings - gtkbuttonset is not exported by ugtk2
+
+2003-05-13 21:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: - gtkcreate_img is exported
+ by helpers tag in ugtk2 - add a bug note: write_on_pixmap() is
+ only in my_gtk, not in ugtk2 !
+
+2003-05-13 21:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: better use s/_get/get/ and
+ {get,set}_fraction instead of ->fraction helper
+
+2003-05-13 20:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: better use get instead of _get
+
+2003-05-13 20:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakxtv: help perl_checker by providing
+ an empty prototype
+
+2003-05-13 17:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/.perl_checker: ignore URPM::Resolve until francois
+ qiet it down
+
+2003-05-13 16:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/main.pm:
+ (configure_everything_or_configure_chooser) keyboard and mouse
+ paremeters really are optional, Xconfig::default::configure()
+ handle the fact they're undefined for us
+
+2003-05-13 16:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: let ugtk2->new manage the title
+ setting
+
+2003-05-13 16:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakgw: perl_checker fixes
+
+2003-05-13 16:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: perl_checker fix
+
+2003-05-13 16:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbug: make option managment look like
+ real perl
+
+2003-05-13 16:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: - add empty prototypes to
+ help perl_checker - has_sub_trees: better use ||
+
+2003-05-13 00:37 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: perl_checker compliance,
+ differential mode option, explain adding directories
+
+2003-05-12 20:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: - pass enough dummy parameters
+ to fs::merge_info_from_fstab - add empty prototypes to help
+ perl_checker catch miss writeen func calls
+
+2003-05-12 19:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: help auto-provides
+
+2003-05-12 18:34 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/isdn.pm: s/@isdn::isdndata/@isdndata/
+
+2003-05-12 18:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-36mdk
+
+2003-05-12 18:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: - do not log localized
+ messages; what's more, this is supposed to be already logged by
+ standalone - in testing mode: o do not enforce the need for
+ bootsplash o do not really run mkinitrd - if bootsplash miss,
+ we should just go back to main config window
+
+2003-05-12 17:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm: have the "Ok" in
+ ask_from__add_modify_remove return true in default mode (eg:
+ newt)
+
+2003-05-12 17:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: use matched values only if matching did
+ success
+
+2003-05-12 13:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/diskdrake: add "--list-hd" to please
+ gbeauchesne
+
+2003-05-11 01:35 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates
+ gi/perl-install/share/po/da.po
+
+2003-05-09 13:49 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/he.po: updated Hebrew file
+
+2003-05-07 17:38 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - follow new
+ network::netconnect::save_conf signature - remove call to
+ network::netconnect::set_net_conf, no longer exist
+
+2003-05-07 17:36 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/netconnect.pm: - configuration stuff .
+ rewrite sub save_conf, new signature is ($netcnx) . rewrite sub
+ load_conf, connection type stored in /etc/sysconfig/drakconnect
+ . remove sub read_raw_net_conf . shrink sub read_net_conf - drop
+ if ($nb < 1 ), useless - perl_checker
+
+2003-05-07 11:18 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/isdn.pm:
+ s|/sbin/isdnctrl|/usr/sbin/isdnctrl|
+
+2003-05-06 23:41 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: More entries
+
+2003-05-06 18:27 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/tools.pm: - drop !$::isWizard code -
+ perl_checker
+
+2003-05-06 18:23 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - drop !$::isWizard code -
+ change netconnect::main signature - change
+ network::modem::ppp_configure signature - perl_checker - cleanup
+
+2003-05-06 18:21 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/netconnect.pm: - remove sub intro - change
+ sub main signature - drop !$::isWizard code - perl_checker
+
+2003-05-06 18:18 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: change
+ network::netconnect::main signature
+
+2003-05-06 16:06 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: he.po, ru.po: updated Hebrew and Russian
+ files
+
+2003-05-06 16:01 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: keyboard.pm, lang.pm, pixmaps/langs/lang-sh.png,
+ pixmaps/langs/lang-sp.png, share/po/sp.po, share/po/sr.po,
+ share/po/sr@Latn.po: Renamed Serbian po files to follow standard
+ (sr -> cyrillic, sr@Latn -> latin). 'sh' is used internally by
+ DrakX for identifier by DrakX; and 'sh_YU' used as locale name,
+ for latin Serbian, to avoid use of '@' character which may be
+ problematic in some cases.
+
+2003-05-06 15:15 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/drakxtools.spec: Fix changelog
+
+2003-05-06 15:11 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/standalone/drakboot: Fix drakboot booloader methods
+ for ia64 and amd64
+
+2003-05-06 03:17 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: crash on add other files fix
+ disabled incremental other files checkbox fix lack of incremental
+ backups of other files fix broken daemon mode fix file remove
+ issue I know it fails perl_checker - require ugtk2 never returns
+ on console
+
+2003-05-05 18:20 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: - remove unused $intf in
+ adsl_probe_info and adsl_ask_info - perl_checker fixes
+
+2003-05-05 18:19 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/ethernet.pm: perl_checker fixes
+
+2003-05-05 17:22 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/netconnect.pm: - change configure and
+ winmodemConfigure args (due to $intf drop)
+
+2003-05-05 17:21 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/modem.pm: - drop unused $intf in configure
+ and winmodemConfigure - fix winmodem configuration behavior -
+ perl_checker
+
+2003-05-02 18:57 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakfont: fix sucky fonction (thanks to
+ master guillaume)
+
+2003-05-02 18:55 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/ethernet.pm: fix typo
+
+2003-05-02 18:55 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/: netconnect.pm, network.pm, tools.pm:
+ perl_checker fixes
+
+2003-04-30 17:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-35mdk
+
+2003-04-30 16:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/level.pm: fix #3618
+
+2003-04-30 15:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbug: perl_checker fixes
+
+2003-04-30 15:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: perl_checker fixes
+
+2003-04-30 15:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: perl_checker fix
+
+2003-04-30 15:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/scanner.pm: perl_checker fixes
+
+2003-04-30 15:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: - no non empty prototypes -
+ s/sub { one func call }/code ref/
+
+2003-04-30 15:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_dialog): - second parameter really
+ is optionnal - do not blindly set the title to logdrake, this is
+ used elsewhere
+
+2003-04-30 15:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: perl_checker fixes
+
+2003-04-30 15:02 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakfont: more perl_checker compliant
+
+2003-04-30 14:17 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/zh_CN.po: Changed charset encoding
+
+2003-04-30 12:57 Guillaume Cottenceau
+
+ * perl-install/any.pm: have /etc/sysconfig/i18n in report.bug
+
+2003-04-30 12:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/: c.pm, detect_devices.pm, http.pm, install2.pm,
+ install_steps.pm, interactive.pm, lang.pm, pkgs.pm, swap.pm,
+ Xconfig/resolution_and_depth.pm, network/adsl.pm,
+ network/isdn.pm, partition_table/sun.pm: perl_checker compliance
+
+2003-04-30 11:47 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: remove export for two removed functions
+
+2003-04-30 10:23 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/partition_table.pm: Revert XFS support, not stable
+ enough especially on SMP
+
+2003-04-30 00:01 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: perl_checker can parse me at last
+
+2003-04-29 19:33 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated partially
+
+2003-04-29 17:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: no doble module loading
+
+2003-04-29 15:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-34mdk
+
+2003-04-29 15:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: fix #3701: return back to the
+ display managers menu if one cancel the installation of the
+ required packages
+
+2003-04-29 14:00 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakfont: more perl_checker friendly
+
+2003-04-29 12:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: (get_parameters) perl-ize
+
+2003-04-29 11:48 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakfont: empty install list at cancel
+
+2003-04-29 11:42 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakfont: prevent void list installation
+
+2003-04-28 17:34 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: bg.po, he.po: updated Hebrew and
+ Bulgarian files
+
+2003-04-28 14:43 Guillaume Cottenceau
+
+ * rescue/list.i386: add resize_reiserfs
+
+2003-04-26 14:50 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2003-04-24 21:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, c.pm, commands.pm, common.pm, crypto.pm,
+ detect_devices.pm, devices.pm, fs.pm, fsedit.pm, install2.pm,
+ install_any.pm, install_messages.pm, install_steps.pm,
+ install_steps_auto_install.pm, install_steps_interactive.pm,
+ interactive.pm, keyboard.pm, lang.pm, loopback.pm, lvm.pm,
+ modules.pm, mouse.pm, partition_table.pm, pkgs.pm, raid.pm,
+ scanner.pm, services.pm, timezone.pm, ugtk2.pm, Xconfig/card.pm,
+ Xconfig/monitor.pm, Xconfig/various.pm, Xconfig/xfree3.pm,
+ diskdrake/hd_gtk.pm, diskdrake/interactive.pm,
+ diskdrake/removable.pm, diskdrake/smbnfs_gtk.pm,
+ harddrake/data.pm, harddrake/sound.pm, interactive/http.pm,
+ interactive/newt.pm, interactive/stdio.pm, network/isdn.pm,
+ network/netconnect.pm, network/shorewall.pm, network/tools.pm,
+ partition_table/gpt.pm, resize_fat/directory.pm,
+ security/level.pm, standalone/draksec, standalone/harddrake2:
+ perl_checker adaptations + fixes
+
+2003-04-24 14:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix conflict with
+ perl-Locale-gettext
+
+2003-04-24 09:15 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/drakxtools.spec: 1.1.19-56mdk
+
+2003-04-23 19:35 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/partition_table.pm, perl-install/share/list.x86_64,
+ rescue/list.x86_64: add xfs for amd64
+
+2003-04-23 17:46 Guillaume Cottenceau
+
+ * rescue/list: file-4.02
+
+2003-04-23 17:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-32mdk
+
+2003-04-23 15:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/help.pm: add prototypes
+
+2003-04-23 15:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/help_xml2pm.pl: add prototypes to help.pm
+
+2003-04-23 15:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update french translation
+
+2003-04-23 13:25 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: help-it.pot, pl.po, pt.po, pt_BR.po,
+ ro.po, ru.po, sk.po, sl.po, sp.po, sq.po, sr.po, sv.po, ta.po,
+ tg.po, th.po, tr.po, uk.po, uz.po, vi.po, wa.po, zh_CN.po,
+ zh_TW.po: updated pot file
+
+2003-04-23 13:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: - localedrake is part of
+ drakxtools-newt, so does its menu entry (and sanitize its entry
+ btw) - drakxtools-newt: add the needed post and postun macros -
+ sort provides'n obsoletes, add missing drakfloppy
+
+2003-04-22 23:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps_gtk.pm,
+ interactive.pm, Xconfig/xfree.pm, Xconfig/xfree3.pm,
+ Xconfig/xfreeX.pm: perl_checker compliance for optional method
+ arguments
+
+2003-04-22 23:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: fix typos and cleanup
+ syntax
+
+2003-04-22 23:44 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: et.po, id.po, is.po, it.po, ja.po, ko.po,
+ lt.po, lv.po, mt.po, nl.po, no.po: updated pot file
+
+2003-04-22 21:13 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ca.po, cs.po, cy.po, da.po, de.po, el.po,
+ eo.po, es.po, et.po, eu.po, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po: updated pot file
+
+2003-04-22 17:03 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.po, br.po, bs.po: updated pot file
+
+2003-04-22 15:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: array costs less than a hash
+
+2003-04-22 13:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm: adapt to new help.pm
+
+2003-04-22 13:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/: help.pm, share/po/help_xml2pm.pl: fix typo
+ (help.pm must return a true value)
+
+2003-04-22 13:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/: share/po/help_xml2pm.pl, help.pm,
+ share/po/help-de.pot, share/po/help-es.pot, share/po/help-fr.pot,
+ share/po/help-it.pot, share/po/help-ru.pot: per Pablo's request:
+ - create a mini header in the generated help-*.pot files -
+ guilabel, guibutton and guimenu now uses %s to separate more
+ cleanly what comes is doc and what is gui text !! the new
+ generated help.pm has a different interface, non-backward
+ compliant !!
+
+2003-04-22 12:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: fix bug #3652 (grub must be
+ installed for a loopback install)
+
+2003-04-22 09:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-31mdk
+
+2003-04-22 04:08 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: fixed slovak translation (thanks to
+ Stanislav Visnovsky and Zdenko Podobny)
+
+2003-04-21 21:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/keyboard.pm: 'Option "XkbCompat" "group_led"' is no
+ good because
+
+ it means that effectively NO other compatibility
+ settings
+ are included i.e. NONE of standard XFree86 keys work,
+ including Ctrl-Alt-Fx, Ctrl-Alt-KP+, Ctrl-Alt-KP- etc.
+
+ 'Option "XkbCompat" "default+group_led"' is much better (thanks
+ Andrey Borzenkov)
+
+2003-04-21 20:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: have bison and flex installed when
+ DEVELOPMENT is chosen (thanks to Adam Williamson)
+
+2003-04-21 13:20 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/it.po: updated Italian file
+
+2003-04-18 13:50 Fançois Pons
+
+ * perl-install/install_any.pm: make all CD as update (as it should
+ have been to allow updates to be resolved).
+
+2003-04-17 16:51 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/drakxtools.spec: Use RPM_OPT_FLAGS when compiling
+ tools (rpcinfo-flushed)
+
+2003-04-17 15:58 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/drakxtools.spec: 1.1.9-55mdk
+
+2003-04-17 14:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: another perl_checker optional parameter
+ compliance
+
+2003-04-17 13:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, bootloader.pm, common.pm, crypto.pm,
+ detect_devices.pm, devices.pm, fs.pm, fsedit.pm, ftp.pm,
+ install_any.pm, install_interactive.pm, install_steps.pm,
+ install_steps_gtk.pm, install_steps_interactive.pm,
+ interactive.pm, lang.pm, modules.pm, mouse.pm,
+ partition_table.pm, pkgs.pm, scanner.pm, timezone.pm, ugtk2.pm,
+ Xconfig/main.pm, Xconfig/monitor.pm, Xconfig/parse.pm,
+ Xconfig/resolution_and_depth.pm, Xconfig/various.pm,
+ Xconfig/xfreeX.pm, diskdrake/hd_gtk.pm, diskdrake/interactive.pm,
+ diskdrake/smbnfs_gtk.pm, interactive/newt.pm,
+ modules/interactive.pm, network/drakfirewall.pm,
+ network/ethernet.pm, network/isdn.pm, network/modem.pm,
+ network/netconnect.pm, network/network.pm,
+ partition_table/dos.pm, partition_table/lvm_PV.pm,
+ partition_table/mac.pm, partition_table/raw.pm,
+ resize_fat/boot_sector.pm, resize_fat/directory.pm,
+ security/various.pm, standalone/diskdrake, standalone/draksec,
+ standalone/drakupdate_fstab: new perl_checker compliance
+
+2003-04-17 11:54 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/list.x86_64: Add raid & reiserfs tools
+
+2003-04-17 11:47 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * tools/Makefile: Compile rpcinfo-flushed/xhost+ with -Os so that
+ code size is reduced and magically fixed on hammer. ;-)
+
+2003-04-16 23:37 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/insmod-busybox/: Config.h, busybox.h, insmod.c: Merge
+ back fixes from HEAD but don't use the init_module() et al.
+ tricks since correct dietlibc 0.22 is used on the branch.
+
+2003-04-16 23:31 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/Makefile: use insmod-busybox on x86-64, save around 50
+ KB. ;-)
+
+2003-04-16 20:32 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/insmod-busybox/: Config.h, busybox.h, insmod.c: Fixes.
+ Don't care about taint stuff. Constify a little so that some dead
+ branches could be nuked. -> Reduce code size by 5 KB.
+
+2003-04-16 19:22 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/insmod-busybox/README: Update README
+
+2003-04-16 19:11 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/insmod-busybox/: Config.h, Makefile, busybox.h,
+ insmod.c: - Update to busybox 0.65.0 version - Add support for
+ x86-64
+
+2003-04-16 18:27 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/insmod-busybox/: Config.h, busybox.h, insmod.c: -
+ Update to insmod from busybox 0.65.0 - Add support for x86-64
+
+2003-04-16 18:26 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/insmod-busybox/Makefile: Use $(DIET) wrapper
+
+2003-04-16 17:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix #1675: swap the text and
+ button widgets
+
+2003-04-16 16:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: comply to new each_index behaviour
+
+2003-04-15 17:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: add hint for translators
+
+2003-04-15 16:40 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * Makefile: Add hd.img & other.img for x86-64
+
+2003-04-15 16:39 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/: check_mar.pl, modules.pl: Don't care about obsolete
+ things on moderns arches like x86-64
+
+2003-04-15 16:38 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/install_any.pm: CD-ROM installations use cdrom.img
+ on x86-64 nowadays
+
+2003-04-15 15:59 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/detect_devices.pm: Fix hasSMP()
+
+2003-04-14 17:54 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/: list_modules.pm, modules.pl: Add bcm5700 module to
+ network.img on x86-64 & IA-64
+
+2003-04-14 16:19 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * docs/README, mdk-stage1/dhcp.c, mdk-stage1/stage1.h,
+ mdk-stage1/tools.c: Handle "netauto" mode (gc, post 9.1)
+
+2003-04-14 15:30 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/drakxtools.spec: Match current 9_0-64bit-branch
+ state
+
+2003-04-14 15:28 Guillaume Cottenceau
+
+ * mdk-stage1/: dhcp.c, stage1.h, tools.c: put dhcp bootfile under
+ netauto parameter
+
+2003-04-14 15:25 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/harddrake/data.pm: fix harddrake doesn't display
+ unknow hardware (tv, 9.0 updates)
+
+2003-04-11 17:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/th.po: changed "reboot" to latin letters,
+ as requested.
+
+2003-04-11 12:07 Dam's
+
+ * perl-install/standalone/drakconnect: corrected titi typo
+
+2003-04-10 17:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: any::setupBootloader() already
+ call bootloader::install()
+
+2003-04-10 11:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: it was designed in 2003, not
+ 2002
+
+2003-04-07 16:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: first bits of 9.1-31mdk
+
+2003-04-07 15:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: fix #2826 (aka pixel sucks):
+
+ pixel changed the booloader module api by throwing an exception
+ instead of using the ugly /tmp/.error temporary file and altered
+ drakx callers but forget to update standalone/* callers (aka
+ drakboot).
+
+ now, with this patch, any error during lilo/grub installation is
+ catched and displayed, which is more generic than checking for
+ spaces.
+
+2003-04-07 12:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix harddrake menu entry
+ description
+
+2003-04-04 17:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: bump gtk2-perl require because of
+ #3633
+
+2003-04-04 16:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-30mdk
+
+2003-04-04 16:33 Guillaume Cottenceau
+
+ * docs/README: some fixes and improvements
+
+2003-04-04 15:52 Guillaume Cottenceau
+
+ * docs/HACKING: some updates
+
+2003-04-04 11:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: fix crash on floppy
+ generation reported by Francisco Alcaraz
+
+2003-04-04 09:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: - perl_checker fixes - ensure
+ only one callback do regular parsing
+
+2003-04-04 09:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/scanner.pm: fix doble explanation logging of
+ scannerdrake and harddrake startup
+
+2003-04-03 21:14 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Updated
+
+2003-04-03 19:01 Guillaume Cottenceau
+
+ * perl-install/: drakxtools.spec, ugtk2.pm: after adding
+ gtk_text_buffer_place_cursor in gtk2-perl, use it here :)
+
+2003-04-03 17:50 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: fix #3633 (cursor at the end of TextView
+ after gtktext_insert) remove a few memory leaks
+
+2003-04-02 21:06 Guillaume Cottenceau
+
+ * perl-install/patch/9.1/patch-loopback.pl: Error scenario: When
+ using a file for your / (a "loopback"), booting your newly
+ installed system will fail with a kernel panic with flashing
+ keyboard lights
+
+ Why: The initrd needs to load the loop.o module to mount your /
+ partition; but since recently, loop.o depends on aes.o, and since
+ mkinitrd doesn't handle dependencies automatically and we didn't
+ notice that change, we didn't update mkinitrd accordingly
+
+ Solution: Format a floppy disk with a DOS filesystem (in Linux,
+ you can use the command "mkdosfs /dev/fd0"). Copy patch.pl to the
+ floppy disk. Remove the floppy and reboot using the Mandrake
+ Linux 9.1 CD1 to do a CD-ROM installation. During boot, press F1
+ at the splash screen, then place your floppy disk that contains
+ patch.pl in the floppy drive. At the prompt, type "patch", then
+ follow the installation as usual.
+
+ see bugzilla #3614
+
+2003-04-02 18:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/patch/9.1/patch-detectSMP-K6.pl: Error scenario: On
+ a AMD-K6, install fails after the formatting partitions steps
+ with a strange "type read" error Why: in some cases, the SMP
+ detection code fails and force the install to exit Solution: Use
+ patch.pl which disables SMP detection (thanks to Angela Bayley)
+
+2003-04-02 17:48 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nl.po: updated Dutch file
+
+2003-04-02 17:05 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/detect_devices.pm: Update to match IA-64 ACPI format
+ string "XXX CPUs available"
+
+2003-04-02 16:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: standalone/drakTermServ, share/po/DrakX.pot,
+ share/po/af.po, share/po/ar.po, share/po/az.po, share/po/be.po,
+ share/po/bg.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/fi.po, share/po/fr.po, share/po/ga.po, share/po/gl.po,
+ share/po/he.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/lt.po, share/po/lv.po, share/po/mt.po, share/po/nl.po,
+ share/po/no.po, share/po/pl.po, share/po/pt.po,
+ share/po/pt_BR.po, share/po/ro.po, share/po/ru.po,
+ share/po/sk.po, share/po/sl.po, share/po/sp.po, share/po/sq.po,
+ share/po/sr.po, share/po/sv.po, share/po/ta.po, share/po/tg.po,
+ share/po/th.po, share/po/tr.po, share/po/uk.po, share/po/uz.po,
+ share/po/vi.po, share/po/wa.po, share/po/zh_CN.po,
+ share/po/zh_TW.po: s/initrdrd/initrd/ (Arpad Biro)
+
+2003-04-02 16:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: fix pablo patch that broke
+ two translations (reported by Arkadiusz Lipiec)
+
+2003-04-02 14:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: remove unused variable
+
+2003-04-02 14:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: - various perl_checker "fixes"
+ - (logcolorize): make it saner regarding its arguments, thanks
+ perl_checker
+
+2003-04-02 14:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: hackism to shut up perl_checker
+
+2003-04-01 17:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: (parse_file) pass explicit
+ argument instead of relying on lexical $_ being correct in that
+ context (worked fine but this is bad)
+
+2003-04-01 17:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: propagate $in where needed
+
+2003-04-01 17:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: perl_checker fixes
+
+2003-04-01 15:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: share/po/fr.po, standalone/harddrake2: - fix
+ fscking french translation - explain why it's bad to translate
+ this way
+
+2003-04-01 15:22 Guillaume Cottenceau
+
+ * perl-install/lang.pm: misc
+
+2003-04-01 15:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakhelp: simplify
+
+2003-04-01 15:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: install_steps_interactive.pm, harddrake/sound.pm,
+ standalone/draksound: move harddrake::sound $index param in hash
+ and pass only the hash ref around functions
+
+2003-04-01 15:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: - prevent translators to do
+ bad things (that is having badly constructed strings on screen)
+ - reuse some translations instead of relying on extracting tools'
+ merge feature - give translators more control on about window
+ text
+
+2003-04-01 15:00 Fançois Pons
+
+ * rescue/tree/etc/oem-all: added restore into boot_entries default
+ value, increased hd install size from 1500 MB to 2500 MB to
+ include current ackbar cooker repository.
+
+2003-04-01 11:46 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: Pass $Driver to launchX in non
+ /FB/ case
+
+2003-04-01 11:43 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/update_kernel: Reorganize elif code. Better use a case BTW
+
+2003-04-01 11:40 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: Pass $Driver to launchX in non
+ /FB/ case
+
+2003-04-01 10:14 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/: install_gtk.pm, install_steps_gtk.pm: Backport
+ from 9.1 xf4 fallbacking to fbdev driver
+
+2003-04-01 10:02 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/bootloader.pm: Indentation fixes
+
+2003-04-01 09:55 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/install_steps.pm: Remove MAKEDEV workaround for
+ ia64. Fixes must be found, and kernel nowadays have devfs
+ support.
+
+2003-04-01 09:51 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/list_modules.pm: Reintegrate comments that clic people
+ nuked. Also make sure efivars is IA-64 specific.
+
+2003-04-01 09:50 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/update_kernel: Don't default to smp kernel for booting,
+ detectSMP() must work or the APIC trick in perl-install.
+
+2003-04-01 00:25 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: spelling errors po/po/da.po
+ gi/perl-install/share/po/da.po
+
+2003-03-31 23:45 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Typo fix
+
+2003-03-31 19:32 Fançois Pons
+
+ * perl-install/bootloader.pm: copy kernel and stage1 in order to
+ avoid remapping /mnt/hd on the fly during install for bootloader
+ installation to complete correctly.
+
+2003-03-31 17:20 Fançois Pons
+
+ * perl-install/bootloader.pm: fixed regex for kernel options
+ retrieved for restore bootloader entry.
+
+2003-03-31 16:40 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/fr.po: fixed a bad grammatical error
+
+2003-03-31 12:11 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/vi.po: updated Vietnamese file
+
+2003-03-30 23:43 Guillaume Cottenceau
+
+ * perl-install/lang.pm: clean
+
+2003-03-30 22:39 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: spelling errors
+ soft/menu-messages/da.po gi/perl-install/share/po/da.po
+
+2003-03-30 13:57 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: some spelling errors
+ soft/control-center/po/da.po gi/perl-install/share/po/da.po
+
+2003-03-29 18:11 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: Updates soft/GtkMdkWidgets/po/da.po
+ gi/perl-install/share/po/da.po
+
+2003-03-28 18:07 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: Special cases for KDE to recognize zh_HK
+ and zh_SG
+
+2003-03-28 18:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: fix typo, grr...
+
+2003-03-28 18:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: use ServerFlags DontVTSwitch for
+ i845, i865 and i85x
+
+2003-03-28 18:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: also have DontVTSwitch for i845
+ (and i85x)
+
+2003-03-28 17:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: use ServerFlags DontVTSwitch for
+ i865
+
+2003-03-28 17:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: use option DontVTSwitch for i865
+
+2003-03-28 16:27 Guillaume Cottenceau
+
+ * perl-install/patch/9.1/hp.diff: disable arabic
+
+2003-03-28 16:25 Guillaume Cottenceau
+
+ * perl-install/lang.pm: disable arabic whic doesn't work well after
+ install
+
+2003-03-27 14:05 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ja.po: updated Japanese file
+
+2003-03-27 13:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * docs/9.1_errata.txt: - mcc erratas - lexical ordering
+
+2003-03-27 13:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sq.po: updated Albanian file
+
+2003-03-26 18:29 Fançois Pons
+
+ * perl-install/bootloader.pm: fixed another typo for adding restore
+ entry (grub menu).
+
+2003-03-26 16:57 Fançois Pons
+
+ * perl-install/bootloader.pm: fixed wrong usage of
+ any::hdInstallPath which is mapped as /tmp/image during
+ installation.
+
+2003-03-26 16:48 Fançois Pons
+
+ * perl-install/standalone.pm: simplified code to allow parsing
+ rpmdb instead of just urpmi db.
+
+2003-03-26 16:47 Fançois Pons
+
+ * perl-install/install_any.pm: moved hdInstallPath to any.pm.
+
+2003-03-26 16:47 Fançois Pons
+
+ * perl-install/any.pm: removed acpi reference here (should already
+ been have removed earlier). moved here hdInstallPath from
+ install_any.
+
+2003-03-26 16:44 Fançois Pons
+
+ * rescue/tree/etc/oem-all: use fat32 instead of fat16, fixed
+ mandrake-release to install.
+
+2003-03-26 14:51 Fançois Pons
+
+ * perl-install/bootloader.pm: fix typo on grub menu file read.
+
+2003-03-26 13:39 Fançois Pons
+
+ * rescue/tree/etc/oem-all: fix typo.
+
+2003-03-26 13:32 Fançois Pons
+
+ * rescue/tree/etc/oem-all: mandrake-release should be installed.
+
+2003-03-26 11:44 Fançois Pons
+
+ * rescue/tree/etc/oem-all: current parted does no more support fat
+ fs but fat16 or fat32 fs.
+
+2003-03-26 11:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * docs/9.1_errata.txt: first drakxtools errata
+
+2003-03-26 10:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix harddrake menu entry
+
+2003-03-25 19:31 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sq.po: updated Albanian file
+
+2003-03-24 22:30 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated Japanese
+ file; updated pot file
+
+2003-03-24 16:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: - fix changelog - 9.1-28mdk
+
+2003-03-24 16:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/patch/9.1/hp.diff: more hp fixes
+
+2003-03-24 16:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: any.pm, install_steps_interactive.pm: hp fix
+
+2003-03-24 15:08 Fançois Pons
+
+ * perl-install/network/modem.pm: added login and password retrieval
+ for ppp0 in configure function.
+
+2003-03-24 14:20 Fançois Pons
+
+ * perl-install/network/modem.pm: propose /dev/modem before other
+ device (as it will work for other most case).
+
+2003-03-24 14:10 Fançois Pons
+
+ * perl-install/network/: modem.pm, netconnect.pm: added modem
+ configuration after LT Modem support.
+
+2003-03-24 12:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/patch/9.1/hp.diff: mdk9.1 changes for hp
+
+2003-03-24 12:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: first bits of 9.1-26mdk
+
+2003-03-23 14:18 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: it.po, sq.po: updated Italian and
+ Albanian files
+
+2003-03-22 13:03 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: it.po, pt.po, tr.po: updated Italian,
+ Portuguese and Turkish files
+
+2003-03-21 17:59 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ja.po: changed translation fo "mandrakesoft
+ store"
+
+2003-03-21 17:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: increase timeout from
+ 5 to 25 seconds
+
+2003-03-21 13:01 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ja.po: changed "mandrakesoft-shouten" to
+ "mandrakesoft-no shouten" ("store named mandrakesoft" ->
+ "mandrakesoft's store")
+
+2003-03-20 11:12 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: fixed typo.
+
+2003-03-20 11:11 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: add probe for netncx
+ type in case of not already setted.
+
+2003-03-19 23:12 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: fix
+
+2003-03-19 18:06 Fançois Pons
+
+ * perl-install/lang.pm: silently use en_US for arabic.
+
+2003-03-19 17:21 Fançois Pons
+
+ * rescue/tree/etc/: oem, oem-all: added support for passing kernel
+ options to oem scrpit.
+
+2003-03-19 17:14 Fançois Pons
+
+ * perl-install/lang.pm: removed Arabic language (no correct font
+ during install).
+
+2003-03-19 17:13 Fançois Pons
+
+ * perl-install/lang.pm: avoid displaying Hong Kong as a country.
+
+2003-03-19 14:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: properly *both* reap zombies
+ and clear status bar message
+
+2003-03-19 13:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: - fix harddrake2 main window title
+ broken by stupid translators - explain the problem - explain how
+ to easily get « and » caracters
+
+2003-03-19 13:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * docs/mdk-9.2: update, sort
+
+2003-03-19 13:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * docs/9.1_errata.txt: first errate: ntfs kernel bug (bug and fix
+ reported by Szakacsits Szabolcs)
+
+2003-03-18 17:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/wa.po: corrected small typo
+
+2003-03-18 16:40 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate:
+ s/mplayer-guimplayer-gui/mplayer-gui/
+
+2003-03-18 15:50 Fançois Pons
+
+ * rescue/tree/etc/: oem-all, oem: added lookup into isolinux/alt0
+ if possible
+
+2003-03-18 15:42 Fançois Pons
+
+ * rescue/tree/etc/: oem, oem-all: updated ramdisk_size=128000
+ acpi=off
+
+2003-03-18 15:27 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/id.po: updated Indonesian file
+
+2003-03-17 20:18 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ja.po: updated Japanese file
+
+2003-03-17 12:12 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: Add NVIDIA_nforce for smp and secure
+ kernel Fix NVIDIA_nforce entry removing kernel version (added by
+ cleanrpmsrate)
+
+2003-03-17 11:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/pt.po: updated Portuguese file
+
+2003-03-17 11:17 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: FlashPlayer with a capital P
+
+2003-03-17 10:57 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/install_steps.pm: reverted to 1.604
+
+2003-03-17 03:17 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: da.po, it.po: updated Danish and Italian
+ files
+
+2003-03-16 16:30 Warly <warly at mandriva.com>
+
+ * perl-install/drakxtools.spec: 26mdk to fix drakperm
+
+2003-03-16 13:07 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: bs.po, ro.po: updated Bosnian and
+ Romanian files
+
+2003-03-15 16:45 Warly <warly at mandriva.com>
+
+ * perl-install/: drakxtools.spec, install_steps.pm, share/rpmsrate:
+ fix a fatal error in drakpem in editable mode
+
+2003-03-15 16:26 Warly <warly at mandriva.com>
+
+ * perl-install/standalone/drakperm: Fix fatal error in editable
+ window when adding a new entry
+
+2003-03-15 16:25 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/he.po: updated Hebrew file
+
+2003-03-15 11:49 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: bs.po, vi.po: updated Bosnian and
+ Vietnamese files
+
+2003-03-14 23:14 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: el.po, he.po, is.po: updated Greek file
+
+2003-03-14 19:16 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sv.po: updated Swedish file
+
+2003-03-14 18:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix XFdrake handling NVidia
+ proprietary drivers
+
+2003-03-14 18:32 Guillaume Cottenceau
+
+ * mdk-stage1/modules.c: fix myself sux: don't unconditionnally
+ fgets /proc/modules, because fopen may have failed (the libc, in
+ its great search for speed, probably doesn't care to check if the
+ FILE* given to fgets is valid and opened)
+
+2003-03-14 17:54 Fançois Pons
+
+ * perl-install/standalone.pm: fix checking for installed kernel
+ modules (for nvidia) (/me sux) (fix & changelog by pixel)
+
+2003-03-14 14:55 Fançois Pons
+
+ * perl-install/share/rpmsrate: fixed error mandrake_doc
+
+2003-03-14 14:47 Fançois Pons
+
+ * perl-install/install_steps_gtk.pm: made desktop group centred.
+
+2003-03-14 14:47 Fançois Pons
+
+ * perl-install/share/rpmsrate: fixed gnupg using multiple rates.
+
+2003-03-14 14:45 Fançois Pons
+
+ * perl-install/share/rpmsrate: fixed synthax error.
+
+2003-03-14 13:50 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/tr.po: updated Turkish file
+
+2003-03-14 11:54 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/po/fr.po: Fix typo in french ads
+
+2003-03-14 09:27 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: mandrake-galaxy doc link is broken
+ if mandrake_doc is not install. Waiting for a better solution
+ install mandrake_doc via rpmsrate in the same group as
+ mandrake-galaxy.
+
+2003-03-14 04:31 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/zh_CN.po: updated Chinese file
+
+2003-03-14 02:10 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-23mdk
+
+2003-03-13 23:55 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: Fixed bug #417: '$' character in
+ printer URI not correctly handled.
+
+2003-03-13 18:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: via via686 upgdrade after simplification
+ too (next time pixel told me it's better to reuse some regexp, i
+ kill him)
+
+2003-03-13 18:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: fix upgrade after simplification
+
+2003-03-13 18:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: simplify
+
+2003-03-13 17:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: convert alsa driver from old naming
+ system to new one (snd-card-XXX => snd-XXX) and ensure correct
+ upgrade for snd-via683 and snd-via8233 drivers
+
+2003-03-13 16:44 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/no.po: updated Norwegian file
+
+2003-03-13 16:27 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fi.po, ru.po: updated Russian and Finnish
+ files
+
+2003-03-13 16:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * docs/mdk-9.2: more stuff
+
+2003-03-13 15:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_any.pm: alsa drivers are now named
+ snd-<name> not anymore snd-card-<name>
+
+2003-03-13 14:50 Warly <warly at mandriva.com>
+
+ * perl-install/install_gtk.pm: logo is the same for desktop and
+ powerpack installations.
+
+2003-03-13 13:28 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Fix IP pool range bug from
+ gtk2 conversion.
+
+2003-03-13 13:20 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cs.po, eo.po, hu.po, id.po: updated
+ Czech, Esperanto, Indonesian and Hungarian files
+
+2003-03-13 11:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * docs/mdk-9.2: more thoughts
+
+2003-03-13 11:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: cleanup (still need to handle permissions
+ more cleanly, people using umask 0 should be shot)
+
+2003-03-13 10:53 Warly <warly at mandriva.com>
+
+ * perl-install/share/compssUsers.desktop: Make only one sectio.
+ Include KDE/GNOME and documentation into it.
+
+2003-03-13 10:45 Fançois Pons
+
+ * perl-install/install_steps_gtk.pm: desktop group simplification.
+
+2003-03-13 10:45 Fançois Pons
+
+ * make_boot_img: reduced progress bar for isolinux.
+
+2003-03-13 10:27 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: updated Spanish translations
+
+2003-03-13 10:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: more logs
+
+2003-03-13 09:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: fix #3161 (ensure right permissions on
+ /etc/sysconfig/autologin for bad root umask case)
+
+2003-03-13 09:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: first 9.1-22mdk bits
+
+2003-03-13 04:43 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2003-03-13 01:55 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/scanner.pm: Bug fixes: - SHOWSTOPPER: SCSI scanners
+ were never recognized as already configured, the user was
+ always asked whether he wants to configure them. Problem was
+ that device files are symlinks. - Made most ISDN and ADSL
+ devices not being considered as a scanner by Scannerdrake, SANE
+ does not support internet scanners.
+
+2003-03-13 00:40 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cy.po, et.po, he.po: updated Welsh,
+ Estonian and Hebrew files
+
+2003-03-12 23:22 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: updated
+
+2003-03-12 19:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: update requires
+
+2003-03-12 19:33 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nl.po: updated dutch file
+
+2003-03-12 19:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: have fd0 & fd1 be
+ recognised as known entries, even if we don't probe them (useful
+ for harddrake)
+
+2003-03-12 19:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: jackadit^h^h^h^h^ hpixel said:
+ "we do not need anymore --auto"
+
+2003-03-12 19:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * docs/mdk-9.2: better embedded diskdrake hint
+
+2003-03-12 19:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/diskdrake: set by default the fs type and
+ mntpoint for removables not present in fstab (useful for
+ harddrake)
+
+2003-03-12 19:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/diskdrake/hd_gtk.pm: - let diskdrake fit when
+ embedded in mcc - let action box be larger so that there's no
+ horizontal scrollbar in standalone mode
+
+2003-03-12 18:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: fix typo
+
+2003-03-12 17:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/wa.po: fix package build :-(
+
+2003-03-12 17:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: fix first message display
+
+2003-03-12 17:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: better packed paned behavior
+ in both embedded and standalone modes
+
+2003-03-12 17:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-03-12 17:20 Fançois Pons
+
+ * perl-install/standalone.pm: fixed return value of
+ check_kernel_module_packages and examination of synthesis file
+ using current interface of urpm library.
+
+2003-03-12 17:20 Fançois Pons
+
+ * perl-install/standalone.pm: fix small typo.
+
+2003-03-12 17:00 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: fix non-important (but still valid) part
+ of #2488, a.k.a package tree not expanding visually when it
+ should (needs the mouse pointer over it to be updated visually)
+
+2003-03-12 16:35 Fançois Pons
+
+ * perl-install/standalone/XFdrake: fix for newer commercial kernel
+ module package name.
+
+2003-03-12 16:34 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: fix for newer kernel
+ module package name.
+
+2003-03-12 16:34 Fançois Pons
+
+ * perl-install/install_steps.pm: fix for newer commercial package
+ name (kernel module).
+
+2003-03-12 16:09 Fançois Pons
+
+ * perl-install/network/modem.pm: fixed typo.
+
+2003-03-12 16:07 Fançois Pons
+
+ * perl-install/install_steps.pm: added minimal of what is selected
+ log for pkg_install.
+
+2003-03-12 16:05 Fançois Pons
+
+ * perl-install/install_any.pm: added log for kernel module packages
+ found.
+
+2003-03-12 15:56 Fançois Pons
+
+ * perl-install/network/modem.pm: fix ltmodem package name with
+ newer version.
+
+2003-03-12 15:51 Fançois Pons
+
+ * perl-install/detect_devices.pm: fix titi sucks.
+
+2003-03-12 13:59 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: Tagged cyrillic keyboard as non-latin
+
+2003-03-12 12:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/: diskdrake/interactive.pm, install_interactive.pm:
+ fix maximum loopback size (bug #3188)
+
+2003-03-12 12:09 Guillaume Cottenceau
+
+ * perl-install/share/po/ja.po: fix for "Advanced" by utuhiro
+ <utuhiro at mx12.freecom.ne.jp>
+
+2003-03-12 11:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: let it look better
+
+2003-03-12 11:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: shut up perl_checker
+
+2003-03-12 09:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-20mdk
+
+2003-03-12 09:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: really sort
+
+2003-03-12 08:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: harddrake/data.pm, standalone/harddrake2,
+ standalone/service_harddrake: handle multiple removable devices:
+ their managment is different from other hw classes since we need
+ to run a config tool per device and not one per hw class
+
+2003-03-12 08:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: - check if dm package is
+ installed and install it if needed - use format instead of
+ reverse() (not a big slow down but small rivers make big ones
+ and it makes gc happier...)
+
+2003-03-12 00:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cs.po, nl.po: updated Dutch and Czech
+ files
+
+2003-03-12 00:35 Guillaume Cottenceau
+
+ * perl-install/lang.pm: thx perl checko
+
+2003-03-12 00:10 Guillaume Cottenceau
+
+ * perl-install/lang.pm: (pablo) change kde font scheme (crossing
+ fingers)
+
+2003-03-11 23:44 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: typos fixed
+
+2003-03-11 23:36 Guillaume Cottenceau
+
+ * perl-install/share/po/fr.po: rephrase a bit MNF advert to make it
+ fit
+
+2003-03-11 23:22 Guillaume Cottenceau
+
+ * perl-install/share/po/fr.po: spelling
+
+2003-03-11 22:47 Guillaume Cottenceau
+
+ * perl-install/install_steps_gtk.pm: the shadow behind the new
+ adverts looks ugly, remove it
+
+2003-03-11 22:40 Guillaume Cottenceau
+
+ * perl-install/share/advertising/: 01-thanks.pl, 02-community.pl,
+ 03-software.pl, 04-configuration.pl, 05-desktop.pl,
+ 06-development.pl, 07-server.pl, 08-store.pl, 09-mdksecure.pl,
+ 10-security.pl, 11-mnf.pl, 12-mdkexpert.pl,
+ 13-mdkexpert_corporate.pl: fix pablo breaking translation of
+ advertisement :)
+
+2003-03-11 22:25 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: More gtk2 fixes.
+
+2003-03-11 22:22 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/po/fr.po: Update
+
+2003-03-11 21:48 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/: 01-thanks.pl, 01-thanks.png,
+ 02-community.pl, 02-community.png, 03-software.pl,
+ 03-software.png, 04-configuration.pl, 04-configuration.png,
+ 05-desktop.pl, 05-desktop.png, 06-development.pl,
+ 06-development.png, 07-server.pl, 07-server.png, 08-store.pl,
+ 08-store.png, 09-mdksecure.pl, 09-mdksecure.png, 10-security.pl,
+ 10-security.png, 11-mnf.pl, 11-mnf.png, 12-mdkexpert.pl,
+ 12-mdkexpert.png, 13-mdkexpert_corporate.pl,
+ 13-mdkexpert_corporate.png, list: Update
+
+2003-03-11 21:04 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: Changed Qt Chinese XIMStyle to 'Over The
+ Spot' ('On The Spot' crashes)
+
+2003-03-11 20:04 Guillaume Cottenceau
+
+ * perl-install/install_steps_gtk.pm: new advertisement will be with
+ grey background
+
+2003-03-11 19:34 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: detect.pm, main.pm: Made sure that all IP
+ addresses of the local machine are in 'Allow From' lines in the
+ /etc/cups/cupsd.conf, otherwise one can have certain
+ configurations with which one cannot access to the options of the
+ local printer(s).
+
+2003-03-11 19:20 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: changed KDE default font names for CJK
+
+2003-03-11 18:24 Warly <warly at mandriva.com>
+
+ * perl-install/share/logo-mandrake.png: 9.1 logo
+
+2003-03-11 18:02 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakgw: really use the chosen net_connect
+ interface
+
+2003-03-11 17:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: it.po, no.po: updated Italian and
+ Norwegian files
+
+2003-03-11 17:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, bootloader.pm, standalone/drakboot: fix
+ lilo-menu not working (bug #3048)
+
+2003-03-11 16:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * docs/mdk-9.2: update
+
+2003-03-11 16:50 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: Added button to
+ switch to japanese text file printing.
+
+2003-03-11 16:17 Fançois Pons
+
+ * perl-install/network/adsl.pm: moved probing code outside
+ adsl_ask_info.
+
+2003-03-11 16:17 Fançois Pons
+
+ * perl-install/standalone/drakconnect: added probing of adsl
+ connection.
+
+2003-03-11 15:54 Fançois Pons
+
+ * perl-install/network/ethernet.pm: use $::prefix, waiting for 9.1
+ to be out before cleaning network modules.
+
+2003-03-11 15:43 Fançois Pons
+
+ * perl-install/network/network.pm: changed netcnx type probe (so
+ that if an ethernet connection exists, it won't cause netcnx type
+ to be always lan).
+
+2003-03-11 15:09 Guillaume Cottenceau
+
+ * perl-install/install_steps_interactive.pm: install additional
+ locales package for country according to the locale that will be
+ really used, not according to the default locale for a given
+ country (fixing unecessary installing of locales-de in case of a
+ fr_CH install)
+
+2003-03-11 13:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/main.pm: remove XFdrake icons (per dadou's
+ request)
+
+2003-03-11 12:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: da.po, vi.po: updated Danish and
+ Vientamese files
+
+2003-03-11 10:47 Fançois Pons
+
+ * rescue/tree/etc/oem: modified language settings.
+
+2003-03-11 10:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-19mdk final
+
+2003-03-11 09:48 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: add kdeartwork level 3 in KDE
+
+2003-03-11 03:16 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: office.pm, printerdrake.pm: Many bug
+ fixes: - Wait messages bloxked the OK buttons of the dialogs
+ telling how to scan and how to read photo cards on HP´s MF
+ devices. - Do not configure OpenOffice.org any more, only Star
+ Office. OpenOffice.org is patched to have native CUPS support
+ now. - If the Port for a BrowsePoll address is left blank, 631
+ is taken as default now. - Text for firmware upload for HP
+ LaserJet 1000 now also available in the 'Learn how to use
+ printer' dialog. - Updated check of model name for HP´s MF
+ devices to newest models.
+
+2003-03-10 22:06 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/no.po: minor typo
+
+2003-03-10 20:39 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: some fixes
+
+2003-03-10 20:05 Guillaume Cottenceau
+
+ * perl-install/lang.pm: (pablo) workaround console localization
+ broken in RTL languages
+
+2003-03-10 19:44 Fançois Pons
+
+ * rescue/tree/etc/: oem, oem-all: added missing right parenthesis.
+
+2003-03-10 19:31 Fançois Pons
+
+ * rescue/tree/etc/: oem-all, oem: fix for strange parted behaviour.
+
+2003-03-10 19:15 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/no.po: updated Norwegian file
+
+2003-03-10 19:13 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: Changed console Czech keyboard
+
+2003-03-10 18:56 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: add kdeartwork-kde-classic not to
+ have trouble in KDE updates.
+
+2003-03-10 18:51 Warly <warly at mandriva.com>
+
+ * perl-install/share/compssUsers.desktop: Update for new standard
+ pack
+
+2003-03-10 18:14 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: Makefile, cy.po, is.po, it.po, no.po:
+ updated Welsh, Icelandic, Italian, Norwegian
+
+2003-03-10 16:00 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: reduce gpm level from 4 to 2 in
+ system
+
+2003-03-10 15:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix #1461
+
+2003-03-10 15:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: - clean wait messages creation -
+ fix wait messages displaying (label was not displayed) in both
+ standalone and embedded modes
+
+2003-03-10 15:19 Fançois Pons
+
+ * perl-install/install_any.pm: use quoted url instead for
+ install_urpmi.
+
+2003-03-10 15:18 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2003-03-10 15:17 Fançois Pons
+
+ * perl-install/install_any.pm: fixed duplicate url entry for file
+ and removable.
+
+2003-03-10 14:59 Guillaume Cottenceau
+
+ * perl-install/: install_steps.pm, lang.pm: fix original #2842
+ problem
+
+2003-03-10 14:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: more logs
+
+2003-03-10 14:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/services.pm: - fix packing on standalone mode (no
+ horizontal scrolling) - let show it all when embedded
+
+2003-03-10 13:56 Fançois Pons
+
+ * perl-install/install_any.pm: build a list file only if needed for
+ install_urpmi.
+
+2003-03-10 12:11 Guillaume Cottenceau
+
+ * perl-install/install_gtk.pm: meta class desktop also uses galaxy
+ theme, not blue theme
+
+2003-03-10 11:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: fix getting brltty help and table
+ (thanks to Hans Schou)
+
+2003-03-10 11:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: typo fix
+
+2003-03-10 09:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * docs/mdk-9.2, perl-install/harddrake/TODO: update
+
+2003-03-10 08:15 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: update
+
+2003-03-09 22:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: make perl_checker a
+ happy prog
+
+2003-03-09 22:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: no "Previous" button
+ when choosing install or upgrade
+
+2003-03-09 21:31 Guillaume Cottenceau
+
+ * perl-install/Xconfig/test.pm: fix background of X test during
+ install
+
+2003-03-09 21:05 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Typo fix
+
+2003-03-09 18:40 Guillaume Cottenceau
+
+ * perl-install/share/po/fr.po: latest missing stuff
+
+2003-03-09 13:18 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-03-09 12:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: fixed text (missing '/')
+
+2003-03-08 04:21 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/hu.po: updated Hungarian file
+
+2003-03-08 00:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: mask encryption key
+ (using stars)
+
+2003-03-07 23:50 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: refine the already dirty code to
+ workaround gtk bug leading to bugzilla #1445 (clicking two times
+ too fast still lead to same problem)
+
+2003-03-07 19:46 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: One message
+
+2003-03-07 18:32 Guillaume Cottenceau
+
+ * perl-install/: drakxtools.spec, ugtk2.pm: fix rpmdrake dumping
+ core when multiple searchs in "selected" and "upgradable" sorting
+ modes (#2899)
+
+2003-03-07 16:38 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/any.pm: launch startx.autologin instead of startx in
+ autologin
+
+2003-03-07 15:50 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/fi.po: updated Finnish file
+
+2003-03-07 14:35 Fançois Pons
+
+ * perl-install/network/adsl.pm: dropped a line.
+
+2003-03-07 14:20 Fançois Pons
+
+ * perl-install/network/adsl.pm: fix logical error (flepied).
+
+2003-03-07 13:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile.config: don't install
+ share/advertising/*.pl files in
+ Mandrake/mdkinst/usr/bin/perl-install/share, only in
+ Mandrake/share/advertising
+
+2003-03-07 13:31 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cy.po, da.po, es.po, et.po, it.po, ja.po,
+ ko.po, lt.po, lv.po, mt.po, nl.po, pt.po, pt_BR.po, ro.po, ru.po,
+ sk.po, sl.po, sq.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ vi.po, zh_CN.po, zh_TW.po: iupdated Vietnamese, Estonian and
+ Dutch files; fixed the translations of "default:LTR"
+
+2003-03-07 12:54 Guillaume Cottenceau
+
+ * tools/cvslog2changelog.pl: add fabman protect emails
+
+2003-03-07 12:34 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translation
+
+2003-03-07 08:55 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: updated
+
+2003-03-07 04:16 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-03-07 02:47 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/advertising/: 01-thanks.pl, 02-community.pl,
+ 03-software.pl, 04-configuration.pl, 05-desktop.pl,
+ 06-development.pl, 07-server.pl, 08-store.pl, 09-mdksecure.pl,
+ 10-security.pl, 11-mnf.pl, 12-mdkexpert.pl,
+ 13-mdkexpert_corporate.pl: Changed _() to N_()
+
+2003-03-06 23:46 Guillaume Cottenceau
+
+ * mdk-stage1/url.c: provide Host: in http requests so that install
+ works from sites with virtual hosting (#2561)
+
+2003-03-06 22:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: typo fix
+
+2003-03-06 22:18 Fançois Pons
+
+ * perl-install/: drakxtools.spec, network/ethernet.pm: avoid
+ virtual ethX to be reconfigured by drakconnect
+
+2003-03-06 22:08 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/05-desktop.pl: Update
+
+2003-03-06 21:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: perl_checker fix
+
+2003-03-06 21:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: s/perl -w/use
+ diagnostics/ so stat it get removed from package at build time
+
+2003-03-06 21:49 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/03-software.pl: Fix typo
+
+2003-03-06 21:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: basic encrypt_key
+ handling in upgrade (don't mistype!)
+
+2003-03-06 21:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: cleanup
+
+2003-03-06 21:05 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/: 03-software.pl,
+ 06-development.pl, 07-server.pl, 08-store.pl, 11-mnf.pl,
+ 13-mdkexpert_corporate.pl: Update
+
+2003-03-06 20:52 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/: 03-software.pl, 03-software.png,
+ 04-configuration.pl, 04-configuration.png, 05-desktop.pl,
+ 05-desktop.png, 06-development.pl, 06-development.png,
+ 07-server.pl, 07-server.png, 08-store.pl, 08-store.png,
+ 09-mdksecure.pl, 09-mdksecure.png, 10-security.pl,
+ 10-security.png, 11-mnf.pl, 11-mnf.png, 12-mdkexpert.pl,
+ 12-mdkexpert.png, 13-mdkexpert_corporate.pl,
+ 13-mdkexpert_corporate.png: Sync names with text files
+
+2003-03-06 20:49 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/: 03-internet.pl, 03-internet.png,
+ 04-multimedia.pl, 04-multimedia.png, 05-games.pl, 05-games.png,
+ 06-mcc.pl, 06-mcc.png, 07-desktop.pl, 07-desktop.png,
+ 08-development.pl, 08-development.png, 09-server.pl,
+ 09-server.png, 10-mnf.pl, 10-mnf.png, 11-mdkstore.pl,
+ 11-mdkstore.png, 12-mdkstore.pl, 12-mdkstore.png,
+ 13-mdkcampus.pl, 13-mdkcampus.png, 14-mdkexpert.pl,
+ 14-mdkexpert.png, 15-mdkexpert-corporate.pl,
+ 15-mdkexpert-corporate.png, 16-thanks.png, 17-mdkclub.pl,
+ 17-mdkclub.png: Remove old files
+
+2003-03-06 20:42 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/: 01-thanks.pl, 02-community.pl,
+ list: Use texts from specifications
+
+2003-03-06 19:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: do not crash on color
+ selection
+
+2003-03-06 19:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: prevent one to pop up hundred
+ of windows: make browse dialog be modal
+
+2003-03-06 19:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-17mdk
+
+2003-03-06 19:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: - fix #1766 - do not crash
+ when browsing
+
+2003-03-06 18:13 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ar.po, cs.po, fi.po, ta.po, vi.po:
+ updated Czech, Arabic, Finnish, Tamil and Vietnamese files
+
+2003-03-06 17:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/help-ru.pot: add it since drakx-chapter.xml
+ is ok (dixit Alice Lafox)
+
+2003-03-06 17:23 Fançois Pons
+
+ * perl-install/install_steps_gtk.pm: added desktop groups
+ organization.
+
+2003-03-06 17:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: update
+
+2003-03-06 16:59 Fançois Pons
+
+ * perl-install/drakxtools.spec: NVIDIA drop.
+
+2003-03-06 16:57 Fançois Pons
+
+ * perl-install/install_any.pm: dropped allowNVIDIA_rpms method.
+
+2003-03-06 16:57 Fançois Pons
+
+ * perl-install/standalone/XFdrake: moved prioprietary NVIDIA code
+ support to generic prioprietary support in standalone.pm.
+
+2003-03-06 16:55 Fançois Pons
+
+ * perl-install/network/modem.pm: added support for kernel base name
+ of ltmodem.
+
+2003-03-06 16:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * docs/mdk-9.2: first bits of mdk9.2 specs (aka postponed bugs...)
+ stuff
+
+2003-03-06 16:48 Warly <warly at mandriva.com>
+
+ * perl-install/network/network.pm: detect if the device is pcmcia
+ when initializing the ONBOOT parameter
+
+2003-03-06 16:47 Fançois Pons
+
+ * perl-install/standalone.pm: fixed error message.
+
+2003-03-06 16:46 Fançois Pons
+
+ * perl-install/standalone.pm: added check_kernel_module_packages
+ with same behaviour expected as for install_any module.
+
+2003-03-06 16:25 Fançois Pons
+
+ * perl-install/: install_steps_interactive.pm, install_steps.pm:
+ dropped allowNVIDIA_rpms
+
+2003-03-06 16:21 Fançois Pons
+
+ * perl-install/install_any.pm: added check_kernel_module_packages
+ for checking prioprietary base kernel package.
+
+2003-03-06 16:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/TODO: update
+
+2003-03-06 16:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: perl_checker fix
+
+2003-03-06 15:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-16mdk, first bit
+
+2003-03-06 15:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: fix #1929
+
+2003-03-06 15:41 Fançois Pons
+
+ * perl-install/network/ethernet.pm: fixed ifconfig invocation and
+ state analysis in install mode.
+
+2003-03-06 15:27 Fançois Pons
+
+ * perl-install/network/adsl.pm: fixed adsl login not probed in
+ install mode.
+
+2003-03-06 15:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: install_steps_interactive.pm, harddrake/sound.pm,
+ standalone/draksound: let fix #2244, #2245, #2730
+
+2003-03-06 15:22 Fançois Pons
+
+ * perl-install/install_steps.pm: fixed stupid again typo.
+
+2003-03-06 15:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/scanner.pm: perl_checker fixes
+
+2003-03-06 15:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/services.pm: we do use $in !!!!
+
+2003-03-06 15:01 Pixel <pixel at mandriva.com>
+
+ * kernel/modules.pl: mptscsih doesn't fit on hd.img
+
+2003-03-06 14:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: don't create xxx.conf for standard devfs
+ compatibility names
+
+2003-03-06 14:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: merge cdroms__faking_ide_scsi()
+ and zips__faking_ide_scsi() in cdroms_and_zips__faking_ide_scsi()
+ to be able to have a good devfs device name
+
+ this fixes *__faking_ide_scsi() not faking devfs_device causing
+ bad /etc/devfs/conf.d/dvd.conf for dvd burners
+
+2003-03-06 14:55 Fançois Pons
+
+ * perl-install/install_steps.pm: modified logic for summaryAfter.
+
+2003-03-06 14:54 Fançois Pons
+
+ * perl-install/install_steps.pm: fixed again the same typo.
+
+2003-03-06 14:54 Fançois Pons
+
+ * perl-install/install_steps.pm: fixed stupid typo.
+
+2003-03-06 14:53 Fançois Pons
+
+ * perl-install/install_steps.pm: summaryAfter created to install
+ acpi and acpid if needed.
+
+2003-03-06 14:52 Fançois Pons
+
+ * perl-install/install2.pm: added summaryAfter steps for summary.
+
+2003-03-06 14:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/help_xml2pm.pl: do not exclude "ru"
+ drakx-help.xml anymore
+
+2003-03-06 14:31 Fançois Pons
+
+ * perl-install/any.pm: make sure acpi is installed.
+
+2003-03-06 14:27 Guillaume Cottenceau
+
+ * perl-install/share/po/es.po: this translation can't get much big
+ or else it will enlarge too much diskdrake
+
+2003-03-06 14:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: more fixes
+
+2003-03-06 14:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/scanner.pm: do not detect some usb webcams as
+ scanners ...
+
+2003-03-06 14:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: move usb webcams which have
+ mod_quickcam as a driver from unknown to webcam clategory since
+ they do not have any valid usb class
+
+2003-03-06 14:12 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: Enabled Laotian (was missing a definition
+ in %charsets), Bengali (there starts to be gnome translations
+ available), and Kannada (there starts to be gnome translations
+ available). Code for Xhosa added (there is an official
+ kde-i18n-xh package available), wating for lang-xh.png to enable
+ it
+
+2003-03-06 13:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: more logdrake fixes
+
+2003-03-06 13:52 Fançois Pons
+
+ * perl-install/install_steps.pm: menu update method modified for
+ upgrade.
+
+2003-03-06 13:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: - display "wait while
+ searching" message also when embedded: we do not want it only
+ when embedded for explanations - flush this wait dialog draw
+ queue on each update so that it get displayed when embedded
+
+2003-03-06 13:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: log system config changes
+
+2003-03-06 12:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: Makefile, drakxtools.spec: move ugtk2 back in
+ drakxtools on gc idea
+
+2003-03-06 12:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: more fixes
+
+2003-03-06 12:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: let i fit in 800x600
+
+2003-03-06 12:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: more fixes
+
+2003-03-06 12:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: "ensure buttons are visible when
+ the widgets above are too big" only at install
+
+2003-03-06 11:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-15mdk
+
+2003-03-06 11:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: fix #2672
+
+2003-03-06 10:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: - cornish is a p-celtic language (aka a
+ britonnic one), not a gaelic one - homogeinize q-celtic languages
+ (aka gaelic ones)
+
+2003-03-06 10:04 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/po/fr.po: corrected remaining mise-à-jour
+
+2003-03-06 06:42 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: sk.po, sv.po: updated Slovak and Swedish
+ files
+
+2003-03-06 05:52 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2003-03-06 01:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/rpmsrate: removed non-ascii chars
+
+2003-03-06 01:48 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: lang.pm, standalone/harddrake2: fixed XIM
+ definitions for Chinese locales
+
+2003-03-05 23:42 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/network/ethernet.pm: fix to avoid creating an
+ ifcfg-1 config file.
+
+2003-03-05 23:40 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/network/adsl.pm: read login name from net_cnx_up in
+ pptp mode.
+
+2003-03-05 23:33 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/network/tools.pm: if the user don't want to start
+ the internet connection, continue without error message.
+
+2003-03-05 22:28 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/no.po: updated Norwegian file
+
+2003-03-05 21:35 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: de.po, es.po, fr.po, it.po: merged with
+ help strings from manuals
+
+2003-03-05 20:06 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/uz.po: updated Uzbek file
+
+2003-03-05 18:53 Guillaume Cottenceau
+
+ * perl-install/: any.pm, drakxtools.spec, standalone/localedrake:
+ fix behaviour when only one lang is available (clicking on
+ "cancel" on the country selection didn't cancel it)
+
+2003-03-05 18:52 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ar.po, ro.po, vi.po: updated Arabic,
+ Romanian and Vietnamese files
+
+2003-03-05 18:45 Guillaume Cottenceau
+
+ * perl-install/share/po/fr.po: fix one translation
+
+2003-03-05 18:44 Erwan Velu <erwan at mandriva.com>
+
+ * kernel/: list_modules.pm, update_kernel: IA64 merge
+
+2003-03-05 17:41 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/network/isdn.pm: read right config according to
+ isdn-light or isdn4linux
+
+2003-03-05 16:45 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: two entries remained
+
+2003-03-05 15:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: handle low case config variables
+ despite they should have been upcase (fix side effects of stupid
+ rh code that manage $prefdm)
+
+2003-03-05 15:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mouse.pm: prevent warning when using diagnostics
+ pragma (easier debugging)
+
+2003-03-05 15:06 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/network/netconnect.pm: use driver instead of
+ descrition to validate an isdn autodetection
+
+2003-03-05 15:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update french translation
+
+2003-03-05 14:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: prevent warning when using
+ diagnostics pragma (easier debugging)
+
+2003-03-05 14:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: detect_devices.pm, install_steps_interactive.pm,
+ standalone/drakxtv: - (getTVcards, isTVcard) : consolidate tv
+ detection code - no need to keep capture buffer (not a big slow
+ down but small rivers make big ones...)
+
+2003-03-05 14:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: minor update
+
+2003-03-05 14:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: normalize
+
+2003-03-05 14:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: detect_devices.pm, standalone/harddrake2,
+ common.pm: prevent warning when using diagnostics pragma (easier
+ debugging)
+
+2003-03-05 14:16 Fançois Pons
+
+ * perl-install/drakxtools.spec: add changelog for drakconnect
+ modification.
+
+2003-03-05 14:13 Fançois Pons
+
+ * perl-install/standalone/drakconnect: fixed wizard modification
+ not taken into account when using drakconf.
+
+2003-03-05 14:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: more to come
+
+2003-03-05 13:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: (choose_xdm): allow to switch
+ back from level 5 to level 3
+
+2003-03-05 12:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: ensure buttons are visible when
+ the widgets above are too big
+
+2003-03-05 12:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/: isdn.pm, network.pm: this is perl, not
+ python ;p
+
+2003-03-05 12:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: modifying keyboard in summary must
+ modify XF86Config
+
+2003-03-05 11:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: restore old search behavior
+ like we did before gtk+-2 port: - empty log buffer on search
+ startup - freeze buffer while searching
+
+ - do not realize ourselves the window, it's done by next
+ statement - set initial text to '' so that editable property is
+ disabled once the textview is realized
+
+2003-03-05 10:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: no need to explicitely disable
+ editable property, this is already handled by
+ ugtk2::gtktext_insert() called from ugtk2::gtktext_append()
+
+2003-03-05 02:39 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: updated Spanish translation
+
+2003-03-05 02:17 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: az.po, be.po, eo.po, hu.po, is.po, lt.po,
+ sl.po, tg.po, th.po, uk.po: updated Hungarian file
+
+2003-03-04 23:35 Fançois Pons
+
+ * perl-install/standalone/drakconnect: clean interface flags when
+ dhcp mode is used.
+
+2003-03-04 23:08 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2003-03-04 22:59 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cs.po: updated Czech file
+
+2003-03-04 22:54 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/network/isdn.pm: corrected isdn-light choice
+
+2003-03-04 22:01 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/network/network.pm: allow to set hostname in DHCP
+ mode
+
+2003-03-04 21:58 Frederic Lepied <flepied at mandriva.com>
+
+ * kernel/list_modules.pm: added usbvnet_rfmd to network/usb
+
+2003-03-04 21:32 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/network/network.pm: install tmdns only when bind
+ isn't installed
+
+2003-03-04 21:31 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/network/modem.pm: install kdenetwork-kppp if kdebase
+ is already installed
+
+2003-03-04 19:01 Guillaume Cottenceau
+
+ * perl-install/lang.pm: set better default XIMInputStyle value for
+ CJK, thx to Narfi Stefansson <narfi at cs.wisc.edu> for the idea
+
+2003-03-04 18:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: add "acpi" and "acpid" to INSTALL
+
+2003-03-04 18:12 Guillaume Cottenceau
+
+ * tools/cvslog2changelog.pl: add florin alafox alus
+
+2003-03-04 17:35 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ar.po, th.po: corrected encoding problems
+
+2003-03-04 16:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: - untabify - fix small memory
+ leak (tree iterators) - restore edit dialog on doble click and -
+ restore informations retrieving for edit dialog on doble click
+ and get rid of %CURENT
+
+2003-03-04 16:48 Guillaume Cottenceau
+
+ * mdk-stage1/: newt-frontend.c, stdio-frontend.c: don't forget to
+ probe USB for info and error messages as well
+
+2003-03-04 16:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: mt.po, nl.po, no.po, pl.po, pt.po,
+ pt_BR.po, ro.po, ru.po, sk.po, sl.po, sp.po, sq.po, sr.po, sv.po,
+ ta.po, tg.po, th.po, tr.po, uk.po, uz.po, vi.po, wa.po, zh_CN.po,
+ zh_TW.po: updated pot file
+
+2003-03-04 16:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: scroll back when logging
+
+2003-03-04 16:14 Fançois Pons
+
+ * perl-install/network/ethernet.pm: avoid being pertubed by created
+ virtual interface (no inet addre nor physicall card behing)
+
+2003-03-04 15:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ja.po, ko.po, lt.po, lv.po, DrakX.pot:
+ updated pot file
+
+2003-03-04 15:39 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: af.po, ar.po, az.po, be.po, bg.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, fi.po, fr.po, ga.po, gl.po, he.po, hr.po, hu.po,
+ id.po, is.po, it.po: updated pot files
+
+2003-03-04 14:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: move imap to NETWORKING_MAIL_SERVER
+ (bug #2622)
+
+2003-03-04 13:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: - remove last warning - remove
+ unused variables
+
+2003-03-04 13:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/services.pm: in drakxservices, don't stop services
+ if one is using the gtk frontend (since it allows one to
+ start/stop services) this allows to skip stopping service "dm"
+ (bug #2664)
+
+2003-03-04 13:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: - fix #1776 (part one): make up
+ and down button be usefull instead of nop (this need an updated
+ perl-GTK2 though) - let up, down, delete and edit buttons be
+ insensitive when selection is destroyed or when there's no
+ selection
+
+2003-03-04 13:36 Pixel <pixel at mandriva.com>
+
+ * rescue/tree/etc/profile: - unsetting LD_LIBRARY_PATH: setting
+ LD_LIBRARY_PATH to libraries in /mnt is wrong since the ld loader
+ used (/lib/ld-linux.so.2) won't use the one in /mnt, causing
+ dependency problems. - removing /mnt dirs from PATH (which are
+ not useful anymore since the corresponding libraries won't be
+ found) (fixes bug #2554)
+
+2003-03-04 13:09 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakgw: simplified form (pixel)
+
+2003-03-04 13:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/hd_gtk.pm: - in focus_in_event for
+ partition buttons, grab_focus is needed because gtk2 is buggy.
+ Forcing an expose event would be enough - in button_press_event
+ for partition buttons, grab_focus is needed because gtk2 is
+ buggy. The creation of widgets causes the lost of the focus
+ (fixes part of #2621)
+
+2003-03-04 12:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: make perl_checker happy
+
+2003-03-04 12:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: fix typo
+
+2003-03-04 11:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/nfs.pm: (check): fix return value (bug
+ introduced with checking portmap is running)
+
+2003-03-04 10:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: - fix #1776 part two (do not
+ insert dummy lines) - restore special lines with current keyword
+ - reuse already defined path
+
+2003-03-04 08:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: remove debuging assertions (as
+ spoted by gc)
+
+2003-03-04 08:18 Frederic Lepied <flepied at mandriva.com>
+
+ * kernel/list_modules.pm: added 3c90x
+
+2003-03-04 02:45 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/hu.po: updated Hungarian file
+
+2003-03-03 23:31 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: updated and partially proofread.
+ need more lproof
+
+2003-03-03 23:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: add some explaination
+ for translators
+
+2003-03-03 23:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: translate _bootloader_
+ on _device_
+
+2003-03-03 22:14 Guillaume Cottenceau
+
+ * perl-install/interactive/gtk.pm: a few treeview/list fixes: -
+ when selecting a value, scroll it like in treeview/tree - use
+ saved_default_val dirty hackery to really honour default value -
+ fix not calling $select again when trying to select an already
+ selected value (happens when clicking or keyboard-selecting;
+ broken, it ended up in always scrolling the selected value to
+ the center)
+
+2003-03-03 22:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_interactive.pm: use formatAlaTeX() for the
+ warning "DrakX will now resize your Windows partition..."
+
+2003-03-03 22:11 Guillaume Cottenceau
+
+ * perl-install/: any.pm, drakxtools.spec: any::selectLanguage: in
+ standalone, don't categorize langs, for better looking (since
+ most people will have very few of them)
+
+2003-03-03 21:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: translate mouse names
+
+2003-03-03 21:40 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/it.po: updated Italian file
+
+2003-03-03 21:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/help.pm: update from xml
+
+2003-03-03 21:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/: help-de.pot, help-es.pot, help-fr.pot:
+ update from xml
+
+2003-03-03 20:35 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakgw: add an extra first choose the net
+ device step
+
+2003-03-03 18:36 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: et.po, fi.po, nl.po: updated Estonian,
+ Finnish and Dutch files
+
+2003-03-03 17:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: (n_line_size): spacing for default font
+ using XFT is 3
+
+2003-03-03 17:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: remove unused $rows_cnt
+
+2003-03-03 16:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-13mdk
+
+2003-03-03 16:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: unfuzzy()
+
+2003-03-03 16:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: - fix #2091 and #2480 (settings
+ restoration - make dialogs be modal
+
+2003-03-03 15:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: (runlevel): fix typo
+
+2003-03-03 15:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: - remove a warning - better
+ scsi bus location
+
+2003-03-03 15:26 Fançois Pons
+
+ * perl-install/network/adsl.pm: simplified code of adsl_ask_info,
+ password can be retrieved using passwd_by_login which was not
+ used with computed login from /etc/ppp/peers/adsl or
+ /etc/ppp/options or /etc/ppp/options.adsl.
+
+2003-03-03 15:25 Fançois Pons
+
+ * perl-install/network/tools.pm: simplified unquotify.
+
+2003-03-03 15:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: reap zombie children (aka fix
+ mem leak :-( )
+
+2003-03-03 14:40 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: updated
+
+2003-03-03 14:36 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2003-03-03 14:18 Guillaume Cottenceau
+
+ * perl-install/share/po/fr.po: thx po validato
+
+2003-03-03 14:15 Guillaume Cottenceau
+
+ * perl-install/share/po/validate.pl: make it useful - print
+ problems with GREP_COLOR - have enough exceptions to get usable
+ errors
+
+2003-03-03 13:44 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: data.pm, printerdrake.pm: Fixed bug of
+ wrong function call to display the spooler name (Titi's untested
+ changes).
+
+2003-03-03 12:36 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, ga.po, gl.po, he.po, hr.po,
+ hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po, mt.po,
+ nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po,
+ sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po,
+ uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-03-03 11:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: add ncurses-devel in DEVELOPMENT
+
+2003-03-03 11:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix translation
+
+2003-03-03 10:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: help-es.pot, help-fr.pot, help-it.pot:
+ revert to non broken version
+
+2003-03-03 10:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/help-de.pot: revert to non broken version
+
+2003-03-03 10:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-12mdk
+
+2003-03-03 10:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: smoother gui: let main windows
+ be unreachable until modal dialog is closed
+
+2003-03-03 10:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: fix bug reported by Cédric
+ Thévenet (impossible to save newly edited rules)
+
+2003-03-03 05:03 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation change
+ code page to utf-8
+
+2003-03-03 03:17 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm: Fixed bug of USB printers which
+ do not report back an IEEE-1284 ID string after three attempts
+ being invisible instead of being listed as an "Unknown device".
+
+2003-03-03 00:18 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/data.pm: Make file checks for CUPS package
+ installation independent of whether "curl" or "wget" is installed
+ to fulfill the "webfetch" requirement.
+
+2003-03-03 00:08 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Avoid two overlayed wait
+ messages when installing packages - Let applications
+ (OpenOffice.org/GIMP) being once on startup of Printerdrake
+
+2003-03-02 23:15 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/gimp.pm: Fixed auto-configuration for
+ printers in the GIMP to work with Foomatic 3.0.
+
+2003-03-02 23:11 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Hard spell checking
+
+2003-03-02 20:33 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Call function for
+ configuring applications only if really needed.
+
+2003-03-02 19:57 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm: Read device ID string for a USB
+ printer up to three times when it does not contain information.
+
+2003-03-02 18:37 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Shortened the texts in some
+ list dialogs to get a better layout.
+
+2003-03-02 17:36 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: Correction on reading the Foomatic
+ overview.
+
+2003-03-02 17:14 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: Fixes on reading of Foomatic data
+ overview ("foomatic-configure -O"): - Removed usage of on-disk
+ cache - Made new "<general>" and "<ieee1284>" tags for
+ auto-detection info being recognized.
+
+2003-03-02 15:56 Guillaume Cottenceau
+
+ * perl-install/share/po/translation_size.pl: add
+
+2003-03-02 05:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ar.po, es.po, et.po, fi.po, hu.po, ro.po:
+ updated Arabic, Estonian, Finnish, Hungarian and Romanian files
+
+2003-03-02 04:12 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - When non-interactively
+ creating print queues ask the user for the model name if the
+ model is not in the database, don't do wild guesses then.
+
+2003-03-02 02:57 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: updated
+
+2003-03-01 22:37 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: updated Spanish translation
+
+2003-03-01 20:12 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: The generation of the
+ "Summary" button for printer configuration created a blank entry
+ in the $o->{printer}{configures} hash which lead to a blank menu
+ entry in the main menu of printerdrake. This is fixed now.
+
+2003-03-01 19:07 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: updated Spanish translation
+
+2003-03-01 06:50 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: hu.po, sp.po, sr.po, sv.po, zh_CN.po:
+ updated Chinese, Swedish, Hungarian and Serbian files
+
+2003-02-28 23:13 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: updated
+
+2003-02-28 22:59 Guillaume Cottenceau
+
+ * perl-install/detect_devices.pm: let hasSMP don't exit DrakX in
+ testing mode because /dev/mem is not accessible
+
+2003-02-28 22:58 Guillaume Cottenceau
+
+ * perl-install/share/po/ja.po: reduce a translation size so that
+ groups choice still has the "ok" button shown
+
+2003-02-28 22:13 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: updated Spanish translations. Some
+ fuzzy left
+
+2003-02-28 21:54 Guillaume Cottenceau
+
+ * perl-install/share/po/fr.po: update
+
+2003-02-28 21:45 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ help-de.pot, help-es.pot, help-fr.pot, help-it.pot, hr.po, hu.po,
+ id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po, mt.po, nl.po,
+ no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sp.po,
+ sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po,
+ vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-02-28 21:29 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/drakpxe: fixed bad English string
+
+2003-02-28 20:56 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakhelp: - fix the check of mandrake_doc
+ installed package (gc)
+
+2003-02-28 20:16 Guillaume Cottenceau
+
+ * mdk-stage1/Makefile: fix deps problem when re-running make
+
+2003-02-28 20:12 Guillaume Cottenceau
+
+ * perl-install/lang.pm: remove temporiraly lo because utf_lo is not
+ in the charsets hash
+
+2003-02-28 20:09 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: moltes powered (for deush)
+
+2003-02-28 19:52 Guillaume Cottenceau
+
+ * Makefile, make_boot_img, kernel/modules.pl, kernel/update_kernel,
+ mdk-stage1/.cvsignore, mdk-stage1/Makefile, mdk-stage1/modules.c:
+ hd_usb.img -> hdcdrom_usb.img
+
+2003-02-28 18:47 Guillaume Cottenceau
+
+ * perl-install/drakxtools.spec: cøws gó mòõh
+
+2003-02-28 18:40 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/harddrake2: i18n fixes
+
+2003-02-28 17:09 Guillaume Cottenceau
+
+ * perl-install/standalone/: adduserdrake, drakbackup, drakboot,
+ drakconnect, drakfirewall, drakfont, drakgw, drakperm, drakproxy,
+ drakpxe, draksplash, drakxservices, drakxtv, harddrake2,
+ keyboarddrake, livedrake, logdrake, mousedrake, scannerdrake:
+ reflect in standalone drakxtools the removal of DrakX icons
+
+2003-02-28 16:56 Fançois Pons
+
+ * perl-install/any.pm: install acpi and acpid if "Enable ACPI" is
+ ok.
+
+2003-02-28 16:40 Fançois Pons
+
+ * perl-install/drakxtools.spec: ltmodem support reminder.
+
+2003-02-28 16:40 Fançois Pons
+
+ * perl-install/drakxtools.spec: fixes for drakconnect.
+
+2003-02-28 16:36 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: perl checko says we need to use
+ parentheses with ref
+
+2003-02-28 15:50 Fançois Pons
+
+ * perl-install/standalone/drakconnect: removed profile management
+ entry point.
+
+2003-02-28 14:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: et.po, ja.po: Updated Estonian file
+
+2003-02-28 14:48 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: hugly hack because GtkLabel doesn't wrap
+ when using languages that don't contain spaces
+
+2003-02-28 14:03 Fançois Pons
+
+ * perl-install/network/modem.pm: add LT WinModem support by
+ searching ltmodem package.
+
+2003-02-28 13:39 Guillaume Cottenceau
+
+ * perl-install/share/po/ja.po: reduce some translations sizes to
+ make diskdrake at least usable ("ok" button was hidden!)
+
+2003-02-28 12:59 Guillaume Cottenceau
+
+ * perl-install/install_gtk.pm: fix theming in --doc mode
+
+2003-02-28 12:18 Guillaume Cottenceau
+
+ * perl-install/: lang.pm, pixmaps/langs/lang-af.png,
+ pixmaps/langs/lang-am.png, pixmaps/langs/lang-az.png,
+ pixmaps/langs/lang-be.png, pixmaps/langs/lang-bg.png,
+ pixmaps/langs/lang-bn.png, pixmaps/langs/lang-br.png,
+ pixmaps/langs/lang-bs.png, pixmaps/langs/lang-ca.png,
+ pixmaps/langs/lang-cs.png, pixmaps/langs/lang-cy.png,
+ pixmaps/langs/lang-da.png, pixmaps/langs/lang-de.png,
+ pixmaps/langs/lang-el.png, pixmaps/langs/lang-en_GB.png,
+ pixmaps/langs/lang-en_US.png, pixmaps/langs/lang-eo.png,
+ pixmaps/langs/lang-es.png, pixmaps/langs/lang-et.png,
+ pixmaps/langs/lang-eu.png, pixmaps/langs/lang-fi.png,
+ pixmaps/langs/lang-fo.png, pixmaps/langs/lang-fr.png,
+ pixmaps/langs/lang-ga.png, pixmaps/langs/lang-gd.png,
+ pixmaps/langs/lang-gl.png, pixmaps/langs/lang-gv.png,
+ pixmaps/langs/lang-he.png, pixmaps/langs/lang-hi.png,
+ pixmaps/langs/lang-hr.png, pixmaps/langs/lang-hu.png,
+ pixmaps/langs/lang-hy.png, pixmaps/langs/lang-ia.png,
+ pixmaps/langs/lang-id.png, pixmaps/langs/lang-is.png,
+ pixmaps/langs/lang-it.png, pixmaps/langs/lang-iu.png,
+ pixmaps/langs/lang-ja.png, pixmaps/langs/lang-ka.png,
+ pixmaps/langs/lang-kn.png, pixmaps/langs/lang-ko.png,
+ pixmaps/langs/lang-kw.png, pixmaps/langs/lang-lo.png,
+ pixmaps/langs/lang-lt.png, pixmaps/langs/lang-lv.png,
+ pixmaps/langs/lang-mi.png, pixmaps/langs/lang-mk.png,
+ pixmaps/langs/lang-mn.png, pixmaps/langs/lang-mr.png,
+ pixmaps/langs/lang-ms.png, pixmaps/langs/lang-mt.png,
+ pixmaps/langs/lang-nb.png, pixmaps/langs/lang-nl.png,
+ pixmaps/langs/lang-nn.png, pixmaps/langs/lang-no.png,
+ pixmaps/langs/lang-oc.png, pixmaps/langs/lang-pl.png,
+ pixmaps/langs/lang-pt.png, pixmaps/langs/lang-pt_BR.png,
+ pixmaps/langs/lang-ro.png, pixmaps/langs/lang-ru.png,
+ pixmaps/langs/lang-sk.png, pixmaps/langs/lang-sl.png,
+ pixmaps/langs/lang-sp.png, pixmaps/langs/lang-sq.png,
+ pixmaps/langs/lang-sr.png, pixmaps/langs/lang-sv.png,
+ pixmaps/langs/lang-ta.png, pixmaps/langs/lang-te.png,
+ pixmaps/langs/lang-tg.png, pixmaps/langs/lang-th.png,
+ pixmaps/langs/lang-tr.png, pixmaps/langs/lang-tt.png,
+ pixmaps/langs/lang-uk.png, pixmaps/langs/lang-ur.png,
+ pixmaps/langs/lang-uz.png, pixmaps/langs/lang-vi.png,
+ pixmaps/langs/lang-wa.png, pixmaps/langs/lang-yi.png,
+ pixmaps/langs/lang-zh_CN.png, pixmaps/langs/lang-zh_TW.png: put
+ new pablo's images (less large, add missing ones) sort langs in
+ lang.pm
+
+2003-02-28 11:47 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-02-28 11:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: ensure the $::expert
+ flag in netconnect doesn't propagate to the rest of the install
+
+2003-02-28 09:40 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/network/network.pm: corrected HOSTNAME/DHCP_HOSTNAME
+ management.
+
+2003-02-28 09:38 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/network/netconnect.pm: allow to switch in expert
+ mode during install.
+
+2003-02-28 09:37 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/network/ethernet.pm: Configure hostname only in
+ expert mode.
+
+2003-02-28 02:00 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: scanner.pm, share/rpmsrate: - Fixed confScanner()
+ deleting the config file in some cases. - Removed PDQ from
+ share/rpmsrate
+
+2003-02-28 00:34 Guillaume Cottenceau
+
+ * perl-install/: Makefile, lang.pm: error out when a listed lang
+ doesn't have a png lang file when doing the check of lang.pm,
+ first show the warnings, then the errors at make-install time,
+ remove pang lang files corresponding to disabled langs
+
+2003-02-28 00:02 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: short name for rdz's on floppy
+
+2003-02-27 23:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-10mdk
+
+2003-02-27 23:10 Fançois Pons
+
+ * perl-install/network/adsl.pm: add sagem connection and
+ disconnection script using /etc/ppp/peers/adsl file.
+
+2003-02-27 23:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: workaround gtk suckiness
+ (set_text in a combo generates two 'change' signals, one when
+ removing the whole, one for inserting the replacement..)
+
+2003-02-27 22:36 Guillaume Cottenceau
+
+ * mdk-stage1/pci-resource/update-pci-ids.pl: don't forget gigabit
+ network adapters
+
+2003-02-27 22:36 Fançois Pons
+
+ * perl-install/network/adsl.pm: probe user and password in
+ /etc/ppp/options.adsl too (as produced by original eagle
+ installation), sagem adsl type connection does not need to
+ configure an ethernet connection.
+
+2003-02-27 21:36 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: spellchecked and updated some
+ translations
+
+2003-02-27 20:47 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-02-27 20:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: /root on a separate partition gives a
+ warning, not an error
+
+2003-02-27 20:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/nfs.pm: (check): start portmap if needed
+
+2003-02-27 20:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: use lilo-like code for selecting
+ mapdrive or not (it was buggy, always generating "map (0x81)
+ (0x80)", even for hd2)
+
+2003-02-27 20:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: harddrake/data.pm, standalone/service_harddrake:
+ add ieee1394-controller alias and load ohci1394 when a firewire
+ controller appeared
+
+2003-02-27 20:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fs.pm, install_any.pm, standalone/diskdrake: - add
+ get_info_from_fstab() - use it when reading existing fstab (to
+ get for example devfs mount)
+
+2003-02-27 20:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: allow removing device
+ "non kudzu flagged" (for harddrake)
+
+2003-02-27 19:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: perl_checker fix
+
+2003-02-27 19:27 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: data.pm, office.pm: Make OpenOffice.org
+ opening a GUI printing tool when printing with the "Generic
+ Printer".
+
+2003-02-27 19:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: translate missing translations
+
+2003-02-27 19:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix sorting in keybordrake that was
+ broken by bad translator
+
+2003-02-27 19:09 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: added mirror url not
+ given.
+
+2003-02-27 19:04 Fançois Pons
+
+ * perl-install/share/rpmsrate: moved galaxy-gnome to X from GNOME
+ (lmontel and dadou request)
+
+2003-02-27 18:56 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: fixed small typo.
+
+2003-02-27 18:50 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: added cancel button.
+
+2003-02-27 18:36 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: fixed message
+ displayed.
+
+2003-02-27 18:36 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: added dialog more
+ precisely.
+
+2003-02-27 18:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-10mdk
+
+2003-02-27 18:34 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: added message box in
+ case of error.
+
+2003-02-27 17:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: handle configurators
+ with options (eg: "diskdrake --removable=scd0")
+
+2003-02-27 17:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: no mouse probe when brltty
+
+2003-02-27 17:01 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/network/network.pm: corrected HOSTNAME management
+
+2003-02-27 16:17 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/scannerdrake: Do not ask for the port
+ when the user has chosen an HP MF device as scanner model.
+
+2003-02-27 16:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-9mdk
+
+2003-02-27 16:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix too big internet
+ configuration window
+
+2003-02-27 15:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakgw: fix embedding
+
+2003-02-27 15:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: - don't need to list packages
+ providing a required virtual language (eg: aspell-dictionnary) -
+ replace ispell with aspell (otherwise people using evolution get
+ both aspell and ispell)
+
+2003-02-27 15:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: make it fit in embedded mode,
+ large enough else
+
+2003-02-27 14:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: enhance packageCallbackChoices and
+ %preferred (uses new URPM::Resolve feature allowing multiple
+ choices)
+
+2003-02-27 14:52 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakgw: read more carefully the existing
+ network configuration
+
+2003-02-27 14:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: have locales-xx first in
+ default_packages so that default choosing based on locales works
+ for packages in default_packages
+
+2003-02-27 14:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - better check
+ /sbin/ifconfig is executable rather than simply exists - fix lan
+ configuration window filling ...
+
+2003-02-27 14:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/services.pm: perl_checker fix
+
+2003-02-27 14:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/newt.pm: perl_checker fix
+
+2003-02-27 14:01 Fançois Pons
+
+ * perl-install/standalone/drakconnect: fixed cancel on
+ configure_net, fixed bad fields setted up in configure_lan, fixed
+ Data::Dumper->Dump on stdout on startup.
+
+2003-02-27 13:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: fix scrolling when embedded
+
+2003-02-27 13:06 Guillaume Cottenceau
+
+ * perl-install/standalone/mousedrake: fix mousedrake in embedded
+ mode
+
+2003-02-27 12:17 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: da.po, hu.po, nl.po: updated Dutch,
+ Hungarian and Danish files
+
+2003-02-27 11:16 Fançois Pons
+
+ * perl-install/crypto.pm: change default version to 9.1
+
+2003-02-27 11:14 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakgw: the function is called
+ read_dhcpd_conf not read_dhcpd_conf_raw
+
+2003-02-27 11:13 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakgw: read the dhcpd conf file before
+ hand
+
+2003-02-27 11:07 Florin Grad <florin at mandriva.com>
+
+ * perl-install/network/network.pm: add the read_dhcpd_conf function
+ for drakgw
+
+2003-02-27 11:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: remove debugging print
+
+2003-02-27 10:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-8mdk
+
+2003-02-27 10:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: - gtk+2 port - clean the code
+ through ugtk2 - too many fixes to count - clean, clean it, ...
+ (thus shrinking the code by 20%) - ...
+
+2003-02-27 10:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: detect firewire controllers
+
+2003-02-27 09:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: small perl_checker fix
+
+2003-02-27 08:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: - disable autologin settings
+ when autologin is disabled - make embedded app look better - add
+ vertical separators
+
+2003-02-27 08:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: - consolidate menu titles
+ translations - add two pull down menu that enable one to access
+ options and help when embedded - (popup_menu) provide this
+ callback for embedded pull down menus - cleanup various other
+ embedding stuff - convert all object creations to gc blessed
+ style
+
+2003-02-27 08:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: - (create_factory_popup_menu): introduce
+ it for embedded harddrake2 - embedding cleanups: o give access
+ to top-level gtk2::plug widget o reuse gtkshow
+
+2003-02-27 03:43 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2003-02-27 02:24 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: More gtk2 updates. May have
+ finally suppressed the hanging.
+
+2003-02-27 01:44 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: Fixed bug #2171.
+
+2003-02-27 00:13 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fi.po, nl.po: updated Finnish and Dutch
+ files
+
+2003-02-26 23:38 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/pl.po: Fixed syntax error
+
+2003-02-26 23:17 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: uipdated
+
+2003-02-26 21:54 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation (this is
+ my first cvs commit ;) ).
+
+2003-02-26 19:58 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/scanner.pm: Skip Alcatel Speed Touch ADSL Modem when
+ it is detected by "sane-find-scanner"
+
+2003-02-26 17:35 Fançois Pons
+
+ * perl-install/standalone/drakpxe: added code to handle more
+ smootly if apache or apache-mod_perl is installed, or try using
+ apache2.
+
+2003-02-26 17:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: untabify
+
+2003-02-26 17:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/newt.pm: handle multi-line labels for
+ Checkbox'es (eg: Options in diskdrake)
+
+2003-02-26 16:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: bootlook.pm, standalone/drakboot: - kill used once
+ only bootlook module - inline oneliners use only once - kill
+ unused variables - strict pragma fixes - ...
+
+2003-02-26 16:28 Fançois Pons
+
+ * perl-install/standalone/drakconnect: fixed unablities to launch
+ Internet configuration dialog.
+
+2003-02-26 16:27 Fançois Pons
+
+ * perl-install/network/network.pm: small fixes.
+
+2003-02-26 16:14 Fançois Pons
+
+ * perl-install/standalone/drakconnect: add explicit probe for
+ netcnx type.
+
+2003-02-26 16:14 Fançois Pons
+
+ * perl-install/network/network.pm: added probe separately to handle
+ drakconnect horror.
+
+2003-02-26 16:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: detect usb adsl speed touch modem
+ as modem and not as unknown device
+
+ what's remain: why sane-find-scanner keep detect it a scanner ??
+
+2003-02-26 16:05 Fançois Pons
+
+ * make_boot_img: cleaned acpi entries to propagate to all image
+ (floppies included).
+
+2003-02-26 15:38 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/gen_locales.sh: removed exception for Tamil
+
+2003-02-26 15:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: on laurent request, strip the
+ empty lines and add a end-of-line character on last line
+
+2003-02-26 15:25 Fançois Pons
+
+ * perl-install/network/network.pm: add probe of internet connection
+ (this could avoid strange behaviour).
+
+2003-02-26 15:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: uk.po, uz.po, vi.po, wa.po, zh_CN.po,
+ zh_TW.po: typo fix (s/snd-slot/sound-slot/)
+
+2003-02-26 15:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: harddrake/sound.pm, share/po/fr.po,
+ share/po/DrakX.pot, share/po/af.po, share/po/ar.po,
+ share/po/az.po, share/po/be.po, share/po/bg.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/fi.po, share/po/ga.po,
+ share/po/gl.po, share/po/he.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/lt.po, share/po/lv.po, share/po/mt.po,
+ share/po/nl.po, share/po/no.po, share/po/pl.po, share/po/pt.po,
+ share/po/pt_BR.po, share/po/ro.po, share/po/ru.po,
+ share/po/sk.po, share/po/sl.po, share/po/sp.po, share/po/sq.po,
+ share/po/sr.po, share/po/sv.po, share/po/ta.po, share/po/tg.po,
+ share/po/th.po, share/po/tr.po: typo fix (s/snd-slot/sound-slot/)
+
+2003-02-26 15:19 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: moved type detection
+ code to network.
+
+2003-02-26 15:15 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/: Makefile, share/list.ia64: merge ia64
+
+2003-02-26 15:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/newt.pm: handle the "Advanced" button in
+ newt
+
+2003-02-26 14:58 Fançois Pons
+
+ * perl-install/standalone/drakpxe: switched to apache2 instead of
+ apache (avoid problem with apache-mod_perl).
+
+2003-02-26 14:29 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/bootloader.pm: merge ia64
+
+2003-02-26 14:19 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: updated
+
+2003-02-26 14:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/isdn.pm: replace the last @isdndata with
+ @isdn::isdndata (beurk)
+
+2003-02-26 14:11 Fançois Pons
+
+ * perl-install/network/network.pm: fixed back as titi sucks about
+ message.
+
+2003-02-26 14:04 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/install_steps.pm: Merging ia64
+
+2003-02-26 14:03 Fançois Pons
+
+ * perl-install/network/network.pm: try to get back DOMAINNAME if
+ needed.
+
+2003-02-26 13:13 Fançois Pons
+
+ * perl-install/install2.pm: added corporate global flag.
+
+2003-02-26 12:41 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/install_any.pm: merge ia64
+
+2003-02-26 12:39 Erwan Velu <erwan at mandriva.com>
+
+ * rescue/list.ia64: merg ia64
+
+2003-02-26 12:34 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/partition_table.pm: merging ia64
+
+2003-02-26 12:21 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/: fsedit.pm, steps.pm: merging ia64
+
+2003-02-26 12:17 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/fs.pm: merging fs.pm with ia64
+
+2003-02-26 12:14 Erwan Velu <erwan at mandriva.com>
+
+ * perl-install/any.pm: Merging any.pm with ia64
+
+2003-02-26 12:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: - remove unused variable (hey
+ perl_checker, why didn't you see it ?) - (rename_field) better
+ use the parameter we passed than relying on $_ be set to the
+ right value in that context even if it was correct
+
+2003-02-26 11:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2003-02-26 11:51 Nicolas Planel <nplanel at mandriva.com>
+
+ * perl-install/c/: smp-dmi.c, smp.c: Two smp detection for intel
+ arch
+
+2003-02-26 11:47 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: There is no arabic keyboard available
+ for the console
+
+2003-02-26 10:37 Fançois Pons
+
+ * make_boot_img: added acpi entries with activated acpi.
+
+2003-02-26 09:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/c/smp-dmi.c: fix planel sucks that broke the
+ installation (hint look at nm output on old stuff.so ... )
+
+2003-02-26 08:27 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated Finnish,
+ Hungarian and Slovak files
+
+2003-02-26 01:50 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Gtk2 port. Bugzilla reports.
+ Some perl_checker errors still, but cleaner. (some are
+ generated by calls from other modules used)
+
+2003-02-26 01:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_interactive.pm, diskdrake/interactive.pm:
+ after ntfs resize, warn user that on Windows next boot fsck will
+ be done
+
+2003-02-26 00:57 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: updated spanish translation
+
+2003-02-25 22:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/network.pm: (read_resolv_conf_raw): fix
+ "search ..." handling
+
+2003-02-25 21:48 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/mount.c: handle device hdi, hdj... hdt creation
+
+2003-02-25 20:38 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2003-02-25 19:15 Fançois Pons
+
+ * perl-install/pkgs.pm: improved code for populating group with
+ pixel.
+
+2003-02-25 17:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootlook.pm: - remove deprecated, half-commented
+ aurora related code - fix display of autologin radio buttons
+
+2003-02-25 17:47 Fançois Pons
+
+ * perl-install/network/adsl.pm: cleaned a bit the code.
+
+2003-02-25 17:41 Fançois Pons
+
+ * perl-install/network/adsl.pm: added login and passwd remember
+ from /etc/ppp/peers/adsl /etc/ppp/options /etc/ppp/pap-secrets
+ /etc/ppp/chap-secrets file
+
+2003-02-25 17:39 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: af.po, ga.po, lt.po, lv.po, uk.po: Fixed
+ the wrong Finish/Finnish of some translations
+
+2003-02-25 17:15 Fançois Pons
+
+ * perl-install/network/adsl.pm: modified string as sagem driver now
+ use pppoa
+
+2003-02-25 17:04 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/th.po: Fixed Thai button for "Finish" (it
+ means "end" and not "from Finland")
+
+2003-02-25 16:32 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: Prepared for
+ LPRng and PDQ goint to Contribs or leaving the distro, "Change
+ Printing System" button only appears if at least one of them is
+ manually installed.
+
+2003-02-25 16:26 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: zh_CN.po, zh_TW.po: updated Finnish and
+ French files
+
+2003-02-25 16:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, uz.po, vi.po, wa.po: updated Finnish and French files
+
+2003-02-25 15:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-7mdk
+
+2003-02-25 15:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules/interactive.pm: join
+ detect_devices::stringlist() to have it in a text box (eurk!)
+ (for bug #1802), the result is quite ugly, but at least the full
+ line can be read
+
+2003-02-25 15:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: harddrake/data.pm, standalone/service_harddrake:
+ handle floppes, zip drives, dvd-rom, cdrom and burners at startup
+ time
+
+2003-02-25 15:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update french translation
+
+2003-02-25 15:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: do not display alternatives
+ oss/alsa drivers if there's none
+
+2003-02-25 14:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: harddrake/data.pm, standalone/harddrake2: -
+ factorize code into harddrake::data::set_removable_configurator()
+ - really do not offer to configure module for removable devices -
+ do not put zip drives in unknown devices class - reuse Yes|No
+ translations in harddrake::ui
+
+2003-02-25 14:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_gtk.pm, install_steps_gtk.pm: cleanup
+ handling of XF4 server choice during install
+
+2003-02-25 14:36 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/po/fr.po: mise-à-jour => mise à jour
+
+2003-02-25 14:36 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: readd harddrake in SYSTEM 5
+
+2003-02-25 13:30 Fançois Pons
+
+ * perl-install/any.pm: added dmidecode in bug report.
+
+2003-02-25 13:28 Fançois Pons
+
+ * perl-install/share/list: added dmidecode in install.
+
+2003-02-25 13:27 Fançois Pons
+
+ * rescue/list: removed dmidecode.
+
+2003-02-25 13:22 Fançois Pons
+
+ * rescue/list: added dmidecode for rescue (from lm_sensors)
+
+2003-02-25 13:19 Fançois Pons
+
+ * tools/Makefile, perl-install/Makefile: removed dmidecode.
+
+2003-02-25 13:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: (fileshare_config): create group "fileshare"
+ in "Custom" mode
+
+2003-02-25 12:51 Warly <warly at mandriva.com>
+
+ * perl-install/share/compssUsers: add ARCHIVING in OFFICE
+
+2003-02-25 11:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: s/apache/apache2/
+
+2003-02-25 11:47 Pixel <pixel at mandriva.com>
+
+ * kernel/: list_modules.pm, modules.pl: add 3c990 and bcm4400 (bug
+ #2316)
+
+2003-02-25 11:39 Nicolas Planel <nplanel at mandriva.com>
+
+ * perl-install/c/: Makefile.PL, smp-dmi.c, smp.c: Add dmidetection
+ for smp
+
+2003-02-25 11:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: don't black out the
+ screen if not needed
+
+2003-02-25 11:32 Fançois Pons
+
+ * perl-install/Makefile, tools/Makefile: added dmidecode
+
+2003-02-25 10:37 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/list.x86_64: More xf86 modules for x86-64
+
+2003-02-25 10:00 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: removed gnome-tiles
+
+2003-02-25 09:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: - don't offer to configure
+ module for removable media - usb devices (such as zip): display
+ vendor, description and a more detailled media type
+
+2003-02-25 08:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: we already use diagnostics
+ pragma, so -w will just slow down normal execution
+
+2003-02-25 08:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: only list physically present
+ floppies
+
+2003-02-25 08:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: reuse MDK::Common
+
+2003-02-25 08:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: - fix stupid copy 'n past of
+ copyright header - update copyright years
+
+2003-02-25 08:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: fix #???? : switch the
+ "expert mode" toggle button label regarding the current mode
+ (beginner or expert)
+
+2003-02-25 08:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: display media capacity too
+ (DVD and/or burning ability)
+
+2003-02-25 01:45 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: Updated Spanish translations (some
+ left)
+
+2003-02-24 21:05 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, pl.po, pt.po, pt_BR.po:
+ updated Portuguese file
+
+2003-02-24 19:23 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/probing.c: replace checking hd[a-h] with hd[a-t] (cf
+ bug #1801)
+
+2003-02-24 19:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: use Sans & Monospace for kde (as requested
+ by lmontel)
+
+2003-02-24 18:59 Warly <warly at mandriva.com>
+
+ * perl-install/share/compssUsers: "Mail/Groupware/News" is now just
+ "Mail"
+
+2003-02-24 17:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-6mdk
+
+2003-02-24 16:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/services.pm: in standalone mode, only display a
+ service as enabled at boot time only if it's really enabled in
+ current runlevel. what's more it's more coherent with other
+ "only show current runlevel status" tools like ntsysv.
+
+2003-02-24 15:09 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/modules.pm: dmasound_awacs -> dmasound_pmac
+
+2003-02-24 13:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2003-02-24 13:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: - remove debug statements -
+ print an error message if we die on something other than
+ wizcancel
+
+2003-02-24 13:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: fix mail alert generation - do
+ not crash without any message in strict mode (wizcancel die
+ miscatched) - make the generated script be 'use strict' and
+ perl_checker compliant
+
+2003-02-24 12:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: allow neuneus to quit
+ install at license step (esp. for Ann & Warly's father)
+
+2003-02-24 12:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: fix #1771
+
+2003-02-24 12:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: level should not be editable
+
+2003-02-24 12:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: - fix packing (#1760) -
+ --expert command line option switch to expert mode by default -
+ only hide expert stuff if not in expert mode at startup
+
+2003-02-24 11:50 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: one entry
+
+2003-02-24 09:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: more fixes
+
+2003-02-24 09:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: fix size when embedded
+
+2003-02-24 09:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-5mdk
+
+2003-02-24 09:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: looks better like this
+
+2003-02-24 09:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootlook.pm: perl_checker fix
+
+2003-02-24 09:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootlook.pm: clean up: - no more directly handle
+ embeddign - use ugtk2
+
+2003-02-24 08:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: standalone.pm, ugtk2.pm: final embedding cleanups
+
+2003-02-24 08:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: simplify
+
+2003-02-24 08:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/net_monitor: fix embedding (even if we
+ don't embbed it, it's better)
+
+2003-02-24 08:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: bootlook.pm, my_gtk.pm, ugtk2.pm,
+ standalone/XFdrake, standalone/drakautoinst,
+ standalone/drakconnect, standalone/keyboarddrake,
+ standalone/logdrake, standalone/printerdrake,
+ standalone/scannerdrake: - clean up embedding; since socket
+ automatically emit plug-added gtk+ signal when plug is realize,
+ it's just cleaner to centralize/consolidate the child embedding
+ in mcc this of course, need a newer up-to-date mcc what's
+ more, it allows to remove the somewhat mythical "$::isEmbedded
+ and kill 'USR2', $::CCPID;" - keyboarddrake, xfdrake,
+ drakautoinst: goto cleaning btw
+
+2003-02-24 08:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: interactive/gtk.pm, printer/printerdrake.pm,
+ standalone/harddrake2: first attempt at making printerdrake to
+ behave smoother when embedded in the mcc
+
+2003-02-24 08:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: bootlook.pm, drakxtools.spec, my_gtk.pm, ugtk2.pm,
+ diskdrake/hd_gtk.pm, standalone/XFdrake, standalone/drakTermServ,
+ standalone/drakautoinst, standalone/drakboot,
+ standalone/drakfont, standalone/drakxservices,
+ standalone/keyboarddrake: - clean up embedding; since socket get
+ automatically destroyed on child exit and since they emit
+ plug-removed at that moment, it's just cleaner to
+ centralize/consolidate the child exit in mcc this of course,
+ need a newer up-to-date mcc what's more, it allows to remove
+ the somewhat mythical "$::isEmbedded and kill 'USR1',
+ $::CCPID;" - drakautoinst, drakxservices, keyboardrake: fix
+ fscking embedding managment
+
+2003-02-24 08:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: - untabify - hide devices
+ which has no driver or whose driver is an url, a graphic server
+ and consolidate the test by the way
+
+2003-02-24 08:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: prefix devfs device name with
+ "/dev/" too
+
+2003-02-24 07:54 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated Welsh,
+ Greek, Swedish and Chinese files
+
+2003-02-24 07:01 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: improved default fonts for KDE, completed
+ the geographic location by continent for a few remaining country
+ codes
+
+2003-02-23 23:45 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/scannerdrake: Fixed wait message not
+ embedded in drakconf.
+
+2003-02-23 23:08 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: Several bug
+ fixes on printerdrake - "BrowsePoll <IP>:<Port>" needs "Browsing
+ On" in /etc/cups/cupsd.conf. - If the same printer model is once
+ on the parallel port and second on USB, there was a new USB
+ queue created on every start of Printerdrake. - Now CUPS is
+ restarted whenever a new USB print queue is set up so that CUPS
+ can provide the model-related USB URI. - Made sure that the
+ default printer is defined and that it is an existing queue so
+ that during installation printerdrake does not show a line only
+ containing " (Default)" in the list of installed printers. -
+ Cleaned up data structure after automatic queue generation.
+
+2003-02-23 21:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/timezone.pm: use output_p() instead of output() for
+ /etc/ntp/step-tickers
+
+2003-02-23 15:10 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/it.po: fixed several fuzzy lines
+
+2003-02-23 12:44 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: install_steps_interactive.pm,
+ printer/printerdrake.pm: Fixed bug of printerdrake loosing the
+ printer queue info during the preparation of the "Summary" window
+ (only if there are local printers). No the printer queue entries
+ should not be empty when clicking on "Configure" in the "Printer"
+ part of the "Summary" window.
+
+2003-02-23 01:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: (migrate_files): check
+ return values (fixes bug #2170)
+
+2003-02-22 21:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: in $::expert, use a SpinButton
+ instead of HScale for type "range" (useful in diskdrake to enter
+ the partition size directly)
+
+2003-02-22 16:35 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-02-22 16:10 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/harddrake2: changed an English string
+
+2003-02-22 14:23 Stefan Siegel <siegel at linux-mandrake.com>
+
+ * perl-install/share/po/de.po: updates
+
+2003-02-22 13:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: ensure galaxy-kde is installed
+ together with kdebase
+
+2003-02-22 13:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/raw.pm: (test_for_bad_drives): don't
+ open in write mode when testing
+
+2003-02-22 01:15 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: et.po, wa.po: updated Estonian file
+
+2003-02-22 00:41 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/list_modules.pm: - I need LSI Fusion SCSI drivers for
+ x86-64 (Newisys systems, sym53c1030) - Add vfat & fat modules on
+ x86-64 too.
+
+2003-02-21 23:18 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: updated
+
+2003-02-21 20:46 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/drakxtools.spec: 4mdk
+
+2003-02-21 20:41 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/isdn.pm: $isdn->{is_light} wasn't set while
+ using autodetection, rpm wasn't installed
+
+2003-02-21 20:36 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: tr.po, uk.po, uz.po, vi.po, wa.po,
+ zh_CN.po, zh_TW.po: updated Estonian and Dutch files
+
+2003-02-21 20:33 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po: updated
+ Estonian and Dutch files
+
+2003-02-21 19:05 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Fixed text of "Refresh
+ printer list" button when list is empty. - Let printerdrake
+ clean up its datastructure after auto-installing printers in
+ the beginning of the "Summary" installation step.
+
+2003-02-21 18:18 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: embedded should segfault a bit less if I
+ don't let the embedded window creation destroy the destroy
+ handler
+
+2003-02-21 18:17 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/: netconnect.pm, tools.pm: oups... hu...
+ nothing
+
+2003-02-21 17:43 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/netconnect.pm: get back password input for
+ adsl
+
+2003-02-21 15:28 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/network.pm: no need to use regexp
+
+2003-02-21 15:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/services.pm: (ask_standalone_gtk): ensure popup is
+ not destroyed more than once
+
+2003-02-21 15:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: "Generate auto install
+ floppy" and "Save packages selection" are now available in
+ advanced
+
+2003-02-21 15:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: fix setting the
+ image & colors in resolution chooser
+
+2003-02-21 15:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/pixmaps/colors16.png: - make it the same range as
+ colors.png and colors8.png - it is a 64 colors image (note that
+ colors8 is 16 colors)
+
+2003-02-21 14:39 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated Danish
+ file
+
+2003-02-21 14:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: when isEmbedded, use $::WizardTable to
+ allow non pop_it when not visible
+
+2003-02-21 14:14 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: workaround what seems to be a gtk bug
+ (#1445) gtk seems to loop (and take 100% user cpu) when I change
+ the pixbuf of a gtkcellrendererpixbuf in a treeview that is not
+ currently displayed
+
+2003-02-21 13:37 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/help.pm: fixed a typo
+
+2003-02-21 13:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: use test_for_bad_drives even after
+ install (esp. to detect removed usb-storage devices still visible
+ in /proc/scsi/scsi)
+
+2003-02-21 12:00 Florin Grad <florin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add isdn check in
+ get_net_device
+
+2003-02-20 23:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/help.pm: fix typos
+
+2003-02-20 22:10 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: perl_checker
+
+2003-02-20 21:49 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Finish gtk2 port.
+
+2003-02-20 21:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: don't vivify @cards
+
+2003-02-20 21:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: warn non-ascii chars in mount point (cf
+ bug #1588)
+
+2003-02-20 21:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: have ask_okcancel instead
+ of ask_warn on cdie's
+
+2003-02-20 21:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: allow Cancel in setupBootloader__entries
+
+2003-02-20 20:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: add catch_cdie's around
+ fsedit::check_mntpoint and fsedit::add
+
+2003-02-20 20:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: use cdie instead of die for warnings
+
+2003-02-20 20:34 Guillaume Cottenceau
+
+ * perl-install/: install_steps_interactive.pm, interactive.pm: oops
+ i didn't understand the internals of wait_message hence breaking
+ it. hopes that will fix.
+
+2003-02-20 20:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: fix $check_complete use in gtk
+ summary
+
+2003-02-20 20:08 Guillaume Cottenceau
+
+ * perl-install/any.pm: cows go møøh
+
+2003-02-20 20:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/shorewall.pm: fix florin: replace $prefix
+ with $::prefix
+
+2003-02-20 18:50 Florin Grad <florin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: update 2 rules for the pptp
+ dsl internet connection
+
+2003-02-20 18:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/network.pm: use
+ detect_devices::pcmcia_probe() instead of
+ detect_devices::probeall()
+
+2003-02-20 18:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/network.pm: - read_resolv_conf() reads
+ DOMAINNAME & DOMAINNAME2 - read_resolv_conf() reads
+ /etc/resolv.conf by default - read_resolv_conf_raw() created
+
+2003-02-20 17:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-3mdk
+
+2003-02-20 17:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: perl_checker fix
+
+2003-02-20 17:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootlook.pm: - add --testing support - fix #1923
+ (aka reuse consolided code instead of using deprecated code) -
+ minor cleanup - skip comments while parsing /etc/lilo.conf
+
+2003-02-20 17:08 Guillaume Cottenceau
+
+ * perl-install/: install_gtk.pm, ugtk2.pm: change a bit position of
+ main window and steps window in steps window, have titles in grey
+
+2003-02-20 17:07 Guillaume Cottenceau
+
+ * perl-install/share/logo-mandrake.png: update shadow
+
+2003-02-20 17:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: bootlook.pm, standalone/drakgw: don't use gtk+2
+ deprecated functions
+
+2003-02-20 16:36 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: added wait message
+ when building groups.
+
+2003-02-20 16:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, bootloader.pm, install_steps.pm: - add
+ "Force No APIC" - rename add_append() to set_append() (since it
+ can be used to remove a key) - add remove_append_simple()
+
+2003-02-20 16:01 Guillaume Cottenceau
+
+ * perl-install/fs.pm: thx rekcehc_lrep
+
+2003-02-20 15:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: - prevent any l10n problem by
+ having only one path string when both creating the menu and
+ acessing a menu widget (aka translate menu paths only once),
+ which also nicely cut down the translators job. - decrease
+ diagnostics pragma verbosity (aka remove big fat warning
+ messages)
+
+2003-02-20 15:54 Guillaume Cottenceau
+
+ * perl-install/install_steps_interactive.pm: install the
+ potentially needed locales country when user selected another
+ country
+
+2003-02-20 15:53 Guillaume Cottenceau
+
+ * perl-install/: install_steps_gtk.pm,
+ install_steps_interactive.pm, interactive.pm, services.pm,
+ share/logo-mandrake.png: Gtk2::Label::set is deprecated
+
+2003-02-20 15:52 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/dns.c: Fix mygethostbyaddr(), struct in is not a NULL
+ terminated string. i.e. len has to be either sizeof(in.s_addr)
+ or INADDRSZ.
+
+2003-02-20 15:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: {brltty}{device} is optional, default
+ is ttyS0 or ttyS1 (?)
+
+2003-02-20 15:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: help perl_checker find
+ the N("...") the #-PO corresponds to
+
+2003-02-20 15:39 Guillaume Cottenceau
+
+ * mdk-stage1/dns.c: fix potential segfault thx to gwenole
+
+2003-02-20 15:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: further updates
+
+2003-02-20 15:35 Pixel <pixel at mandriva.com>
+
+ * kernel/modules.pl: don't have hptraid silraid pdcraid on stage1
+ (/dev/ataraid unsupported anyway on stage1)
+
+2003-02-20 15:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: translate all countrie names
+
+2003-02-20 15:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update french translation
+
+2003-02-20 15:12 Guillaume Cottenceau
+
+ * perl-install/share/themes-galaxy.rc: logo is aso white on blue
+
+2003-02-20 15:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: log manually chosen graphic card
+
+2003-02-20 14:51 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/rpmsrate: Better defaults for OOo
+
+2003-02-20 14:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: fix brltty support
+
+2003-02-20 14:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: add XF86Config and XF86Config-4 to
+ report.bug
+
+2003-02-20 14:11 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/eu.po: changed encoding
+
+2003-02-20 14:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: no autologin by default if more than one
+ users
+
+2003-02-20 14:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: prefer myspell-en_US
+
+2003-02-20 13:46 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: corrected Russian
+ translation
+
+2003-02-20 13:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: don't let diskdrake detect
+ ext3/reiserfs/jfs/xfs on a type 0x7 partition
+
+2003-02-20 13:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table.pm: set {device_windobe} for 0x107
+ *and* 0x7 (since 0x107 is not set correctly at this stage)
+ (otherwise this causes mount points /mnt/win_ /mnt/win_1...)
+
+2003-02-20 13:26 Guillaume Cottenceau
+
+ * perl-install/install_steps_gtk.pm: fix bold diplay of texts in
+ adverts
+
+2003-02-20 13:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: set a minimum size for
+ Gtk2::HScale's (mainly used for resizing partitions)
+
+2003-02-20 12:59 Guillaume Cottenceau
+
+ * perl-install/share/po/fr.po: some misc fixes
+
+2003-02-20 12:59 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/network.pm: dhcp fix
+
+2003-02-20 12:57 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: try to handle case with large fonts (CJK
+ for example) -> branch on TextView when the box will be quite
+ large
+
+2003-02-20 12:48 Guillaume Cottenceau
+
+ * perl-install/share/po/fr.po: translate iraq
+
+2003-02-20 12:45 Guillaume Cottenceau
+
+ * perl-install/install_steps_interactive.pm: add a PO comment to
+ try to keep buttons in the window..
+
+2003-02-20 12:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: usb is runned by rc.sysinit, and
+ doesn't like "chkconfig --add" anymore
+
+2003-02-20 12:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: fix $ok_clicked when there is no
+ ok button
+
+2003-02-20 11:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-2mdk
+
+2003-02-20 11:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: fix #1829
+
+2003-02-20 11:08 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: typo fix
+
+2003-02-20 03:59 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: Made sure that
+ printerdrake does not open its main window when called during the
+ preparation of the "Summary" screen.
+
+2003-02-20 03:47 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: - Improved/fixed
+ generation of printer list entries from manufacturer-supplied
+ PostScript PPD files - Removed forgotten debug mode - Disabled
+ wizard-mode temporarily
+
+2003-02-20 03:38 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Partial gtk2 update - still
+ needs work on TreeViews
+
+2003-02-20 02:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, diskdrake/interactive.pm: - simplify
+ check_mntpoint - fix checking mount point in Mount_point()
+
+2003-02-20 02:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/: standalone/diskdrake, interactive/gtk.pm,
+ interactive.pm: have less warnings when debugging
+
+2003-02-20 02:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: log why auto X config failed
+ (needVideoRam)
+
+2003-02-20 02:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: ensure {box_size} is set (to have less
+ warnings)
+
+2003-02-20 00:46 Guillaume Cottenceau
+
+ * perl-install/: any.pm, bootloader.pm, fs.pm, fsedit.pm,
+ install2.pm, install_any.pm, install_interactive.pm,
+ install_steps.pm, install_steps_interactive.pm, loopback.pm,
+ lvm.pm, partition_table.pm, raid.pm, diskdrake/hd_gtk.pm,
+ diskdrake/interactive.pm, network/drakfirewall.pm,
+ network/ethernet.pm, partition_table/raw.pm: to workaround perl
+ bug removing UTF8 flag when passing scalars to die's, pass a
+ scalar-ref. but we need to de-ref, so it might break many things
+ :). let's make a prayer :).
+
+2003-02-20 00:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps.pm, install_steps_interactive.pm:
+ add some more formatError
+
+2003-02-20 00:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: use formatError
+
+2003-02-20 00:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_auto_install.pm: add a formatError
+
+2003-02-20 00:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_interactive.pm: add some formatError's
+
+2003-02-20 00:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: use formatError on $err
+
+2003-02-20 00:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: use formatError($err)
+ instead of $@
+
+2003-02-19 23:50 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: set the destroy handler after wizard
+ creation, or the fact that wizard window will overwrite existing
+ window will also destroy the destroy handler
+
+2003-02-19 23:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: indent more the entries in the
+ summary (as asked by dadou)
+
+2003-02-19 23:21 Guillaume Cottenceau
+
+ * perl-install/lang.pm: I'm stupid, we need to set UTF8 when there
+ are two installed langs with different encodings, not just when
+ the additional languages have different encoding than main one
+
+2003-02-19 23:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/: pixmaps/ic82-systemeplus-40.png,
+ pixmaps/ic82-tape-40.png,
+ standalone/icons/ic82-systemeplus-40.png,
+ standalone/icons/ic82-tape-40.png: move some images from
+ standalone to pixmaps to have them both during install and after
+ install (images used by XFdrake)
+
+2003-02-19 23:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/pixmaps/X.png: add it back (used by XFdrake)
+
+2003-02-19 22:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2003-02-19 21:37 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * Makefile, make_boot_img: x86-64 now has only the following images
+ for now: cdrom, network, usb, blank. Make sure we don't default
+ to a text install. network.img fits on a floppy. ;-)
+
+2003-02-19 21:16 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: fix some segfaults caused by still calling
+ destroy or other gtk functions after a destroy has been already
+ done, triggered by the user clicking on the WM's "close this
+ application" button (#1651)
+
+2003-02-19 20:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: can't use $mainw->{ok}->clicked
+ since $mainw->{ok} doesn't always exist, set {retval} and
+ main_quit instead (the way it was done for double click, is this
+ ok when pressing enter?)
+
+2003-02-19 20:09 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm: add silraid and pdcraid
+
+2003-02-19 19:03 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/Makefile: Enable all usual stage1-* BINS on x86-64.
+ Add dietlibc to DIRS too for that arch. Fix rescue-gui build with
+ $(DIET) wrapper.
+
+2003-02-19 19:03 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: better comply to look of text like in Gtk1
+ (text inside a Frame)
+
+2003-02-19 19:02 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/mar/Makefile: Rearrange build so that only mar binary
+ is built with glibc and other objects with either glibc or
+ dietlibc.
+
+2003-02-19 19:01 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/Makefile: We only have to build mar here.
+
+2003-02-19 18:57 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: updated
+
+2003-02-19 18:47 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/rpmsrate: Improved the locale->font selection;
+ added the tetex-latex-arab-doc package (previously was included
+ in the main)
+
+2003-02-19 18:10 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: clean
+
+2003-02-19 18:02 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: fixed if update fail
+ to allow retry.
+
+2003-02-19 17:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/printerdrake: hide the icon when embedded
+ to get more space
+
+2003-02-19 17:52 Fançois Pons
+
+ * perl-install/crypto.pm: code slight reorganization.
+
+2003-02-19 17:51 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: added code to retry
+ finding an update medium if something went wrong.
+
+2003-02-19 17:44 Fançois Pons
+
+ * perl-install/pkgs.pm: added a missing sanity unwind.
+
+2003-02-19 17:43 Fançois Pons
+
+ * perl-install/pkgs.pm: add sanity code on error when reading
+ hdlist (this will avoid update medium being trashed if an error
+ occurred during hdlist download and so ...)
+
+2003-02-19 17:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ro.po, ru.po, sk.po, sl.po, sp.po, sq.po,
+ sr.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po, vi.po,
+ wa.po, zh_CN.po, zh_TW.po: updated Uzbek file
+
+2003-02-19 17:29 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po: updated Uzbek file
+
+2003-02-19 17:12 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: add ugly probed type
+ of network configuration.
+
+2003-02-19 16:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/printerdrake: fix embedding and clean it
+ up
+
+2003-02-19 16:53 Guillaume Cottenceau
+
+ * perl-install/share/rpmsrate: add fonts-ttf-arabic when locale ar
+
+2003-02-19 16:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/scannerdrake: cleanup
+
+2003-02-19 16:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/scannerdrake: fix embedding
+
+2003-02-19 15:38 Fançois Pons
+
+ * perl-install/install_steps.pm: add simplified menu for desktop
+ mode.
+
+2003-02-19 15:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakxtv: - perl_checker fixes -
+ indent-region, untabify - comment workaround
+
+2003-02-19 15:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakxtv: workaround a drakx bug which
+ don't always add bttv to /etc/modules
+
+2003-02-19 15:13 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: make sure
+ network::network:: is used (just in case)
+
+2003-02-19 15:09 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: add default
+ configuration for network for summary.
+
+2003-02-19 15:04 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/: compssUsers, rpmsrate: - Add localized help
+ files for OpenOffice.org - Add new SPELLCHECK category for
+ myspell spellchecking and hyphenators
+
+2003-02-19 15:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/: detect_devices.pm, fsedit.pm: - cleanup & simplify
+ - handle raid on raid detection
+
+2003-02-19 15:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/raid.pm: mkraid wants all the md devices written in
+ raidtab to exist, even if asking to create a specific md
+
+2003-02-19 14:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: don't log "warning: find_index failed
+ in ..."
+
+2003-02-19 14:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/raid.pm: cleanup
+
+2003-02-19 14:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: - allow raid on raid (raid
+ 10) - focus mount point in Mount_point - focus type in Type
+
+2003-02-19 14:08 Guillaume Cottenceau
+
+ * perl-install/share/po/de.po: fix typo (#1821)
+
+2003-02-19 13:55 Guillaume Cottenceau
+
+ * perl-install/share/compssUsers: provide a minimum desrciption for
+ Scientific Workstation (#1814)
+
+2003-02-19 13:43 Guillaume Cottenceau
+
+ * perl-install/share/themes-galaxy.rc: try to choose sensible
+ values for insensitive widgets
+
+2003-02-19 13:16 Guillaume Cottenceau
+
+ * perl-install/lang.pm: have _ at the end of Belarussian, or else
+ it messes up alphabetical sorting (_ is added by pablo to know it
+ needs fixing..)
+
+2003-02-19 13:05 Guillaume Cottenceau
+
+ * perl-install/any.pm: have "all languages" and "utf8" before the
+ list of languages, per request of pablo
+
+2003-02-19 12:34 Guillaume Cottenceau
+
+ * perl-install/share/po/Makefile: revert Pablo's breaking po's
+ installation :)
+
+2003-02-19 12:31 Guillaume Cottenceau
+
+ * perl-install/Makefile: not more xpm's in share
+
+2003-02-19 12:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: disallow double-clicking on
+ "Refuse" (license step)
+
+2003-02-19 11:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: s/boot partition/the root partition/ (cf bug
+ #1803)
+
+2003-02-19 11:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: remove no more used variable
+
+2003-02-19 10:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: (read_conf) simplify
+
+2003-02-19 00:39 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: fixed some
+ strings in Hebrew file (now RTL mode is properly supported)
+
+2003-02-19 00:35 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Show description of the
+ printer when an unknown printer is found during automatic queue
+ setup an it is asked for the model.
+
+2003-02-18 23:46 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/steps.pm: changed "Choose your Language" ->
+ "Language"
+
+2003-02-18 23:30 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/scanner.pm: Replaced "my" by "our" for the
+ declaration of the "ScannerDB" variable, so that
+ /usr/bin/scannerdrake has access to it.
+
+2003-02-18 22:40 Guillaume Cottenceau
+
+ * perl-install/lang.pm: small change thx to pablo
+
+2003-02-18 22:07 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-02-18 22:04 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, Makefile, af.po, ar.po, az.po,
+ be.po, bg.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, fi.po, fr.po, ga.po, gl.po,
+ he.po, hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po,
+ lv.po, mt.po, nl.po, no.po, pl.po: updated pot file
+
+2003-02-18 21:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, partition_table.pm: /proc/partitions
+ includes partition with type "empty" and a non-null size so add
+ them for comparison
+
+2003-02-18 21:42 Stew Benedict <sbenedict at mandriva.com>
+
+ * kernel/list_modules.pm: Probe airport on PPC, don't skip gmac.
+ Fix sound driver name.
+
+2003-02-18 21:39 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/: drakfloppy, drakfont, net_monitor:
+ Deactivated translations that can't be handled by gtk1 for gtk1
+ tools; drakfont: call fc-cache without specifying the path,
+ fc-cache is smart enough to do the right thing, and that way it
+ will also catch fonts from other directories that could have been
+ installed manually.
+
+2003-02-18 21:34 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/theme-editor.pl: as this tool uses gtk1,
+ deactivate translations for languages that gtk1 can't handle
+
+2003-02-18 21:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/newt.pm: simplify
+
+2003-02-18 20:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Newt/Newt.xs, interactive/newt.pm: fix tree in
+ newt (now handles default selected entry, and disallow using
+ non-leaves)
+
+2003-02-18 20:45 Guillaume Cottenceau
+
+ * perl-install/install_steps_interactive.pm: remove unneeded
+ pablo's change on RTL
+
+2003-02-18 20:21 Guillaume Cottenceau
+
+ * perl-install/: install_gtk.pm, lang.pm: reposition main and steps
+ window when in RTL language
+
+2003-02-18 19:56 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/steps.pm: shortened some strings to help them fit in
+ the steps window
+
+2003-02-18 19:53 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/: Makefile, Makefile.common: Use dietlibc on x86-64
+
+2003-02-18 19:51 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/: Makefile, Makefile.common, bzlib/Makefile,
+ insmod-modutils/Makefile, insmod-modutils/obj/Makefile,
+ insmod-modutils/util/Makefile, mar/Makefile, newt/Makefile,
+ slang/Makefile: - Use minilibc on x86-64 - mar requires bzlib to
+ be built beforehand, especially if building with dietlibc -
+ Nuke trickery to handle -DIET objects, everything is now built
+ through the diet driver, defined into $(DIET)
+
+2003-02-18 19:48 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/dns.c: dietlibc defined __dietlibc__ macro. Also add
+ check for __GLIBC__. If none of those C library is used, simply
+ abort compilation.
+
+2003-02-18 18:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: define language
+ direction
+
+2003-02-18 18:49 Guillaume Cottenceau
+
+ * perl-install/: install_gtk.pm, install_steps_gtk.pm, lang.pm:
+ allow to specify font size in output of l2pango_font destroy and
+ recreate steps window when charset changed because gtk won't
+ update the font size otherwise
+
+2003-02-18 18:49 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/drakxtools.spec: new version
+
+2003-02-18 18:47 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/network.pm: Get back configuration settings
+ from conf files (fix some kind of titi sucking)
+
+2003-02-18 18:41 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * mdk-stage1/newt/form.c: #include <string.h> for memset()
+
+2003-02-18 18:30 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: updated
+
+2003-02-18 18:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: pixelize
+
+2003-02-18 18:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list: add unicore/To/Upper.pl for
+ printerdrake.pm (things like $s =~ /$s/i needs this when $s is
+ utf8)
+
+2003-02-18 18:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: perl_checker fix
+
+2003-02-18 17:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: (setRootPassword):
+ display "Authentication" in Advanced
+
+2003-02-18 17:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-1mdk
+
+2003-02-18 17:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: display the release
+ even when there is only one system to upgrade (asked by flepied &
+ warly)
+
+2003-02-18 17:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: - (row_setting_data) inline it
+ - fix #1769
+
+2003-02-18 16:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/scannerdrake: perl_checker fixes
+
+2003-02-18 15:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/scanner.pm: perl_checker fixes
+
+2003-02-18 15:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: perl_checker fixes
+
+2003-02-18 15:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: fix ugly bug (the bug was
+ introduced in diskdrake/interactive.pm 1.67)
+
+2003-02-18 14:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/resize_ntfs.pm: (resize): do a test resize
+ before doing the real one
+
+2003-02-18 14:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: don't use tmpfs on /tmp if /tmp is a
+ separate partition (anyway, all this is ugly, see with titi)
+
+2003-02-18 14:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/: partition_table.pm, diskdrake/interactive.pm: -
+ ensure someone can't set a mount point on a non formatted ntfs
+ partition - remove the mount point when destructive resizing and
+ isNonMountable
+
+2003-02-18 13:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: af.po, ar.po, az.po, be.po, bg.po, bs.po,
+ ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po, et.po,
+ eu.po, fi.po, fr.po, ga.po, gl.po, he.po, hr.po, hu.po, id.po,
+ is.po, it.po, ja.po, ko.po, lt.po, lv.po, mt.po, nl.po, no.po,
+ pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sp.po, sq.po,
+ sr.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po, vi.po,
+ wa.po, zh_CN.po, zh_TW.po: ease translator job regarding latest
+ draksec commit
+
+2003-02-18 13:08 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: pt_BR.po, ro.po, ru.po, sk.po, sl.po,
+ sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po,
+ uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-02-18 13:05 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po: updated pot file
+
+2003-02-18 13:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: the empty label in the HButtonBox had the
+ same size as the buttons (since HButtonBox are always
+ homogeneous), causing addUser in german not to fit on the screen.
+ No good way to solve this :-(
+
+2003-02-18 12:36 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/share/list.ppc: Files for XFree4 based PPC install.
+
+2003-02-18 12:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: simplify
+
+2003-02-18 12:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/keyboard.pm: translate grp_toggles at display-time,
+ not compile-time
+
+2003-02-18 12:06 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: fix titi's perl checko
+
+2003-02-18 12:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: better default partitioning
+
+2003-02-18 11:50 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/help.pm: fixed small typo
+
+2003-02-18 11:48 Guillaume Cottenceau
+
+ * perl-install/: ugtk2.pm, interactive/gtk.pm,
+ standalone/harddrake2: internalize prepare_gtk2 in the BEGIN {}
+ of ugtk2 already containing the Gtk2->init
+
+2003-02-18 11:47 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Removed N( ) around IP
+ numbers, there is no point in "translating" them
+
+2003-02-18 11:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: - untabify -
+ (basic_seclevel_option) inline it and kill it -
+ (new_editable_combo) take two arguments, a ref on strings list
+ and the default value
+
+2003-02-18 10:33 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: updated
+
+2003-02-18 10:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: just remove all DISPLAYMANAGER
+ occurences and fix the case where there were no such line before
+ (which probably had never caught anyone)
+
+2003-02-18 09:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: bump version on fredl request
+
+2003-02-18 09:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/help.pm: resync with msec
+
+2003-02-18 01:49 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: - "BrowsePoll"
+ support in the CUPS configuration dialog. - Fixes on error
+ message windows in the dialog for printer sharing destinations.
+
+2003-02-18 01:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: in {complete} or {canceled},
+ ensure giving a bad entry number to focus doesn't break (and log
+ that something wrong happened)
+
+2003-02-18 00:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: fix bug occurring "if
+ no sound card are detected AND the user selected things needing a
+ sound card, propose a special case for ISA cards" (thanks to
+ guran)
+
+2003-02-18 00:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/help.pm: some more fixes (thanks to Edward Cherlin
+ and Reinout van Schouwen)
+
+2003-02-18 00:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: translate server {name} at
+ display-time, not compile-time
+
+2003-02-18 00:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/security/level.pm: replace %level_list with
+ level_list() so that N("...") is called at runtime instead of
+ compile-time
+
+2003-02-17 23:55 Guillaume Cottenceau
+
+ * perl-install/lang.pm: change %countries so that we really have
+ translated countries (side effect of #1723 -> noticing this bug)
+
+2003-02-17 23:49 Guillaume Cottenceau
+
+ * perl-install/standalone/drakpxe: fix translation of title by
+ calling N() after interactive->vnew
+
+2003-02-17 23:42 Guillaume Cottenceau
+
+ * perl-install/standalone/drakgw: fix translation of title: N()
+ needs to be called after interactive->vnew has been called
+
+2003-02-17 22:10 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: pl.po, pt.po, pt_BR.po, ro.po, ru.po,
+ sk.po, sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po,
+ tr.po, uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated
+ Estonian file
+
+2003-02-17 22:07 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ help-de.pot, help-es.pot, help-fr.pot, help-it.pot, hr.po, hu.po,
+ id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po, mt.po, nl.po,
+ no.po: updated Estonian file
+
+2003-02-17 21:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/help.pm: fix typos (thanks to Reinout van Schouwen)
+
+2003-02-17 21:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: remove debug code :-(
+
+2003-02-17 19:59 Guillaume Cottenceau
+
+ * perl-install/drakxtools.spec: grüh
+
+2003-02-17 19:57 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-02-17 19:48 Guillaume Cottenceau
+
+ * perl-install/lang.pm: disable mn until we have lang-mn.png
+
+2003-02-17 19:47 Guillaume Cottenceau
+
+ * perl-install/steps.pm: fix pixel's commit: never display
+ choosePackages and configureServices, instead of always
+
+2003-02-17 19:46 Pixel <pixel at mandriva.com>
+
+ * rescue/: list.i386, list.ia64, list.x86_64: replace ext2resize
+ with resize2fs in rescue (already done in DrakX)
+
+2003-02-17 19:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/steps.pm: don't show "Choose packages to install"
+ nor "Configure services" (was still there in expert)
+
+2003-02-17 18:39 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: updated @locales list
+
+2003-02-17 18:27 Fançois Pons
+
+ * perl-install/fsedit.pm: given default size of / increased.
+
+2003-02-17 17:41 Fançois Pons
+
+ * perl-install/fsedit.pm: increased /var container for suggestion
+ (simple or with /usr).
+
+2003-02-17 17:37 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: add a reboot if not
+ enough free space is available for installation or upgrade.
+
+2003-02-17 17:00 Fançois Pons
+
+ * perl-install/commands.pm: fixed command insmod.
+
+2003-02-17 16:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: bump version number
+
+2003-02-17 16:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/help.pm: synced with msec
+
+2003-02-17 15:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: add a checkbox "Force ACPI"
+
+2003-02-17 15:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: propagate /proc/cmdline acpi=xxx
+
+2003-02-17 15:42 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: have acpi=off by default
+
+2003-02-17 15:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: have acpi=off by default
+
+2003-02-17 15:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: fix pop_it...
+
+2003-02-17 15:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: ensure $o->{raw_X} is
+ not destroyed when there is no modification done (since in that
+ case Xconfig::main::configure_everything_or_configure_chooser()
+ returns undef)
+
+2003-02-17 14:58 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-0.34mdk
+
+2003-02-17 14:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: hopefully final fix for pop_it
+
+2003-02-17 14:37 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - Fixed bug of HP DeskJetb 990C
+ being automatically installed even if there is already a queue
+ for it - Fixed checking whether a device is known to CUPS
+
+2003-02-17 14:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree3.pm: (is_fbdev): fix typo
+
+2003-02-17 14:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: (get_both): fix typo
+
+2003-02-17 14:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: also ->hide in when a button is
+ clicked in standalone
+
+2003-02-17 14:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: don't
+ security::various::config_security_user() can fail, don't let it
+ bother us
+
+2003-02-17 14:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: (to_string):
+ simpler way to handle the "default" resolution of frame-buffer
+
+2003-02-17 13:37 Warly <warly at mandriva.com>
+
+ * perl-install/share/logo-mandrake.png: 9.1 rc1
+
+2003-02-17 13:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: use fbdev when the graphic card is
+ unknown
+
+2003-02-17 13:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: warn when auto conf fail
+
+2003-02-17 13:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: add module2description()
+
+2003-02-17 13:14 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/harddrake2: correction for non-latin1
+ locales, made strings "Unknown" and "unknown" translatable in
+ device info
+
+2003-02-17 13:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: in the old days, on cannot disable
+ shrink1, resize2 or shrink2 since they always were true
+
+2003-02-17 13:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: better sound card
+ description in summary
+
+2003-02-17 13:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: enhance summary layout
+
+2003-02-17 12:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/hd_gtk.pm: fix help popping all the time
+
+2003-02-17 11:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-0.33mdk
+
+2003-02-17 11:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: fix setting pop_it for wizard in
+ standalone
+
+2003-02-17 10:59 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ar.po, ru.po: updated Russian and Arabic
+ files
+
+2003-02-17 10:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: af.po, ar.po, az.po, be.po, bg.po, bs.po,
+ ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po, et.po,
+ eu.po, fi.po, fr.po, ga.po, gl.po, he.po, hr.po, hu.po, id.po,
+ is.po, it.po, ja.po, ko.po, lt.po, lv.po, mt.po, nl.po, no.po,
+ pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sp.po, sq.po,
+ sr.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, uz.po, vi.po,
+ wa.po, zh_CN.po, zh_TW.po: simplify translator job by propaging
+ pixel english typo fix
+
+2003-02-17 09:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix #1718
+
+2003-02-17 08:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: network/ethernet.pm, network/netconnect.pm,
+ standalone/drakconnect: perl generate undef indefinitely from the
+ void
+
+2003-02-17 08:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: this was just tested before
+
+2003-02-17 08:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/scanner.pm: - (get_usb_ids_for_port,
+ updateScannerDBfromSane) : simplify - perl_checker fixes
+
+2003-02-17 06:18 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-0.31mdk
+
+2003-02-17 05:24 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: printer/data.pm, printer/detect.pm,
+ printer/main.pm, printer/printerdrake.pm,
+ standalone/printerdrake: - Restructured function "main()" - Made
+ automatic queue setup being done during installation - Support
+ for unknown printers in auto-detection and in automatic queue
+ setup - Fixed determination of default printer - Fixed printer
+ help page display - Fixed wait message in /usr/sbin/printerdrake
+
+2003-02-17 01:48 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ar.po, da.po, fi.po, nl.po, sv.po, ta.po:
+ updated Arabic, Dutch, Danish, Finnish, Swedish and Tamil files
+
+2003-02-17 01:18 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: synchrnoization of locale names with what
+ we ship. updated list of available kde langs
+
+2003-02-17 00:02 Stefan Siegel <siegel at linux-mandrake.com>
+
+ * perl-install/share/po/de.po: updates
+
+2003-02-16 22:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: summary written in gtk, isn't
+ it nice (?)
+
+2003-02-16 22:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: handle "not
+ configured" in summary_prompt
+
+2003-02-16 21:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_interactive.pm, install_steps_gtk.pm,
+ interactive.pm, Xconfig/resolution_and_depth.pm,
+ diskdrake/hd_gtk.pm: - factorize "Help"-button handling - fix
+ interactive_help_get_id (happily, it was no pb :)
+
+2003-02-16 20:55 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm: add aic7xxx_old (needed when the network
+ card firmware hasn't been updated)
+
+2003-02-16 18:55 Guillaume Cottenceau
+
+ * perl-install/any.pm: clean $o->{locale}{langs}
+
+2003-02-16 17:58 Guillaume Cottenceau
+
+ * perl-install/: install_gtk.pm, install_steps_gtk.pm: fix my
+ breakage (broke non-latin1 installs :/)
+
+2003-02-16 17:51 Guillaume Cottenceau
+
+ * perl-install/lang.pm: log a bit more
+
+2003-02-16 15:52 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: updated
+
+2003-02-16 13:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/services.pm: fix rawdevices description (bug #1677)
+
+2003-02-16 12:55 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: updated
+
+2003-02-16 12:48 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: keyboard.pm, lang.pm: Enabled Arabic keyboard,
+ added full list of countries listed in iso 3166, changed japanese
+ charset->font for KDE, removed charset names no longer used
+
+2003-02-16 01:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/help.pm: fix typo (thanks to Christophe Combelles)
+
+2003-02-16 00:18 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: don't mute the keyboard in
+ ask_browse_tree_info (#1598)
+
+2003-02-15 21:18 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/scannerdrake: Fixed bug in setting up
+ multiple scanners at once.
+
+2003-02-15 21:16 Guillaume Cottenceau
+
+ * perl-install/printer/printerdrake.pm: - try to workaround #1581 -
+ fix the most code style-independant perl checker things
+
+2003-02-15 19:30 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: et.po, no.po, vi.po: updated Estonian,
+ Norwegian and Vietnamese files
+
+2003-02-15 17:58 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: mostly updated
+
+2003-02-15 10:04 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: updated partially
+
+2003-02-15 09:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ar.po, nl.po, no.po, ro.po, ru.po, sk.po,
+ sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, th.po, tr.po: updated
+ remaining po files
+
+2003-02-15 09:03 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: why this file wasn't regenerated?
+
+2003-02-15 04:42 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ga.po, gl.po, he.po, hr.po, hu.po, id.po,
+ is.po, it.po, ja.po, ko.po, lt.po, lv.po, mt.po, vi.po: updated
+ pot files
+
+2003-02-15 03:34 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: af.po, ar.po, az.po, be.po, bg.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, fi.po, fr.po, pt.po, pt_BR.po, tg.po, uk.po, uz.po,
+ vi.po, wa.po, zh_CN.po, zh_TW.po: updated po files
+
+2003-02-15 02:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: fix gc's typo
+
+2003-02-15 00:58 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone.pm: Updated "Usage:" message for
+ Scannerdrake.
+
+2003-02-15 00:48 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: scanner.pm, standalone/scannerdrake: Improved
+ manual scanner configuration, bug fixes.
+
+2003-02-14 23:40 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: fixed
+
+2003-02-14 20:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, no.po: updated pot file
+
+2003-02-14 20:32 Guillaume Cottenceau
+
+ * perl-install/install_any.pm: install the locales-xx package for
+ the selected country
+
+2003-02-14 20:15 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: okcehc lrep (hebrew feeling)
+
+2003-02-14 18:35 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: wizard: free memory
+
+2003-02-14 18:33 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: add a frame to the wizard's outline
+
+2003-02-14 18:21 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/drakxtools.spec: 0.30mdk
+
+2003-02-14 17:02 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakperm: o Gtk2 o 'add a rule' works
+ again o 'edit rule' too o get_rights get all rights, not just a
+ few o little cleanup (more to come)
+
+2003-02-14 16:21 Guillaume Cottenceau
+
+ * perl-install/share/po/fr.po: fix misc
+
+2003-02-14 15:47 Guillaume Cottenceau
+
+ * perl-install/: install2.pm, steps.pm, ugtk2.pm, pixmaps/X.png,
+ pixmaps/bootdisk.png, pixmaps/bootloader.png, pixmaps/exit.png,
+ pixmaps/harddrive.png, pixmaps/keyboard.png,
+ pixmaps/language.png, pixmaps/mouse.png, pixmaps/network.png,
+ pixmaps/partition.png, pixmaps/rootpasswd.png,
+ pixmaps/security.png, pixmaps/services.png, pixmaps/summary.png,
+ pixmaps/user.png: honour 9.1 theme title of windows: no icon,
+ text to the left
+
+2003-02-14 15:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/: security/level.pm, standalone/draksec: cleanup
+ security::level, hopefully the **** draksec still works
+
+2003-02-14 15:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: add "Security level"
+ in summary
+
+2003-02-14 15:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_any.pm: create
+ install_any::set_security() and use it
+
+2003-02-14 15:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: remove unneeded msec related
+ actions (those are done in msec)
+
+2003-02-14 14:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/security/level.pm: fix errors (due to previous
+ commit)
+
+2003-02-14 14:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/security/level.pm: create
+ security::level::to_string()
+
+2003-02-14 14:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: - re-indent summary
+ entries - add group for summary entries
+
+2003-02-14 14:23 Guillaume Cottenceau
+
+ * perl-install/install_gtk.pm: cleanup
+
+2003-02-14 14:13 Guillaume Cottenceau
+
+ * perl-install/install_gtk.pm: fix default_theme always responding
+ 'galaxy'
+
+2003-02-14 14:12 Guillaume Cottenceau
+
+ * perl-install/: install_gtk.pm, install_steps_gtk.pm,
+ pixmaps/steps_off.png, pixmaps/steps_on.png: - update steps
+ window to 9.1 theme (blue/white bullets) - don't destroy steps
+ window between each step => better looking
+
+2003-02-14 13:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: install package shorewall
+ only when the user wants a firewall
+
+2003-02-14 13:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: (acceptLicense): do
+ translate "Accept" and "Refuse"
+
+2003-02-14 13:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: - add "Services" and
+ "Firewall" in summary - rework a little summary & summary_prompt
+
+2003-02-14 13:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: simpler way to detect broken
+ alternatives. It works for symlinks to symlinks, eg: rvi ->
+ /bin/vi -> /etc/alternatives/vi -> /bin/vim-minimal
+
+2003-02-14 13:42 Guillaume Cottenceau
+
+ * perl-install/share/themes-galaxy.rc: adapt theme: grey for
+ selection's background, no inverse video on the selected text
+
+2003-02-14 12:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm: in ask_browse_tree_info, have Next
+ instead of Ok, Previous instead of Cancel when isWizard
+
+2003-02-14 12:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps.pm, install_steps_interactive.pm,
+ services.pm: use $::prefix
+
+2003-02-14 12:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: change order of
+ entries in summary
+
+2003-02-14 11:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: themes/* is gone, no need to copy those
+ files
+
+2003-02-14 11:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: toggle Details / No details
+ (as suggested by Prabu Anand)
+
+2003-02-14 00:25 Guillaume Cottenceau
+
+ * mdk-stage1/network.c: when detected too little memory in
+ ftp/http, inform user that he/she may try an nfs install
+
+2003-02-13 23:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: have supermount back by default
+ (at least when the security level < 4)
+
+2003-02-13 23:21 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: added tmdns zcip mandrake-galaxy
+ galaxy-gnome
+
+2003-02-13 21:30 Guillaume Cottenceau
+
+ * perl-install/: install_gtk.pm, install_steps_gtk.pm,
+ share/install.rc, share/list, share/themes-galaxy.rc,
+ share/themes-marble3d.rc, share/themes-mdk-Desktop.rc,
+ share/themes-mdk.rc, share/themes.rc: - use nice new gnome theme
+ by ln and fcrozat - remove old no more used themes - for doc
+ team, provide an option so that we'll override some colors of the
+ default theme (for B&W printing screeshots)
+
+2003-02-13 21:17 Guillaume Cottenceau
+
+ * perl-install/install2.pm: - add option 'theme' to allow
+ specifying a theme - add option 'doc' to specify that we should
+ override the default theme with values well suited for printing
+ screenshots on a B&W printer
+
+2003-02-13 21:14 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: remove shape of windows
+
+2003-02-13 20:58 Guillaume Cottenceau
+
+ * perl-install/: install_steps_interactive.pm, lang.pm: don't allow
+ going back from accept_licenser to select_language, hence allow
+ removing langs images before downloading huge CJK fonts
+
+2003-02-13 20:54 Guillaume Cottenceau
+
+ * perl-install/pixmaps/langs/: lang-af.png, lang-am.png,
+ lang-ar.png, lang-az.png, lang-be.png, lang-bg.png, lang-br.png,
+ lang-bs.png, lang-ca.png, lang-cs.png, lang-cy.png, lang-da.png,
+ lang-de.png, lang-el.png, lang-en_GB.png, lang-en_US.png,
+ lang-eo.png, lang-es.png, lang-et.png, lang-eu.png, lang-fa.png,
+ lang-fi.png, lang-fo.png, lang-fr.png, lang-ga.png, lang-gd.png,
+ lang-gl.png, lang-gv.png, lang-he.png, lang-hr.png, lang-hu.png,
+ lang-hy.png, lang-ia.png, lang-id.png, lang-is.png, lang-it.png,
+ lang-iu.png, lang-ja.png, lang-ka.png, lang-ko.png, lang-kw.png,
+ lang-lt.png, lang-lv.png, lang-mi.png, lang-mk.png, lang-ms.png,
+ lang-mt.png, lang-nb.png, lang-nl.png, lang-nn.png, lang-oc.png,
+ lang-pl.png, lang-pt.png, lang-pt_BR.png, lang-ro.png,
+ lang-ru.png, lang-sk.png, lang-sl.png, lang-sp.png, lang-sq.png,
+ lang-sr.png, lang-sv.png, lang-ta.png, lang-tg.png, lang-th.png,
+ lang-tr.png, lang-tt.png, lang-uk.png, lang-ur.png, lang-uz.png,
+ lang-vi.png, lang-wa.png, lang-yi.png, lang-zh_CN.png,
+ lang-zh_TW.png: invert video the images since the new theme will
+ be printing black text on white background
+
+2003-02-13 20:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: - fix calling
+ configureTimezone - have country before timezone (gc wants it
+ that way...)
+
+2003-02-13 20:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/: interactive.pm, interactive/gtk.pm: fix
+ ask_warn(), really dont make it pop
+
+2003-02-13 20:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: fix typo
+
+2003-02-13 20:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/: help.pm, share/po/help-de.pot,
+ share/po/help-es.pot, share/po/help-fr.pot, share/po/help-it.pot:
+ minor changes (update from xml)
+
+2003-02-13 20:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Makefile, share/list: use PerlIO-gzip
+
+2003-02-13 20:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/c/Makefile: at last fix the culprit for the dreaded
+ "relocation error" (esp. occured when the glibc changed)
+
+2003-02-13 18:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, install_interactive.pm, Xconfig/card.pm,
+ Xconfig/main.pm, Xconfig/monitor.pm,
+ Xconfig/resolution_and_depth.pm, Xconfig/various.pm: fix and some
+ more Help
+
+2003-02-13 18:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/: help.pm, share/po/help_xml2pm.pl: no need for
+ "empty" id anymore
+
+2003-02-13 18:32 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: updated
+
+2003-02-13 18:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ar.po, et.po, fi.po, nl.po: updated
+ Arabic, Dutch, Estonian and Finnish files
+
+2003-02-13 18:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/help.pm: fix typo (from xml)
+
+2003-02-13 18:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/: help.pm, share/po/help-de.pot,
+ share/po/help-es.pot, share/po/help-fr.pot, share/po/help-it.pot:
+ new help from xml
+
+2003-02-13 18:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/help_xml2pm.pl: - adapt to new
+ drakx-chapter.xml (esp. handle <variablelist> tags) - replace __
+ with N_ - add "our" for "%steps"
+
+2003-02-13 15:47 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/no.po: updated Norwegian file
+
+2003-02-13 15:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm: don't force pop_it on ask_warn's
+
+2003-02-13 15:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, install_interactive.pm, install_steps.pm,
+ install_steps_gtk.pm, install_steps_interactive.pm,
+ interactive.pm, services.pm, ugtk2.pm, Xconfig/various.pm,
+ diskdrake/hd_gtk.pm, diskdrake/interactive.pm,
+ interactive/gtk.pm, modules/interactive.pm, network/adsl.pm,
+ network/ethernet.pm, network/isdn.pm, network/modem.pm,
+ network/netconnect.pm, network/network.pm, network/tools.pm,
+ printer/printerdrake.pm, security/level.pm: - set_help is
+ deprecated - it is replaced by interactive_help_id on each ask_*
+ - many set_help do not have any correspondance in help.pm
+ (drakxid-*), those are commented for now
+
+2003-02-13 15:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-0.29mdk
+
+2003-02-13 15:10 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/mouse.pm: Mouse button emulation. Clarify L-Command,
+ add Enter. (Ben Reser)
+
+2003-02-13 14:55 Guillaume Cottenceau
+
+ * perl-install/lang.pm: gc sux: install_any is not available in
+ drakxtools
+
+2003-02-13 13:50 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ar.po: updated Arabic file
+
+2003-02-13 13:31 Guillaume Cottenceau
+
+ * perl-install/install_any.pm: die if getAndSaveFile failed, so
+ that it will be easier to debug if we have this problem..
+
+2003-02-13 13:02 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm: add 8139cp (cf Frederik Himpe post on
+ cooker)
+
+2003-02-13 13:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps_gtk.pm, harddrake/sound.pm,
+ interactive/gtk.pm: - {interactive_help} is a function returning
+ text, it doesn't need to do the help window - drop global
+ interactive_help during install. Will be done per ->ask_*
+
+2003-02-13 12:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm: add ask_yesorno_, ask_okcancel_,
+ ask_warn_, ask_from_listf_raw (to allow help)
+
+2003-02-13 12:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/: commands, standalone/drakboot: make perl_checker
+ happy
+
+2003-02-13 12:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakupdate_fstab: help perl_checker
+
+2003-02-13 12:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/fileshareset: cleanup
+
+2003-02-13 12:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/: adsl.pm, ethernet.pm, isdn.pm, modem.pm,
+ tools.pm: add CVS $Id
+
+2003-02-13 12:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add cvs $Id
+
+2003-02-13 12:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: don't use $_total, use
+ $total_ instead
+
+2003-02-13 11:51 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: updated Spanish translation
+
+2003-02-13 11:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/scanner.pm: no comment
+
+2003-02-13 11:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/services.pm: (start_service_on_boot) prevent copying
+ this style
+
+2003-02-13 11:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/services.pm: (do_not_start_service_on_boot) :
+ simplify it
+
+2003-02-13 11:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/scanner.pm: fix drakxtools build
+
+2003-02-13 10:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-0.28mdk
+
+2003-02-13 03:47 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/scannerdrake: Fixed typo.
+
+2003-02-13 03:16 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: handle_configs.pm, scanner.pm,
+ standalone/scannerdrake: Improved handling and structure of
+ scanner database - Scanners with multiple ports are supported now
+ - Fully automatic build of the scanner database, including lines
+ for configuration files - Fixed "SnapScan" <-> "snapscan" bug -
+ Some HP scanners had no manufacturer field. Fixed.
+
+2003-02-13 00:44 Guillaume Cottenceau
+
+ * perl-install/lang.pm: clean
+
+2003-02-13 00:43 Guillaume Cottenceau
+
+ * perl-install/lang.pm, perl-install/share/list,
+ tools/make_mdkinst_stage2: add missing pango rendering modules in
+ ramdisk, do download additional fonts if needed (fixes problems
+ with CJK languages and namely #1098)
+
+2003-02-13 00:40 Guillaume Cottenceau
+
+ * mdk-stage1/stdio-frontend.c: compile with -W
+
+2003-02-12 23:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/services.pm: cleanup starts_on_boot()
+
+2003-02-12 21:03 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/list, rescue/list: rpm files are not set to
+ live in /usr/lib/rpm, always.
+
+2003-02-12 19:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: pt_BR.po, ro.po, ru.po, sk.po, sl.po,
+ sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po,
+ uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: Updated pot file
+
+2003-02-12 19:58 Guillaume Cottenceau
+
+ * perl-install/share/fonts.tar.bz2: CJK fonts can now be pcf.gz,
+ hopefully since they will be too large for ramdisks :(
+
+2003-02-12 19:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po: Updated pot file
+
+2003-02-12 19:42 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: scanner.pm, services.pm, standalone/scannerdrake:
+ Scannerdrake vastly improved - Use auto-detection methods of SANE
+ - Do not ask the user to configure scanners which are already
+ configured - Handle systems with more than one scanner correctly
+ - Added ports of newer scanners (libusb, parallel, ...) to the
+ port selector in manual setup - Main dialog showing all
+ configured scanners - Full support for scanner sharing via SANE
+ (server/client) - Support for USB scanner access via libusb
+
+2003-02-12 16:32 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: - ensure focus should not be needed
+ anymore - support XSetInputFocus hackery
+
+2003-02-12 16:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakpxe: fix just stupid fpons sucks
+
+2003-02-12 16:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_steps.pm,
+ install_steps_interactive.pm: rework summary() (esp. to allow a
+ gtk frontend)
+
+2003-02-12 15:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: use {interactive_help}
+
+2003-02-12 15:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/: interactive.pm, interactive/gtk.pm: allow
+ {interactive_help} per dialog boxes instead of global
+
+2003-02-12 15:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: don't set pop_it when the window is hidden
+
+2003-02-12 15:41 Fançois Pons
+
+ * perl-install/standalone/drakpxe: updated to find an interface
+ even when no profile are available.
+
+2003-02-12 15:40 Fançois Pons
+
+ * perl-install/pkgs.pm: prefer apache for drakpxe to find the right
+ package.
+
+2003-02-12 13:09 Fançois Pons
+
+ * perl-install/install_steps.pm: fix fpons sucks (at least one
+ time).
+
+2003-02-12 12:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, commands.pm, install_steps.pm,
+ install_steps_auto_install.pm, install_steps_gtk.pm,
+ install_steps_interactive.pm, install_steps_newt.pm,
+ install_steps_stdio.pm, interactive.pm, modules.pm,
+ partition_table.pm, raid.pm, run_program.pm, ugtk2.pm,
+ diskdrake/interactive.pm, interactive/gtk.pm,
+ network/netconnect.pm: perl_checker compliance ("ref" now need
+ parentheses in many case)
+
+2003-02-12 12:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: do not enfore default settings
+
+2003-02-12 10:38 Fançois Pons
+
+ * perl-install/install_steps.pm: configure profile in order to
+ avoid standalone networking tools to complain about unconfigured
+ device.
+
+2003-02-12 10:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-0.27mdk
+
+2003-02-12 09:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: perl_checker fixes
+
+2003-02-12 09:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - clean up through ugtk2 -
+ enforce strict mode - give meaningful names to widget variables -
+ fix embedding in mcc at last, aka going into expert mode does not
+ fsck up the gui - display all configuration buttons (both
+ internet and lan) the same way - fix doble variable declaration
+ to MDK::Common::Globals
+
+2003-02-12 09:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: - fix non obvious "not a
+ CODE reference" errors when embedded (fortunately, gc will fix
+ perl-GTK2 if this syntax is still authorized) - (configure_lan) :
+ fix gtk+-2 port and remove old commented out debugging code
+
+2003-02-11 22:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/raw.pm: add "OS/2 boot manager" (see
+ bug #1338)
+
+2003-02-11 19:13 Guillaume Cottenceau
+
+ * perl-install/install_steps_gtk.pm: format-a-la-tex the message
+ telling that the system is low on resources
+
+2003-02-11 18:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/lsnetdrake: - ensure log::l's don't
+ appear on stderr - catch authentification errors
+
+2003-02-11 18:35 Guillaume Cottenceau
+
+ * perl-install/Makefile.drakxtools: have localedrake in /usr/bin
+ rather than /usr/sbin (#1407)
+
+2003-02-11 18:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: don't set AGPMode (see bug #707)
+
+2003-02-11 17:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: smoother gui
+
+2003-02-11 17:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: - further ugtk2 cleanups -
+ (row_setting_dialog) : fix implosion
+
+2003-02-11 17:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: phase 1 of drakperm clean up
+ through ugtk2
+
+2003-02-11 16:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: - gtk2 port of dialogs (poulpy)
+ - one callback cleanup (me): o enforce strict mode (aka kill
+ jonathanries) and introuce a permission data structure. o
+ no need to keep global references on widget we pack through
+ symbolic references; this is only namespace pollution
+
+2003-02-11 15:44 Guillaume Cottenceau
+
+ * perl-install/lang.pm: no need to duplicate LC_MONETARY
+
+2003-02-11 15:16 Guillaume Cottenceau
+
+ * perl-install/lang.pm: thx perl checko
+
+2003-02-11 15:14 Guillaume Cottenceau
+
+ * perl-install/install_steps.pm: try to fix the $o->{lang} compat
+
+2003-02-11 14:53 Guillaume Cottenceau
+
+ * perl-install/: install_steps.pm, lang.pm: have compatibility with
+ old $o->{lang} for not breaking existing auto install files
+
+2003-02-11 14:45 Guillaume Cottenceau
+
+ * perl-install/install_any.pm: reflect lang->locale changes in
+ saving auto_inst.cfg file
+
+2003-02-11 14:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, partition_table.pm: handle 0x7
+ partition table id specially since it can be both hpfs or ntfs.
+ so adding 0x107 being really ntfs. hopefully this change won't
+ break too much things (but things were already broken, since it
+ assigned a mount point with type ntfs to some hpfs partitions)
+ (fixes bug #1455)
+
+2003-02-11 14:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/keyboard.pm: for GRP_TOGGLE'd keyboard layouts, have
+ "us,XX" instead of simply "XX" (to have previous XFree's
+ behaviour)
+
+2003-02-11 14:04 Pixel <pixel at mandriva.com>
+
+ * kernel/: modules.pl, update_kernel: - better error message for
+ bad modules in modules.pl - handle the exit code of modules.pl
+ (so that .mar files not generated is more understandable)
+
+2003-02-11 13:26 Fançois Pons
+
+ * kernel/check_mar.pl: fixed sanity check on presence of marfile.
+
+2003-02-11 12:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/diskdrake.rc: - have the "Windows" button blue
+ - set xthickness = 1 and ythickness = 1 for buttons (so that
+ non-colored buttons have the same feelings with the upcoming new
+ theme)
+
+2003-02-11 12:05 Guillaume Cottenceau
+
+ * perl-install/share/gen_locales.pl: update to changes in lang.pm
+
+2003-02-11 10:33 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/Makefile.drakxtools: don't take lang subdir in
+ pixmap
+
+2003-02-11 09:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: no frame in standalone mode
+
+2003-02-11 09:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootlook.pm: stop: - copying stude && useless trace
+ around - reinventing the wheel: kill parse_etc_passwd() and use
+ list_users() instead
+
+2003-02-10 23:39 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/network/network.pm: corrected option handling and
+ added hotplug checkbox
+
+2003-02-10 23:37 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/network/ethernet.pm: added a text to describe the
+ Zeroconf host name field
+
+2003-02-10 23:37 Guillaume Cottenceau
+
+ * tools/make_mdkinst_stage2: count space needed for the filesystem
+ so that we don't end up with 3 mbytes of free space if /tmp was
+ ext3
+
+2003-02-10 23:36 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/network/netconnect.pm: reworded network restart
+ string
+
+2003-02-10 23:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: in lilo.conf, "unsafe" is
+ incompatible with "table=..." (fixes bug #1382)
+
+2003-02-10 23:01 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm, perl-install/modules.pm: ck hptraid, but
+ discard the insmod error for it
+
+2003-02-10 22:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: small cleanup
+
+2003-02-10 22:25 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm: don't list hptraid since it's too buggy
+ (eg: bug 1085)
+
+2003-02-10 15:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: cs4239 is managed by both
+ "ad1848" and "snd-cs4236"
+
+2003-02-10 14:59 Guillaume Cottenceau
+
+ * perl-install/install_steps_interactive.pm: perl checko
+
+2003-02-10 14:56 Guillaume Cottenceau
+
+ * perl-install/lang.pm: perl checko files
+
+2003-02-10 14:53 Guillaume Cottenceau
+
+ * perl-install/interactive/gtk.pm: two fixes thx to perl_checker,
+ one among them being very important :)
+
+2003-02-10 14:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fs.pm, install_steps_interactive.pm,
+ diskdrake/interactive.pm: - more precise message when formatting
+ / fsck'ing / mounting partitions - hide passwords (for smb)
+
+2003-02-10 14:44 Guillaume Cottenceau
+
+ * perl-install/interactive/gtk.pm: when displaying images in
+ treeview, unref pixbufs right after their use so that we try to
+ save some memory
+
+2003-02-10 14:32 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakhelp: - s/link/path/
+
+2003-02-10 12:11 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakhelp: - http connections handled.
+
+2003-02-10 12:09 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakbug: - help link can be non local
+ (http, www connnections).
+
+2003-02-10 09:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: - sort functions by name in export tags -
+ (gtkset_name) introduce it for mcc and reuse it in
+ create_box_with_title()
+
+2003-02-10 09:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: ethernet.pm, netconnect.pm, network.pm:
+ perl_checker fixes
+
+2003-02-10 01:37 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ar.po: updated Arabic file
+
+2003-02-09 22:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_gtk.pm: do translate "System installation"
+ and "System configuration" in steps window
+
+2003-02-09 15:50 Stefan Siegel <siegel at linux-mandrake.com>
+
+ * perl-install/share/po/de.po: try to catch up for 9.1
+
+2003-02-09 15:08 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: tg.po, tr.po, vi.po: Updated Turkish,
+ Tajiki and Vietnamese files
+
+2003-02-09 02:32 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/network/netconnect.pm: corrected expert case to
+ restart network and if the user choose not to restart the
+ network, end the dialog normally.
+
+2003-02-09 02:20 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/network/network.pm: check that zeroconf hostname
+ doesn"t contain a . read zeroconf hostname from tmdns.conf
+
+2003-02-09 02:19 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/network/ethernet.pm: check that zeroconf hostname
+ doesn"t contain a .
+
+2003-02-08 23:09 Guillaume Cottenceau
+
+ * perl-install/: Makefile, any.pm, install2.pm, install_any.pm,
+ install_gtk.pm, install_steps.pm, install_steps_auto_install.pm,
+ install_steps_interactive.pm, install_steps_newt.pm,
+ install_steps_stdio.pm, keyboard.pm, lang.pm, timezone.pm,
+ pixmaps/langs/lang-af.png, pixmaps/langs/lang-am.png,
+ pixmaps/langs/lang-ar.png, pixmaps/langs/lang-az.png,
+ pixmaps/langs/lang-be.png, pixmaps/langs/lang-bg.png,
+ pixmaps/langs/lang-br.png, pixmaps/langs/lang-bs.png,
+ pixmaps/langs/lang-ca.png, pixmaps/langs/lang-cs.png,
+ pixmaps/langs/lang-cy.png, pixmaps/langs/lang-da.png,
+ pixmaps/langs/lang-de.png, pixmaps/langs/lang-el.png,
+ pixmaps/langs/lang-en_GB.png, pixmaps/langs/lang-en_US.png,
+ pixmaps/langs/lang-eo.png, pixmaps/langs/lang-es.png,
+ pixmaps/langs/lang-et.png, pixmaps/langs/lang-eu.png,
+ pixmaps/langs/lang-fa.png, pixmaps/langs/lang-fi.png,
+ pixmaps/langs/lang-fo.png, pixmaps/langs/lang-fr.png,
+ pixmaps/langs/lang-ga.png, pixmaps/langs/lang-gd.png,
+ pixmaps/langs/lang-gl.png, pixmaps/langs/lang-gv.png,
+ pixmaps/langs/lang-he.png, pixmaps/langs/lang-hr.png,
+ pixmaps/langs/lang-hu.png, pixmaps/langs/lang-hy.png,
+ pixmaps/langs/lang-ia.png, pixmaps/langs/lang-id.png,
+ pixmaps/langs/lang-is.png, pixmaps/langs/lang-it.png,
+ pixmaps/langs/lang-iu.png, pixmaps/langs/lang-ja.png,
+ pixmaps/langs/lang-ka.png, pixmaps/langs/lang-ko.png,
+ pixmaps/langs/lang-kw.png, pixmaps/langs/lang-lt.png,
+ pixmaps/langs/lang-lv.png, pixmaps/langs/lang-mi.png,
+ pixmaps/langs/lang-mk.png, pixmaps/langs/lang-ms.png,
+ pixmaps/langs/lang-mt.png, pixmaps/langs/lang-nb.png,
+ pixmaps/langs/lang-nl.png, pixmaps/langs/lang-nn.png,
+ pixmaps/langs/lang-oc.png, pixmaps/langs/lang-pl.png,
+ pixmaps/langs/lang-pt.png, pixmaps/langs/lang-pt_BR.png,
+ pixmaps/langs/lang-ro.png, pixmaps/langs/lang-ru.png,
+ pixmaps/langs/lang-sk.png, pixmaps/langs/lang-sl.png,
+ pixmaps/langs/lang-sp.png, pixmaps/langs/lang-sq.png,
+ pixmaps/langs/lang-sr.png, pixmaps/langs/lang-sv.png,
+ pixmaps/langs/lang-ta.png, pixmaps/langs/lang-tg.png,
+ pixmaps/langs/lang-th.png, pixmaps/langs/lang-tr.png,
+ pixmaps/langs/lang-tt.png, pixmaps/langs/lang-uk.png,
+ pixmaps/langs/lang-ur.png, pixmaps/langs/lang-uz.png,
+ pixmaps/langs/lang-vi.png, pixmaps/langs/lang-wa.png,
+ pixmaps/langs/lang-yi.png, pixmaps/langs/lang-zh_CN.png,
+ pixmaps/langs/lang-zh_TW.png, standalone/drakhelp,
+ standalone/drakxtv, standalone/localedrake: language/country
+ selection change: - first install step is selection of your
+ language, in your language; it uses images for that -
+ language->country is probed, the selection of the country is
+ possible if there was a problem, in the Summary step - in the
+ $o big structure, we now use $o->{locale} which contains three
+ keys: lang, country and utf8 - lang.pm has been cleaned and
+ rewritten a bit - keyboard probing now done only on language
+ (because this step is at the beginning of the install) -
+ timezone probing done on country, if use changes country before
+ timezone in the Summary, re-probe timezone accordingly
+
+2003-02-08 22:53 Guillaume Cottenceau
+
+ * rescue/tree/etc/issue: remove "cooker" from the issue of the
+ rescue since we're aproaching the release candidates
+
+2003-02-08 22:52 Guillaume Cottenceau
+
+ * perl-install/install_messages.pm: change address for errata to
+ reflect the future 9.1
+
+2003-02-08 21:17 Guillaume Cottenceau
+
+ * mdk-stage1/init.c: when probing that we're in testing mode, print
+ out the pid (since the probe is based on the pid and some recent
+ machines seem to interact badly with that when in bad acpi mood)
+
+2003-02-08 21:13 Guillaume Cottenceau
+
+ * perl-install/install_steps_gtk.pm: say we're low on resources if
+ we have less than 70 Mb of RAM (was 60 Mb)
+
+2003-02-08 21:01 Guillaume Cottenceau
+
+ * tools/make_mdkinst_stage2: the shitload of images for selecting
+ languages in their languages needs a few additional inodes..
+
+2003-02-08 20:54 Guillaume Cottenceau
+
+ * perl-install/: interactive.pm, interactive/gtk.pm: add option
+ advanced_state: if set to 1, force the "Advanced" part of the
+ dialog to be opened initially
+
+2003-02-08 20:52 Guillaume Cottenceau
+
+ * perl-install/: interactive.pm, interactive/gtk.pm: add
+ possibility to display images in tree-lists and bool-lists
+
+2003-02-08 15:42 Guillaume Cottenceau
+
+ * mdk-stage1/network.c: indent
+
+2003-02-08 15:41 Guillaume Cottenceau
+
+ * mdk-stage1/config-stage1.h: ramdisk is enlarging, move the limit
+ from 52 Mb to 68 Mb (it won't work properly in gtk on a box with
+ 64 Mb of memory..)
+
+2003-02-08 15:39 Guillaume Cottenceau
+
+ * mdk-stage1/Makefile: set version to 9.1
+
+2003-02-07 22:57 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cy.po, sv.po: Updated Welsh and Swedish
+ files
+
+2003-02-07 22:37 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ar.po: updated Arabic file
+
+2003-02-07 21:12 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/drakxtools.spec: new version
+
+2003-02-07 21:06 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/network.pm: - DHCP & Zeroconf fixes for
+ installation - fix '217.0.0.1 localhost' not written in
+ /etc/hosts when using DHCP
+
+2003-02-07 19:39 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: updated Spanish translations
+
+2003-02-07 19:31 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakfont: - full Gtk2 - cleanup code
+ (still much to do...)
+
+2003-02-07 17:45 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated po file
+
+2003-02-07 14:53 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: updated
+
+2003-02-07 14:20 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-02-07 13:34 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Fixed English typo
+
+2003-02-07 13:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/drakedm: fixed English typo
+
+2003-02-07 10:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: fix english typo (bug #1350)
+
+2003-02-06 21:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/hd_gtk.pm: add "Help" button
+
+2003-02-06 21:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/newt.pm: fix sizing in the scrolled
+ window in 80x25
+
+2003-02-06 19:28 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/drakxtools.spec: new version
+
+2003-02-06 18:31 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/network.pm: avoid to mess up tmdns.conf file
+
+2003-02-06 18:27 Fabian Mandelbaum <fabman at mandriva.com>
+
+ * perl-install/share/po/es.po: updated translation
+
+2003-02-06 18:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: have the focus on the help
+ "Ok" button
+
+2003-02-06 18:03 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm: Corrected call for "tryWrite"
+ function.
+
+2003-02-06 17:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: sanitize
+
+2003-02-06 17:51 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: de.po, uz.po: Added start of Uzbek file;
+ updated German file
+
+2003-02-06 17:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile.config: add drakedm
+
+2003-02-06 16:36 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/network.pm: fix dhcp package installation
+ fix zeroconf suckiness
+
+2003-02-06 16:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfloppy: fix floppy create :-)
+
+2003-02-06 16:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: perl_checker fix (yeah, i was
+ faster than perl_checko!)
+
+2003-02-06 15:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: the result of David
+ Sansome|Laurent Montel|Frederic Lepied|Davod Beidebs|Thierry
+ Vignaud collision
+
+2003-02-06 15:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: missing aewm-drakx causes pb
+ when testing (perl going havoc?)
+
+2003-02-06 15:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_gtk.pm: remove create_big_help
+
+2003-02-06 15:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/: interactive/gtk.pm, install_steps_gtk.pm: add
+ "Help" button
+
+2003-02-06 14:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: drop "F1" for help (since a "Help" button
+ is now available)
+
+2003-02-06 14:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_okcancel): allow buttons on the
+ left (for the "Help" button)
+
+2003-02-06 13:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: (ask_users): focus the "name" field, and
+ change the buttons name & place
+
+2003-02-06 12:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: (setRootPassword):
+ have the focus on the password field
+
+2003-02-06 12:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/hd_gtk.pm: (filesystems_button_box): in
+ the caption write "Windows" instead of "FAT" (since NTFS uses the
+ same color)
+
+2003-02-06 12:15 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakhelp: - change package name to
+ install
+
+2003-02-06 10:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/scanner.pm: perl_checker fixes
+
+2003-02-06 10:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: perl_checker fix
+
+2003-02-06 00:19 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: updated...wrrr
+
+2003-02-05 20:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-0.24mdk
+
+2003-02-05 19:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/harddrake2: small i18n improvement
+
+2003-02-05 19:55 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakfont: almost full Gtk2 :p
+
+2003-02-05 18:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile: - building srpm only does not imply having
+ the dependancies installed - clean more files too
+
+2003-02-05 18:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: (ask_browse_tree_info): switch buttons
+
+2003-02-05 18:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: handle "Previous" on
+ choosePackagesTree
+
+2003-02-05 18:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-0.23mdk
+
+2003-02-05 18:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: have "<- Previous" button in
+ choosePackagesTree
+
+2003-02-05 18:17 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: et.po, vi.po: updated Estonian and
+ Vietnamese files
+
+2003-02-05 18:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: remove debug code :-(
+
+2003-02-05 16:08 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/: ethernet.pm, network.pm: fixed my own
+ sucking
+
+2003-02-05 15:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ar.po, da.po, eo.po, he.po, tg.po: more
+ translations corrections
+
+2003-02-05 15:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: fix embedding
+
+2003-02-05 15:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: fix typo
+
+2003-02-05 15:03 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: af.po, az.po, bg.po, bs.po, ca.po, cs.po,
+ de.po, el.po, eo.po, eu.po, fi.po, ga.po, gl.po, he.po, hr.po,
+ hu.po, id.po, it.po, ja.po, ko.po, lt.po, lv.po, mt.po, no.po,
+ pt_BR.po, ro.po, sk.po, sl.po, sq.po, ta.po, tg.po, th.po, uk.po,
+ vi.po, zh_TW.po: fixed some incoherent translations that made
+ harddrake2 crash
+
+2003-02-05 14:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: warn the user when
+ leaving the summary with X non configured
+
+2003-02-05 14:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, pkgs.pm, interactive/gtk.pm: replace
+ $l[$#l] with $l[-1]
+
+2003-02-05 14:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: skip handle_configs (since it's not
+ perl_checker compliant, and don't want to be)
+
+2003-02-05 14:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/printer/main.pm: fix perl_checker error
+
+2003-02-05 14:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: don't force wait_messages pop
+
+2003-02-05 14:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: - add a beep in case of brltty error
+ message - probe mouse before running brltty
+
+2003-02-05 14:00 Fançois Pons
+
+ * perl-install/install_steps_gtk.pm: fixed again.
+
+2003-02-05 13:46 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ar.po: updated Arabic file
+
+2003-02-05 13:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/es.po: updated Spanish file
+
+2003-02-05 13:33 Fançois Pons
+
+ * perl-install/install_steps_gtk.pm: fixed bug 1287.
+
+2003-02-05 12:56 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-02-05 12:14 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: add mdkkdm in KDE 5
+
+2003-02-05 11:29 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: added more security related packages
+
+2003-02-05 10:58 Fançois Pons
+
+ * isolinux-graphic.bmp: newer picture with 128 color made.
+
+2003-02-05 10:58 Fançois Pons
+
+ * make_boot_img: updated isolinux picture.
+
+2003-02-05 10:38 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: updated
+
+2003-02-05 10:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: typo fix
+
+2003-02-05 09:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * docs/README.devel: update to new partition_table scheme
+
+2003-02-05 09:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/msec.pm: new data structure enables to do
+ further cleanups and to spot old bugs (aka security::msec is
+ readable at last):
+
+ - put all file names & separators for regexps in the object -
+ (load_defaults, load_values) thus we can use indirect call to get
+ right values - (load_values) fix "returning 'undef' option" (this
+ trival bug did not have any side effect but fixing it is
+ cleaner - kill debugging statements - generalize some comments -
+ (reload) introduce this method so that we can later reload
+ default values when the user change the security level
+
+ the only bug we left is that on each saving, we add a empty line
+ to config files...
+
+2003-02-05 00:54 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/handle_configs.pm: Put quoting of search terms into
+ a function, small fixes.
+
+2003-02-04 23:44 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cy.po: put back the address of the
+ translator
+
+2003-02-04 23:38 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: scanner.pm, standalone/scannerdrake: - Fixed
+ Titi's newly introduced bugs. Now scannerdrake works at least as
+ under Mandrake 9.0. - Fixed bug of automatic configuration also
+ being done if one opts for manual configuration of an
+ auto-detected scanner. - Made scannerdrake editing the SANE
+ config files instead of replacing them by the config lines from
+ the DB (or emptying them when no config lines are given in the
+ DB).
+
+2003-02-04 22:24 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cy.po, da.po, et.po: updated Welsh,
+ Danish and Estonian files
+
+2003-02-04 21:25 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: Removed debug helper line.
+
+2003-02-04 21:24 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: Fixed auto-detection of a
+ configured (but not started) network.
+
+2003-02-04 21:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: fix typo
+
+2003-02-04 20:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: add brltty
+
+2003-02-04 20:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Makefile, install2.pm, share/list: add brltty help
+ file
+
+2003-02-04 20:05 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: handle_configs.pm, printer/main.pm,
+ printer/printerdrake.pm: - "Out-sourced" functions for config
+ file handling into handle_configs.pm, it is used by both
+ printerdrake and scannerdrake. - Improvements and fixes on CUPS
+ daemon configuration by printerdrake.
+
+2003-02-04 17:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-0.22mdk
+
+2003-02-04 15:59 Fançois Pons
+
+ * perl-install/network/adsl.pm: fixed small typo.
+
+2003-02-04 15:35 Fançois Pons
+
+ * perl-install/network/adsl.pm: add support for adiusbadsl 1.0.2
+ (using adictrl -i to find interface and using pppoa).
+
+2003-02-04 15:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm, perl-install/install_any.pm,
+ perl-install/install_steps.pm, perl-install/share/list,
+ tools/make_mdkinst_stage2: brltty support
+
+2003-02-04 15:24 Pixel <pixel at mandriva.com>
+
+ * kernel/modules.pl: - have 3w-xxxx back in network.img - sort isa
+ and non-isa scsi cards
+
+2003-02-04 14:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: wildcard * in share/list allowed to match
+ multiple files, but not multiple directories
+
+2003-02-04 14:13 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: uk.po, vi.po, wa.po, zh_CN.po, zh_TW.po:
+ updated pot file
+
+2003-02-04 14:10 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po:
+ updated pot file
+
+2003-02-04 13:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: move packages from 3 to 4 (fix bug
+ #1265)
+
+2003-02-04 12:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: don't ->set_modal during install
+
+2003-02-04 11:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/devices.pm: add "vcsa" (for brltty)
+
+2003-02-04 10:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/msec.pm: perl_checker fix
+
+2003-02-04 09:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: adapt to new
+ mandrake_doc-drakxtools-* packages
+
+2003-02-04 08:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: security/msec.pm, standalone/draksec: - fix
+ get_check_default() and get_function_default() description - fix
+ "check states were not saved if their value did not change (thus
+ reverting it to default on disk)" - fix emebedding (no
+ transcience when embedded) - fix "value get chop()-ed until it
+ disapear and is reset to default" - log which security level is
+ set and not only the switch
+
+ killing latest remanent parts of christian "yeah baby, i'm piggy"
+ work:
+
+ - functions and checks listing : o rename get_functions() as
+ list_functions() and get_default_checks() as list_checks();
+ this is both more homogenous and enable one to separate them
+ from the get_(check|function)_(value|default) function group
+ o regroup them o over simplify list_functions(): leave
+ functions listing to msec (aka /usr/share/msec/level.<LEVEL>,
+ assuming share/msec.py is always up to date, just don't care
+ reparsing python code (this is plain stupid); if we cannot
+ rely on msec, on who could we :-) ? o this allow to simplify
+ msec gui so that we do not exclude stuff already excluded -
+ remove config_check(), config_funtion(): replace them by: o
+ set_check() and set_function() to store new values in data
+ structure o apply_checks() and apply_functions() to save these
+ new values, thus writing config files once and not twice the
+ functions & checks count
+
+2003-02-04 08:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/theme-editor.pl: update theme editor to
+ current libDrakX api
+
+2003-02-04 08:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: now, we always have a help entry
+ and a default value but when fredl rename a check and forgot to
+ remove it from /var/lib/msec/security.conf like CHECK_SUID_GROUP
+ => CHECK_SGID, but hopefully, he'll fix msec
+
+2003-02-04 01:26 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Use system configs when
+ wrapped in mcc.
+
+2003-02-04 00:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/smbnfs_gtk.pm: cleanup
+
+2003-02-04 00:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/smbnfs_gtk.pm: port to Gtk2
+
+2003-02-04 00:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/diskdrake: don't "use
+ diskdrake::interactive", only require it when needed
+
+2003-02-04 00:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/icons/: smbnfs_default.png,
+ smbnfs_has_mntpoint.png, smbnfs_mounted.png: have the background
+ fully transparent
+
+2003-02-04 00:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: fix test mode install when
+ Xnest is not there
+
+2003-02-03 23:54 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ar.po: updated Arabic file
+
+2003-02-03 21:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: make perl_checker happy
+
+2003-02-03 19:56 Florin Grad <florin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix some drakgw behaviour
+
+2003-02-03 19:42 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: Not too many entries in beta
+ release?
+
+2003-02-03 18:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, c/stuff.xs.pl: do not eject cdrom
+ when already removed at the end of install (bug #1235)
+
+2003-02-03 18:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: remove yelp-pregenerate
+
+2003-02-03 18:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/keyboarddrake: make perl_checker happy
+
+2003-02-03 18:22 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-02-03 18:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/msec.pm: - consolidate file names - remove
+ unused variables - rename get_(default|value as
+ load_(default|value)s and alter them so that config file are
+ read only one time instead of one per option; data is stocked
+ in package variable - thus get_default_checks() is quite a lot
+ faster - alter get_(check|function)_(value|default) to use new
+ data structure - fix check default reading - group default values
+ reading and current values reading
+
+ what's left: do the same thing for writing tomorow
+
+2003-02-03 17:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/keyboarddrake: translate keyboard names
+
+2003-02-03 17:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-0.21mdk (to be continued by
+ pouly)
+
+2003-02-03 16:43 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/network.pm: dhcp/zeroconf stuff
+
+2003-02-03 16:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * docs/porting-ugtk: new obsolete func (thanks drakcronat)
+
+2003-02-03 16:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: security/help.pm, standalone/draksec: - msec was
+ altered to produce help suitable for formatAlaTeX() - use
+ formatAlaTeX() to have nicer tooltips
+
+2003-02-03 16:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: typo fix
+
+2003-02-03 15:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/help.pm: auto-generated from
+ msec/share/draksec_help.py libmsec and moved from msec to here so
+ that draksec help'll get translated
+
+ all changes must be done in soft/msec/share/libmsec.py !!!
+
+2003-02-03 14:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/newt.pm: fix typo (for treelist)
+
+2003-02-03 14:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: prefer mdkkdm over kdebase-kdm
+
+2003-02-03 13:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/test.pm: ensure the X test strings are
+ translated
+
+2003-02-03 13:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/Makefile: remove drakpxe exception since
+ fpons has at lease fixed "fpons sucks" in drakpxe
+
+2003-02-03 13:32 Fançois Pons
+
+ * perl-install/bootloader.pm: integrated chmouel fixes.
+
+2003-02-03 12:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules/parameters.pm: use run_program::get_stdout
+
+2003-02-03 10:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: let simplify
+
+2003-02-03 09:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: sanitize gui (aka make it look
+ nicer): - put the same help label on top of each msec options
+ notebook pages and consolidate it - use gtkpack_ instead of
+ gtkpack so that we can tell gtk+ that label must neither fill
+ nor expand, only the packtable should
+
+2003-02-03 09:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: display again the first notebook
+ page
+
+2003-02-03 09:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: if no default value, then do not
+ print one (aka for cron checks)
+
+2003-02-03 08:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: fix help system description. we
+ should really use the camille/deush help system though.
+
+2003-02-03 08:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: - perl_checker fixes - display
+ sorted options (hey pixel, note that the last diff trunk with
+ execessive () was not detected by perl_checker :-( )
+
+2003-02-03 08:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules/parameters.pm: pixelize(tm)
+
+2003-02-03 08:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/interactive_http/authorised_progs:
+ draksec is not written to use interactive, thus cannot be used by
+ http frontend
+
+2003-02-03 08:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/interactive_http/miniserv.init: sanitize
+ draxktools server service script: - no gratuitous shell forking -
+ now can be debugged through "sh -x" - use std shell service lib -
+ make it print [OK] || [FAILLED]
+
+2003-02-03 02:13 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/: ethernet.pm, network.pm: - fix zeroconf
+ support - cleanups
+
+2003-02-03 01:33 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cy.po: updated Welsh file
+
+2003-02-02 22:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table.pm: (adjust_local_extended): fix
+ resizing local extended
+
+2003-02-02 21:03 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ar.po, es.po, fi.po, sk.po: updated
+ Arabic, Spanish, Finnish and Slovak files
+
+2003-02-02 20:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/diskdrake.rc: NTFS is blue
+
+2003-02-02 20:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/: detect_devices.pm, printer/detect.pm: move
+ whatParport() to printer::detect
+
+2003-02-02 17:57 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: install_steps.pm, install_steps_interactive.pm:
+ Fixed Foomatic installation done by installer.
+
+2003-02-02 14:54 Stefan Siegel <siegel at linux-mandrake.com>
+
+ * perl-install/share/po/de.po: some updates
+
+2003-02-02 14:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_gtk.pm, ugtk2.pm: ensure the window is big
+ enough in 640x480: remove logo and steps window
+
+2003-02-02 14:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: - handle {vga16} in Xnest
+ testing mode - fix weird bug due to missing aewm-drakx in test
+ mode (??)
+
+2003-02-02 14:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/: detect_devices.pm, printer/detect.pm,
+ printer/printerdrake.pm: move whatPrinter(), whatUsbport() and
+ whatPrinterPort() out of detect_devices to printer::detect (it
+ cleans up detect_devices, and won't hurt eyes anymore :)
+
+ this change, together with .perl_checker skipping printer::*
+ marks the style disagreement between printer/* and the rest
+ of install
+
+2003-02-02 14:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: do not check printer::main,
+ printer::printerdrake and printer::detect, too many warnings
+
+2003-02-02 14:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: please perl_checker
+
+2003-02-02 14:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_interactive.pm, common.pm: please
+ perl_checker
+
+2003-02-02 13:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: - add Xnest feature when
+ testing - cleanup and re-indent
+
+2003-02-02 12:08 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ar.po, da.po: updated Arabic and Danish
+ files
+
+2003-02-02 02:55 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: updated
+
+2003-02-02 01:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix grub installed on
+ {first_hd_device} instead of {boot} (bug #1199)
+
+2003-02-01 23:02 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - Improved generation of printer
+ list entries from manufacturer-supplied PostScript PPDs.
+
+2003-02-01 17:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: et.po, sq.po, vi.po: updated Vietnamese,
+ Estonian and Albanian files
+
+2003-02-01 11:24 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/vi.po: updated Vietnamese file
+
+2003-02-01 05:34 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: data.pm, main.pm, printerdrake.pm: -
+ Completed support for pre-compiled Foomatic PPDs.
+ - Cleaning of mamufacturer names for menues and for comparing
+ auto-dtected
+ data against Foomatic centralized in one function.
+ - Fixed file name in check for installed packages.
+ - Fixed display of boolean options from native PostScript PPD
+ files in the
+ option setting dialog.
+
+2003-01-31 23:40 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po,
+ uk.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-01-31 22:14 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/drakbackup: fixed typo (drakbakup.conf ->
+ drakbackup.conf)
+
+2003-01-31 21:40 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ca.po: Fixed small error (missing "/" in
+ menu entry)
+
+2003-01-31 18:37 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/drakxtools.spec: new version
+
+2003-01-31 18:33 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/ethernet.pm: zeroconf
+
+2003-01-31 18:32 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/network.pm: more zeroconf configuration
+
+2003-01-31 17:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: fix poulpy
+
+2003-01-31 17:22 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/ugtk2.pm: avoid poping
+
+2003-01-31 17:07 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: be sure
+ $o->{netcnx}{type} is set when using easy_dhcp
+
+2003-01-31 16:55 Damien Chaumette <dchaumette at mandriva.com>
+
+ * mdk-stage1/network.c: don't save hostname if intf->boot_proto ==
+ BOOTPROTO_DHCP
+
+2003-01-31 15:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: do "yelp-pregenerate -a" only once
+
+2003-01-31 15:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_interactive.pm: fix "one big ntfs" resizing
+ (in the limit case)
+
+2003-01-31 15:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps_gtk.pm, ugtk2.pm,
+ diskdrake/hd_gtk.pm, interactive/gtk.pm: handle pop_it more
+ nicely: no need to precise pop_it when the wizard window already
+ has a window, that way, two dialog boxes won't merge in the same
+ window (which is dumb!)
+
+2003-01-31 15:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: - do not write_partitions
+ when resizing & loosing data (not needed) - handle "cancel" on
+ write_partitions
+
+2003-01-31 14:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: (detect): cleanup the value returned when
+ only a wacom is found
+
+2003-01-31 14:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_gtk.pm: (createXconf): special case for
+ "none" mouse device
+
+2003-01-31 14:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: fix typo (calling
+ resize_fat::main instead of diskdrake::resize_ntfs)
+
+2003-01-31 13:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: remove explicitly setting the
+ size of advertising window (it wasn't setting the same size as
+ the wizard mode size)
+
+2003-01-31 10:50 Warly <warly at mandriva.com>
+
+ * perl-install/share/logo-mandrake.png: beta 3 logo
+
+2003-01-31 03:54 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: - Faster switch
+ between normal and expert mode (no re-read of the print
+ queues). - Prepared for working with pre-compiled Foomatic PPDs.
+
+2003-01-31 02:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_interactive.pm: small fixes
+
+2003-01-31 01:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_gtk.pm: graphical layout change
+
+2003-01-31 01:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_interactive.pm: add ntfs resize to the
+ wizard
+
+2003-01-31 01:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: fix typo
+
+2003-01-31 01:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/: interactive.pm, resize_ntfs.pm: create
+ diskdrake::resize_ntfs to factorize code
+
+2003-01-30 23:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_interactive.pm: drop
+ $o->{lnx4win} handling
+
+2003-01-30 23:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, bootloader.pm, fsedit.pm, install_any.pm,
+ install_interactive.pm, install_steps_interactive.pm,
+ partition_table.pm, diskdrake/hd_gtk.pm: add isFat_or_NTFS() and
+ use it where possible instead of isFat() since Windows is now
+ using ntfs, not only Windows NT
+
+2003-01-30 23:37 Pixel <pixel at mandriva.com>
+
+ * Makefile, make_boot_img, mdk-stage1/Makefile: remove other.img &
+ usb.img, add hd_usb.img & network_gigabit_usb.img
+
+2003-01-30 23:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps_auto_install.pm, modules.pm,
+ network/ethernet.pm, network/netconnect.pm, network/network.pm:
+ adapt to new category network/gigabit (which used to be in
+ network/main)
+
+2003-01-30 23:34 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm: - add some more modules (from pcitable,
+ thanks chmouel) - add category network/gigabit (thanks chmouel)
+
+2003-01-30 23:32 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: - remove other & usb, add hd_usb &
+ network_gigabit_usb - call modules.pl after generating
+ modules.dep
+
+2003-01-30 23:30 Pixel <pixel at mandriva.com>
+
+ * kernel/modules.pl: - separate "bad/old pcitable modules" (ie
+ pcitable modules not available in the kernel) from "PCITABLE
+ MODULES NOT LISTED" - complete rework of "modules only for all
+ img" - separate modules not on stage1 and modules only on "all"
+ (nb: notice it was previously broken, every modules were on
+ "all") - dropped other.img support - fix module dependencies
+ handling (check): separate "bad/old pcitable modules" (ie
+ pcitable modules not available in the kernel) from "PCITABLE
+ MODULES NOT LISTED"
+
+2003-01-30 21:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: (merge_values): allow get_monitors
+ to work when xfree3 is missing
+
+2003-01-30 19:50 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cy.po: converted Welsh file to UTF-8
+
+2003-01-30 19:40 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: data.pm, main.pm, printerdrake.pm: -
+ Conservation of option settings also for queues with PostScript
+ PPD files or when switching between PostScript PPD file and
+ Foomatic. - Fixed tree structure of main window in expert mode.
+ - Several smaller bug fixes.
+
+2003-01-30 18:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: on second thoughts, this is
+ just simpler
+
+2003-01-30 18:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-0.19mdk
+
+2003-01-30 18:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: - perl_checker fixes - fix non
+ embedded case :-(
+
+2003-01-30 15:38 Fançois Pons
+
+ * isolinux-graphic.bmp: newer image for 9.1
+
+2003-01-30 15:37 Fançois Pons
+
+ * make_boot_img: updated with newer isolinux-graphic.bmp image.
+
+2003-01-30 12:32 Fançois Pons
+
+ * perl-install/share/list: added pango-hebrew-xft.so for hebrew to
+ be displayed (chmouel)
+
+2003-01-30 11:08 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/tg.po: Added Tajiki file
+
+2003-01-30 08:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: harddrake/data.pm, standalone/harddrake2:
+ translate topics (aka hw class names) in harddrake gui
+
+2003-01-30 08:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: - cosmetic fix for "drakconnect
+ does not detect nvnet part of nvforce2 chips" hint: their class
+ is MEMORY_RAM :-( ... - btw, simplify unknown devices detection
+ (merging tests regarding driver and media type) - move nforce
+ system controllers in bridge class (which is renamed "bridges and
+ system controllers" aka where we put stuff we've nothing to
+ configure but we don't want to put them in controller so that
+ users are not afraid) but nvnet
+
+2003-01-30 04:19 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: - Display
+ options devided in the groups defined in the PPD file. - For
+ Foomatic PPDs the options in the "General" group are shown by
+ default the rest when clicking "Advanced". When there ar no
+ groups, the decision is done by a table of most commonly used
+ option names. - Sort the displayed options of a queue with a
+ non-Foomatic PPD file by the importance of the options. - Do
+ not sort the values of an option, they are already conveniently
+ sorted in the PPD files. - Removed some unnecessary re-reads
+ of the printer option information. - Several fixes to run
+ smoothly with Foomatic 2.9.x.
+
+2003-01-30 03:35 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nl.po: updated Dutch file
+
+2003-01-30 02:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/newt.pm: perl_checker small fixes
+
+2003-01-30 02:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Newt/Newt.xs, interactive/newt.pm: basic treelist
+ handling (it leaks memory, but who cares, compared to gtk :)
+
+2003-01-30 02:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm: (helper_separator_tree_to_tree):
+ this new function helps transforming a flag {list} to a tree,
+ using {separator}
+
+2003-01-29 22:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: da.po, pt.po: updated Portuguese and
+ Danish files
+
+2003-01-29 16:38 Fançois Pons
+
+ * perl-install/standalone/drakpxe: fixed perl_checker
+
+2003-01-29 16:36 Fançois Pons
+
+ * perl-install/network/netconnect.pm: fixed some perl_checker
+
+2003-01-29 14:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: fix various resize pbs: -
+ write partition table *before* resizing when partition is
+ enlarged - debug ntfsresize
+
+2003-01-29 13:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: dumpe2fs call cleanup
+
+2003-01-29 13:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/hd_gtk.pm: don't set $::main_window during
+ install
+
+2003-01-29 12:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/: diskdrake/interactive.pm, share/list: ntfsresize
+ feature added (not tested!)
+
+2003-01-29 11:05 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: keyboard.pm, lang.pm: switched some languages to
+ UTF-8 (they use ascii only, so it shouldn't be noticed); changed
+ a keyboard name to match name used by XFree86
+
+2003-01-29 09:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: logdrake is a special case as
+ for embedding in mcc since it can be embedded twice: one as
+ explanation viewer and one a log search tool.
+
+ so we must handly ask mcc to display us ...
+
+2003-01-29 09:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getIDE) don't provide
+ information when we don't have it (vendor, description)
+
+2003-01-29 09:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: fix doble detection of pci modems
+
+2003-01-29 09:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getModem) it always return an
+ empy hash, thus confusing harddrake
+
+2003-01-29 09:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: print badly managed devices'
+ drivers in red
+
+2003-01-29 09:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: restore cd/dvd burners detection
+
+2003-01-29 04:01 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: - Automatic
+ non-interactive installation of local print queues. - Standard
+ and advanced options selected by option groups in PPD. - Fixed
+ bug of "CUPS + GIMP-Print" drivers being preferred against
+ "Foomatic + gimp-print" drivers in beginners mode. - Foomatic
+ package installation adapted to Foomatic 2.9.x.
+
+2003-01-29 02:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/: detect_devices.pm, raid.pm: software raid (mdX)
+ can go up to md31
+
+2003-01-29 02:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: handle mdX where X >= 10 (it should fix
+ bug #1129)
+
+2003-01-28 22:24 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/share/rpmsrate: Take into account the new splitting
+ of the Foomatic packages.
+
+2003-01-28 19:02 Guillaume Cottenceau
+
+ * perl-install/interactive/gtk.pm: fixes unresponsive keyboard
+
+2003-01-28 18:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: log configured dvds for better
+ post-debugging
+
+2003-01-28 17:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone.pm: s/version name/version number/
+ (Christophe Combelles)
+
+2003-01-28 17:09 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, pt.po: updated Portuguese file
+
+2003-01-28 16:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: common.pm, interactive.pm, ugtk.pm, ugtk2.pm,
+ interactive/gtk.pm: cleaning the utf8 support stuff:
+
+ - consolidate check_for_xserver() to check for x11 access
+
+ - introduce prepare_gtk2() to do what gtk+2 needs, so that
+ tools that're not part of drakxtools (aka: rpmdrake, mcc, ...)
+ can just do :
+
+ unshift @::textdomains, 'drakconf'; prepare_gtk2();
+
+2003-01-28 16:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: lv.po, mt.po, nl.po, no.po, pl.po, pt.po,
+ pt_BR.po, ro.po, ru.po, sk.po, sl.po, sp.po, sq.po, sr.po, sv.po,
+ ta.po, th.po, tr.po, uk.po, vi.po, wa.po, zh_CN.po, zh_TW.po:
+ typo fix in logdrake usage help (spoted by Christophe Combelles)
+
+2003-01-28 16:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: standalone.pm, share/po/af.po, share/po/ar.po,
+ share/po/az.po, share/po/be.po, share/po/bg.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/fi.po, share/po/fr.po,
+ share/po/ga.po, share/po/gl.po, share/po/he.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/lt.po: typo fix in
+ logdrake usage help (spoted by Christophe Combelles)
+
+2003-01-28 14:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Newt/Newt.xs, interactive/newt.pm: cleanup use of
+ flags
+
+2003-01-28 14:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Newt/Newt.xs, interactive/newt.pm: simplify API
+ (always -1,-1 for left,top when creating widget, it means
+ auto-placement)
+
+2003-01-28 13:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/TODO: update
+
+2003-01-28 12:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: for resize2fs, don't
+ multiply by 512 *then* divide by $block_size, better divide by
+ ($block_size / 512)
+
+2003-01-28 11:51 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fi.po, he.po: updated Finnish and Hebrew
+ files
+
+2003-01-28 09:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-0.17mdk
+
+2003-01-28 04:04 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: More stuff for
+ non-interactive printer configuration: - Added find_new_printer()
+ function to find local printers which are not configured yet -
+ Fixed Titi's bugs which messed up list of auto-detected printers
+ - Corrected text in the dialog for changing the printer
+ connection type (for local printer connections). - Allow
+ switching to expert mode during installation (the installation
+ has no global expert mode any more.
+
+2003-01-28 00:19 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/standalone/drakfont: - progress bars works - change
+ sucky About box - wipeout commented code - remove ugly borders
+ when embedded
+
+2003-01-27 19:01 Florin Grad <florin at mandriva.com>
+
+ * perl-install/standalone/drakgw: typo rename, not renamef
+
+2003-01-27 16:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/newt.pm: don't blindly truncate strings
+ to size 40 in simplify_string
+
+2003-01-27 13:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile: roll back (mcc!=gi)
+
+2003-01-27 13:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/common.pm: (require_root_capability): having
+ extracted it from interactive enable to further simplify it
+
+2003-01-27 13:33 Guillaume Cottenceau
+
+ * perl-install/mouse.pm: fix missing pointer_ungrab so that after
+ testing mouse during install we can move the mouse pointer
+ everywhere
+
+2003-01-27 13:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: remove debugging statement
+
+2003-01-27 13:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/Makefile: since fpons don't care about
+ fixing drakxtools build broken by drakpxe, let remove drakpxe
+ from translatable files
+
+2003-01-27 13:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile: remove warnings in package
+
+2003-01-27 13:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-0.16mdk
+
+2003-01-27 12:55 Guillaume Cottenceau
+
+ * perl-install/interactive/gtk.pm: since return values of callbacks
+ are now non-ignored, we need to return 0 to the expose_event when
+ displaying wait message so that gdk really does the exposure :)
+
+2003-01-27 11:49 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/vi.po: updated po file
+
+2003-01-27 10:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-0.15mdk
+
+2003-01-27 10:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: it's useless to import
+ %security::help::help since it's already exported by our
+
+2003-01-27 10:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: make interactive help window
+ be modal, aka transcient for main ugtk2 window
+
+2003-01-27 09:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: perl_checker fix
+
+2003-01-27 09:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: reput back perl-gtk-0.7 dependancy
+ because of drakfloppy and net_monitor
+
+2003-01-27 09:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: cosmetic fix for embedded mode:
+ don't display "wait while parsing" window when embedded
+
+2003-01-27 09:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: diskdrake/hd_gtk.pm, interactive/gtk.pm:
+ diskdrake: when non embedded, ensure sub window are modal
+
+ all other drakx tool can be fixed the same way
+
+2003-01-27 09:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: fix logdrake behaviour in mcc
+ where logdrake would only log the first process.
+
+ another (rare indeed) case of a bug introduced because
+ perl_checker wanted us to localize a file handle :-(
+
+2003-01-27 09:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: fix latest source of "unlisted modules"
+ in draksound: modules::get_alias() was able to give "module "
+ instead of only "module" beacause modules::read_conf() split the
+ line on space with a maximum of 3 splited elements.
+
+ i choose to strip terminal spaces and btw terminal comments.
+
+ i did not choose to do not put a limit to split since it's
+ usefull for some cases.
+
+2003-01-27 09:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: common.pm, interactive.pm, standalone/drakfloppy,
+ standalone/net_monitor: strip authentification out of
+ interactive->vnew into common.pm
+
+ This enable apps that still use gtk+-1.2 via my_gtk to still work
+ when they only need interactive->vnew('su') just to get root
+ capabilities. Indeed, interactive load ugtk if it has access to
+ the X server, which make my_gtk and ugtk fight for the cpu
+ forever... which is bad imho...
+
+ drakfloppy and net_monitor were converted to use it and are now
+ usuable again ("i leave ... again" commit).
+
+ it would also enable to complete spec 64 by enabling rpmdrake to
+ use kdesu under kde and consolehelper under gnome. rpmdrake is
+ indeed the last program to not behave like the running desktop to
+ get root capability.
+
+ unless someone is against this, i'll convert the mcc and all
+ other gtk+ pure tools to do not use anymore interactive just to
+ get root capability.
+
+ btw, i fixed the infamous SECTOR_SIZE warning...
+
+2003-01-27 08:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakhelp: - strict mode - we need at
+ least 1 argument, and only one
+
+2003-01-27 08:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbug: force drakbug to be runnable in
+ strict mode
+
+2003-01-27 08:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: use new help system
+
+2003-01-27 08:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: let mcc pack tables behave smoother, so
+ that all columns of mcc tables behave like last column of drakx's
+ pack tables
+
+2003-01-27 08:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakxtv: this patch enable doc team to
+ take snapshot of drakxtv even if they do not have any card: -
+ running "/usr/sbin/drakxtv" will enable to take snapshot of error
+ message when xawtv wasn't installed by the drakx installer -
+ running "/usr/sbin/drakxtv --testing" will emulate a fake dummy
+ tv card so that one is able to take snapshots of configuring a
+ tv card
+
+2003-01-27 08:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: let drakconnect be less
+ verbose: aka explain rename of old configuration files if that
+ had been already done
+
+2003-01-27 08:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: don't sent USR2 to mcc for logdrake;
+ logdrake is handled differently since it's a special case. else
+ on first execution of an embedded app, we take two USR2 (one from
+ the embedded app and one from logdrake, which is bad)
+
+2003-01-27 04:52 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: Adapted
+ printerdrake to Foomatic 2.9.x, bug fix for use of native PPDs in
+ recommended mode, bug fixes in association between detected
+ printers and existing queues.
+
+2003-01-26 22:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2003-01-26 10:19 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: es.po, zh_CN.po: updated Spanish and
+ Chinese files
+
+2003-01-25 15:01 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sq.po: updated po file
+
+2003-01-24 23:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: (ask_browse_tree_info): better look when
+ embedded in a smaller window
+
+2003-01-24 21:08 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/network.pm: fix typo
+
+2003-01-24 20:46 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/drakxtools.spec: new version
+
+2003-01-24 20:39 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/detect_devices.pm: get back serial modem detection
+
+2003-01-24 17:56 Guillaume Cottenceau
+
+ * perl-install/interactive/gtk.pm: remove unused variable
+
+2003-01-24 17:30 Guillaume Cottenceau
+
+ * perl-install/interactive/gtk.pm: fix Return key on a radio button
+ grabbing focus on next functional group of widgets AND doing an
+ action on it (toggling checkbuttons etc) (needs perl-GTK2 >=
+ 0.0.cvs.2003.01.24.1)
+
+2003-01-24 15:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps_interactive.pm: fix
+ "Previous" button in warnAboutNaughtyServers, so there is 3
+ choices (Previous, unselect servers, accept :)
+
+2003-01-24 15:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm: (ask_from_list, ask_from_list_,
+ ...): option nocancel added (ask_yesorno): no "Cancel" or
+ "Previous" button
+
+2003-01-24 14:54 Guillaume Cottenceau
+
+ * perl-install/mouse.pm: remove blinks in mouse test
+
+2003-01-24 14:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps_gtk.pm, mouse.pm: - don't
+ setMouseLive when the protocol hasn't changed - don't say "MOVE
+ YOUR WHEEL" when there is no wheel and the protocol hasn't
+ changed (nb: no wheel + IMPS/2 can now happen for usb mice)
+
+2003-01-24 14:01 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2003-01-24 13:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: - switch "<= 3 buttons usb mice" from X
+ protocol PS/2 to IMPS/2 (it works nicely, and redhat do so) -
+ default usb mice to USB|Wheel instead of USB|Generic, since most
+ (all?) usb mice have a wheel
+
+ (i tested on 1 button mac mouse, it works nicely with
+ ZAxisMapping and IMPS/2)
+
+2003-01-24 12:41 Guillaume Cottenceau
+
+ * perl-install/: common.pm, interactive.pm, lang.pm, c/stuff.xs.pl:
+ fix non latin1 post-install perl-gtk2 apps, seems like perl
+ upgrading strings to utf8 is somewhat broken (dunno why), so now
+ we bind the codeset or our textdomains to utf8 and tag the
+ translated strings to utf8, when using gtk
+
+2003-01-24 11:43 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: done
+
+2003-01-24 10:59 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, th.po, tr.po, uk.po,
+ vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file (English
+ proofreading)
+
+2003-01-24 10:10 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: share/compssUsers.desktop, standalone/drakperm,
+ standalone/draksec, standalone/draksplash, standalone/harddrake2,
+ standalone/logdrake, standalone/mousedrake,
+ standalone/net_monitor, standalone/scannerdrake: English
+ proofreading
+
+2003-01-23 23:14 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: fixed some (locally used) charset names
+
+2003-01-23 22:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm:
+ (formatMountPartitions): help perl (otherwise wait_message stays
+ forever in newt)
+
+2003-01-23 21:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/main.pm: (configure_chooser_raw): no special
+ case for "Next" button
+
+2003-01-23 21:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/newt.pm: fix special case "for license
+ agreement": only use it for long messages, and fix {format} use
+
+2003-01-23 21:39 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2003-01-23 21:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/newt.pm: add a button to "summary"-like
+ dialog boxes
+
+2003-01-23 21:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/newt.pm: - handle {ok_disabled} -
+ correctly wrap messages - fix Textbox size - fix Listbox size -
+ special code to handle the license dialog
+
+2003-01-23 21:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: (reallyChooseGroups):
+ remove "Previous" button
+
+2003-01-23 21:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: fix diskdrake in newt
+ (causing error about missing method ->cylinder_size)
+
+2003-01-23 20:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/network.pm: pixelification
+
+2003-01-23 20:00 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/: ethernet.pm, network.pm: - perl_checker
+ compliant - s/$pump/$auto_ip/ - use join('', if_(..), if_(..)) -
+ each_index instead of for - various fixes
+
+2003-01-23 19:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: (setupSCSI): remove
+ now unused variable $clicked
+
+2003-01-23 18:45 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ko.po: Changes asked by HP people to Korean
+ translation
+
+2003-01-23 17:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: better fix of ->isa use
+
+2003-01-23 17:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: (is_fbdev): created (get_both,
+ set_both): skip modifications on missing xfree3 or xfree4
+
+2003-01-23 17:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: (to_string): created, try to
+ shortly describe current configuration (configure_FB_TVOUT):
+ don't do anything when not using XF4
+
+2003-01-23 17:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: (summary): display
+ more nicely the current X config when fbdev (selectLanguage): no
+ need to handle "Cancel" on language choosing :)
+
+2003-01-23 17:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: focus first widget when there is
+ no ok
+
+2003-01-23 17:09 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: updated
+
+2003-01-23 17:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: perl_checker fix
+
+2003-01-23 16:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: reconfigure sound
+ slots at boot time (we should enhance slot filling by keeping
+ existent module affectation, aka keep user choice if his module
+ for slot X is not the default one)
+
+2003-01-23 16:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix perl-GTK2 dependancy
+
+2003-01-23 16:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakpxe: perl_checker fix
+
+2003-01-23 16:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 9.1-0.13mdk
+
+2003-01-23 16:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: workaround bug introduced by new
+ pixel focus managment
+
+2003-01-23 15:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/keyboard.pm: (read): fix return value when no
+ configured keyboard is found
+
+2003-01-23 14:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/: xfree3.pm, xfree4.pm, xfreeX.pm: introduce
+ ->is_fbdev, and use it to simplify ->set_resolution
+
+2003-01-23 14:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: remove use of UNIVERSAL::isa() (it is not
+ much more complex with ref + ->isa, and UNIVERSAL::isa() would
+ need a special case in perl_checker)
+
+2003-01-23 13:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: (setupSCSI): handle
+ calling modules::interactive::load_category in non-automatic mode
+ when no harddrives are found
+
+2003-01-23 13:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: (getHds): do not handle missing
+ harddrives by calling setupSCSI, since setupSCSI do it by itself
+ now
+
+2003-01-23 13:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules/interactive.pm:
+ (load_category__prompt_for_more): cleanup, propose "See hardware
+ info" in any case
+
+2003-01-23 13:12 Guillaume Cottenceau
+
+ * kernel/list_modules.pm: nothing should be quoted here. if one
+ wants to remove modules from boot floppies, modules.pl is the way
+ to go.
+
+2003-01-23 13:06 Guillaume Cottenceau
+
+ * kernel/modules.pl: ataraid is ad-hoc raid, unsupported in stage1
+ anyway
+
+2003-01-23 12:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/isdn.pm: force strict pragma
+
+2003-01-23 12:27 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/: adsl.pm, isdn.pm, modem.pm, netconnect.pm:
+ isdn.pm now in use strict little cleanup
+
+2003-01-23 11:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/: isdn.pm, modem.pm, netconnect.pm,
+ network.pm, shorewall.pm, tools.pm: force strict mode
+
+2003-01-23 11:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: - force use strict -
+ perl_checker fix
+
+2003-01-22 20:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po,
+ sl.po, sp.po, sq.po, sr.po, sv.po, ta.po, th.po, tr.po, uk.po,
+ vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2003-01-22 20:02 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/: drakbackup, drakconnect, drakfloppy,
+ drakfont, drakgw, drakperm, draksplash: English proofreading
+
+2003-01-22 18:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: call "yelp-pregenerate -a" after
+ installing pkgs (since it's skipped DURING_INSTALL)
+
+2003-01-22 18:35 Guillaume Cottenceau
+
+ * kernel/modules.pl: include FS modules (fixes #975)
+
+2003-01-22 18:21 Guillaume Cottenceau
+
+ * perl-install/: common.pm, ugtk2.pm: correctly pop when F2
+ (screenshots)
+
+2003-01-22 16:59 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: revive F1, F2 and alt-e (dialogs for F1
+ and F2 are broken, though)
+
+2003-01-22 16:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: - perl_checker fixes -
+ is_a_font(): display the non existant file we just checked for
+ instead of an undefined value
+
+2003-01-22 16:20 Guillaume Cottenceau
+
+ * mdk-stage1/: probing.c, pci-resource/update-pci-ids.pl: add full
+ pci probe support
+
+2003-01-22 15:49 Guillaume Cottenceau
+
+ * mdk-stage1/usb-resource/update-usb-ids.pl: have pci usb
+ controllers sorted alphabetically
+
+2003-01-22 15:01 Fançois Pons
+
+ * perl-install/bootloader.pm: fix call to sanitize_ver by giving it
+ linux-$version instead of linux$ext.
+
+2003-01-22 14:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: (acceptLicense): use
+ new "interactive" feature to gray "Next" button until license is
+ accepted
+
+2003-01-22 14:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: add {callbacks}{ok_disabled}
+
+2003-01-22 14:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm: add some documentation about the
+ various possible fields
+
+2003-01-22 12:57 Guillaume Cottenceau
+
+ * perl-install/: common.pm, lang.pm, c/stuff.xs.pl: fix accents
+ characters displaying in console mode during install: - convert
+ translations into utf8 only during install && if using gtk -
+ explicitely bind the codeset to the specified locale's encoding
+ because during install they are reported as utf8
+
+2003-01-22 12:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps_interactive.pm, network/network.pm:
+ simplify easy_dhcp prototype
+
+2003-01-22 12:29 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: et.po, fi.po: updated Finnish and
+ Estonian files
+
+2003-01-22 12:26 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: perl checker fixes.
+
+2003-01-22 12:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: small changes in charset naming so they
+ work better in console (console is still not in utf-8)
+
+2003-01-22 11:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: fix progressbar label
+ initialization
+
+2003-01-22 10:53 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: - speedtouch fixes : o binaries
+ location from /usr/bin to /usr/sbin o clean previous instance
+ of pppoa3 according to modem id (-c) (special thanks to Corsikas
+ who proudly brings this patch to me :)
+
+2003-01-22 10:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: harddrake/TODO, network/netconnect.pm,
+ network/network.pm, printer/printerdrake.pm, standalone/drakxtv,
+ standalone/mousedrake: perl_checker fixes
+
+2003-01-22 10:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: - if there's no know driver,
+ offer to pick a driver in the drivers list in case ldetect-lst
+ isn't up to date but the user know which driver to use -
+ consolidate "pick any driver" entry
+
+2003-01-22 01:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, install2.pm, install_any.pm,
+ install_steps.pm, install_steps_interactive.pm, steps.pm: -
+ remove createBootdisk step - add mkbootdisk option in
+ setupBootloader__general() - move kernelVersion() from
+ install_any to any
+
+2003-01-21 22:30 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: seems like gdk_window_foreign_new is
+ leaking as well..
+
+2003-01-21 20:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: (setupBootloader__mbr_or_not): add ability
+ to skip and to put on floppy
+
+2003-01-21 20:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_gtk.pm, ugtk2.pm: enlarge "steps" window a
+ little
+
+2003-01-21 20:06 Guillaume Cottenceau
+
+ * perl-install/: install_steps_gtk.pm, interactive/gtk.pm:
+ perl-GTK2 0.0.cvs.2003.01.21.1 should fix set_active(undef)
+ misbehaviour
+
+2003-01-21 20:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: replace "Next" button
+ with "Reboot" at exitInstall step
+
+2003-01-21 19:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_gtk.pm: small enhancement to know which step
+ is currently done
+
+2003-01-21 19:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: remove unused variable
+
+2003-01-21 19:32 Guillaume Cottenceau
+
+ * perl-install/mouse.pm: fix absence of scroll up and scroll down
+ in mouse test
+
+2003-01-21 17:58 Fançois Pons
+
+ * perl-install/standalone/drakpxe: latest fixes for having default
+ file correctly documented and make sure if server boot using dhcp
+ itself, server hostname is given instead of ip address.
+
+2003-01-21 17:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: rework autologin dialog box
+
+2003-01-21 17:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update french translation
+
+2003-01-21 17:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: (Mount_point): use uniq()
+ on suggested mount points (otherwise the suggested mount point
+ appears twice) (fixes bug #954)
+
+2003-01-21 17:03 Fançois Pons
+
+ * perl-install/standalone/drakpxe: add daemons stop/start code.
+
+2003-01-21 16:51 Fançois Pons
+
+ * perl-install/standalone/drakpxe: update with something that look
+ like running.
+
+2003-01-21 16:26 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: utf-8 again
+
+2003-01-21 16:24 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: updated again...? And again UTF ->
+ ISO
+
+2003-01-21 16:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: handle proprietary drivers
+
+2003-01-21 15:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: if there's no alternative driver
+ or if the current setting does not please the user, let he pick
+ any driver among multimedia/sound modules category
+
+2003-01-21 15:25 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: pl.po, vi.po: updated Vietnamese and
+ Polish files
+
+2003-01-21 15:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: workaround set_active on
+ Gtk2::CheckButton widgets thinking undef is true :-( (hopefully,
+ gc will fix perl-GTK2!)
+
+2003-01-21 14:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps_gtk.pm, Xconfig/main.pm: replace
+ some "Ok" with "Next ->"
+
+2003-01-21 14:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/: card.pm, various.pm: have Xfree version at
+ only one place (nb: it would be better to parse available package
+ and get version from it.)
+
+2003-01-21 14:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_interactive.pm,
+ install_steps_interactive.pm: remove or fix some "Previous"
+
+2003-01-21 14:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_okcancel): rework to prepare next
+ move, "Next" and "Previous" on the left, and @other buttons on
+ the right (create_hbox): do handle the layout parameter
+
+2003-01-21 14:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/TODO: update
+
+2003-01-21 14:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (ask_fromW): very smart code to
+ know which widget to focus (dilemna is: "Next" vs first widget).
+ One can also force focusing of first widget using
+ $common->{focus_first} (ask_fromW): have "advanced" widgets above
+ buttons, not below (create_list): fix old bug (nb: this code must
+ be unused) (create_boxradio): need to set {focus_w} to the
+ selected widget (nb: this is ugly) (create_boxradio,
+ $may_go_to_next): no special case for "tab", gtk2 handles things
+ better than gtk1 ($set_all): pass the full_struct to the setters
+ (this allows modifying {focus_w}) (nb: this is ugly)
+
+2003-01-21 13:29 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: network/isdn.pm, network/network.pm,
+ network/shorewall.pm, network/tools.pm, partition_table/raw.pm,
+ printer/printerdrake.pm, security/level.pm,
+ share/advertising/01-thanks.pl, share/advertising/03-internet.pl,
+ share/advertising/04-multimedia.pl,
+ share/advertising/05-games.pl, share/advertising/06-mcc.pl,
+ share/advertising/07-desktop.pl,
+ share/advertising/08-development.pl, standalone/drakTermServ,
+ standalone/drakfont: English proofreading (first pass)
+
+2003-01-21 13:25 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.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, fi.po, fr.po, ga.po, gl.po, he.po,
+ hr.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po,
+ mt.po, nl.po, no.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po,
+ sp.po, sq.po, sr.po, sv.po, ta.po, th.po, tr.po, uk.po, vi.po,
+ wa.po, zh_CN.po, zh_TW.po: English proofreading (first pass)
+
+2003-01-21 12:57 Guillaume Cottenceau
+
+ * perl-install/ugtk2.pm: since gtkset_mousecursor is called by a
+ timeout, don't leak memory because it can lead to problems on the
+ long term
+
+2003-01-21 12:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: don't prompt for license when
+ useless_thing_accepted (this used to be done in
+ install_steps_interactive::acceptLicense)
+
+2003-01-21 12:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/steps.pm: on error in acceptLicense, go back to
+ selectLanguage (ie. handle "Previous ->" correctly)
+
+2003-01-21 12:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: (acceptLicense):
+ handle "Previous ->" correctly, and simplify code (esp. don't set
+ useless_thing_accepted)
+
+2003-01-21 12:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: (selectLanguage): no "Previous ->" during
+ install
+
+2003-01-21 12:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm: when the return value of ask_from_
+ and ask_from is not used, do not have a "Previous ->" or "Cancel"
+ button (beware, black magic here :)
+
+2003-01-21 12:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/help.pm: "license" is now step "acceptLicense"
+
+2003-01-21 10:13 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: back from UTF-8 to ISO-8859-2 ...
+ Why Why Why? It should work from UTF-8...
+
+2003-01-21 09:09 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: Xconfig/monitor.pm, diskdrake/interactive.pm,
+ harddrake/sound.pm, harddrake/v4l.pm, modules/interactive.pm,
+ network/drakfirewall.pm, network/ethernet.pm, network/isdn.pm,
+ network/netconnect.pm: English proofreading by Stew Benedicts
+
+2003-01-21 08:59 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/network/adsl.pm: English proofreading by Stew
+ Beneditcs
+
+2003-01-21 08:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: standalone/mousedrake, any.pm, bootloader.pm,
+ bootlook.pm, install_any.pm, install_steps_interactive.pm,
+ services.pm: English proofreading by Stew Benedicts
+
+2003-01-21 07:48 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, sk.po, zh_CN.po: updated
+ Slovak and Chinese files
+
+2003-01-21 03:27 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: - Support for
+ manufacturer-supplied PostScript PPDs also in recommended mode.
+ - If "Foomatic + Postscript" is recommended driver for a printer
+ and a manufacturer-supplied PPD file exists for it, the PPD
+ file gets the recommended driver. - Tried to extract IEEE-1284
+ auto-detection info from the PPD files but this takes too long
+ time (40 sec for 800 PPDs). - Fixed long-standing bug in
+ activation of auto-load of the USB "printer" kernel module.
+
+2003-01-20 22:30 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: Improved printer/driver list
+ entries for PostScript PPD files.
+
+2003-01-20 19:41 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/network.pm: void label removed
+
+2003-01-20 19:27 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/adsl.pm: little cleanup
+
+2003-01-20 19:24 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/: ethernet.pm, network.pm: - zero conf is
+ avaible in drakconnect, with/without dhcp - install tmdns and
+ zcip packages when needed
+
+2003-01-20 18:04 Fançois Pons
+
+ * perl-install/Makefile.config: added drakpxe
+
+2003-01-20 18:02 Fançois Pons
+
+ * perl-install/standalone/drakpxe: initial revision with
+ translation message.
+
+2003-01-20 17:09 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/et.po: updated Estonian file
+
+2003-01-20 16:21 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: ar.po, es.po: updated Spanish and Arabic
+ files
+
+2003-01-20 15:28 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/tools.pm: get username back in menu
+
+2003-01-20 14:00 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: small keyboard name change
+
+2003-01-20 13:14 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/share/rpmsrate: Make flphoto getting onto the CDs.
+
+2003-01-20 12:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mouse.pm: fix gtk+-2 port
+
+2003-01-20 12:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: use new help scheme just added
+ to msec (this *does* need a newer msec package!!)
+
+2003-01-20 12:46 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: fi.po, sp.po, sr.po, tr.po: updated
+ Finnish, Serbian and Turkish files
+
+2003-01-20 12:37 Guillaume Cottenceau
+
+ * perl-install/Xconfig/test.pm: use gtk rather than qiv to display
+ the background tile in X test
+
+2003-01-20 12:19 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * Makefile, make_boot_img: x86-64 specific changes
+
+2003-01-20 11:52 Guillaume Cottenceau
+
+ * perl-install/Xconfig/test.pm: fix Gtk2 port
+
+2003-01-20 11:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/services.pm: fix prefix usage
+
+2003-01-20 11:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: make all chkconfig calls be
+ chrooted
+
+2003-01-20 09:41 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: updated
+
+2003-01-20 09:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone.pm: fix breakage introduced when lowering
+ warning level
+
+2003-01-20 03:48 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: detect_devices.pm, printer/main.pm,
+ printer/printerdrake.pm: Improve association of printers with
+ database entries (preparation for non-interactive print queue
+ generation): - Make use of device ID strings in the Foomatic
+ database - Association of generic printers when PDL (PCL,
+ PCL-XL, PostScript) could be auto-detected - Cleaned up
+ entries from manufacturer-supplied PPDs for PostScript
+ printers to try to match model names of Foomatic entries - Bug
+ fixes on previous association mechanism
+
+2003-01-19 14:28 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: da.po, sq.po: updated Danish and Albanian
+ files
+
+2003-01-18 14:08 Stew Benedict <sbenedict at mandriva.com>
+
+ * tools/ppc/: magic, mapping: Update magic, mapping files for PPC
+ from Christian Walther
+
+2003-01-17 22:52 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/it.po: updated Italian file
+
+2003-01-17 20:42 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/modules.pm: airport support for ppc
+
+2003-01-17 17:05 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/ru.po: updated po file
+
+2003-01-17 14:58 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/drakxtools.spec: 0.12mdk
+
+2003-01-17 14:38 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/: ethernet.pm, network.pm: - some changes to
+ dhcp behavior for beta2 (not clean yet)
+
+2003-01-17 11:49 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: add some applications on club voting
+
+2003-01-17 01:05 Pixel <pixel at mandriva.com>
+
+ * tools/make_mdkinst_stage2: do not remove mdk_10.pcf in the
+ ramdisk (or handle it in lang.pm since it seems to be needed for
+ greek display)
+
+2003-01-16 22:44 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: replace ramdisk=32000 with ramdisk=128000 (note:
+ it doesn't consumate more memory, it's just a limit!)
+
+2003-01-16 22:05 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakhelp: - checker
+
+2003-01-16 21:38 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakhelp: - support gnome help
+
+2003-01-16 20:08 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+
+ * perl-install/share/po/pl.po: updated
+
+2003-01-16 17:28 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: fixed not to ask group
+ instead of individual package selection.
+
+2003-01-16 17:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: workaround ref count perl bug
+
+2003-01-16 16:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/services.pm: fix embedding
+
+2003-01-16 16:24 Damien Chaumette <dchaumette at mandriva.com>
+
+ * perl-install/network/network.pm: - fix /etc/hosts
+ localhost.localdomain in localhost
+
+2003-01-16 16:19 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/Makefile.drakxtools: - drakhelp moved to /usr/bin/
+
+2003-01-16 16:14 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakhelp: - warn if documentation is not
+ installed
+
+2003-01-16 16:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: fix embedding
+
+2003-01-16 15:50 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: keyboard.pm, lang.pm: Added some more English
+ locales; and changed all locale names using xx notation to xx_YY
+ notation (so it's easier to just append a ".UTF-8" in case we
+ provide a way to let the user choose if he wants UTF-8 or not)
+
+2003-01-16 15:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_gtk.pm, install_steps.pm,
+ install_steps_interactive.pm, steps.pm,
+ share/step-green-click.xpm, share/step-green-on.xpm,
+ share/step-green.xpm, share/step-orange-click.xpm,
+ share/step-orange-on.xpm, share/step-orange.xpm,
+ share/step-red-click.xpm, share/step-red-on.xpm,
+ share/step-red.xpm: new steps window layout
+
+2003-01-16 15:21 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/Makefile.config: - add drakhelp
+
+2003-01-16 15:10 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone.pm: - remove help callback (moved into
+ drakhelp)
+
+2003-01-16 15:08 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/drakhelp: - syntax : drakhelp
+ relative_link example: drakhelp Quick_Startup.html/drakx.html
+
+ - drakhelp will check the running wm and will launch
+ kdehelpcenter with the correct URL after localizing the link.
+ Otherwise, it launch a default browser: mozilla konqueror or
+ galeon.
+
+2003-01-16 14:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/: detect_devices.pm, network/netconnect.pm,
+ network/network.pm, network/tools.pm, security/level.pm,
+ standalone/drakconnect, standalone/drakperm,
+ standalone/net_monitor: replace occurences of "$foo ? $foo :
+ $bar" with "$foo || $bar"
+
+2003-01-16 14:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: make perl_checker
+ happy
+
+2003-01-16 13:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: add coreutils-doc by default
+
+2003-01-16 13:56 Fançois Pons
+
+ * perl-install/install_steps.pm: fixed test of alternatives always
+ seen as broken.
+
+2003-01-16 13:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps_interactive.pm, steps.pm: ask
+ security level in every install
+
+2003-01-16 13:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakautoinst: perl_checker fixes
+
+2003-01-16 13:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: require an recent enought
+ MDK::Common
+
+2003-01-16 13:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: perl_checker fixes
+
+2003-01-16 13:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone.pm: make perl_checker happy
+
+2003-01-16 13:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: bootlook.pm, log.pm, standalone.pm,
+ harddrake/TODO, harddrake/sound.pm, harddrake/v4l.pm,
+ standalone/drakTermServ, standalone/drakautoinst,
+ standalone/drakbug, standalone/drakgw, standalone/draksec,
+ standalone/drakxtv, standalone/service_harddrake: "je n'en veux +
+ de cette engeance" (c) pixel : make explanations provided by log
+ and not anymore by standalone, thus preventing using standalone
+ in drakx (which is bad)
+
+2003-01-16 12:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: happy drakx
+
+2003-01-16 12:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_auto_install.pm: configureNetwork step
+ must be non-auto otherwise only install_steps::configureNetwork
+ is called
+
+2003-01-16 12:43 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: move gnucash up on mandrakeclub
+ demand
+
+2003-01-16 12:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: add hdparm in default install (esp.
+ per cooker request)
+
+2003-01-16 12:36 Fançois Pons
+
+ * perl-install/install_steps_interactive.pm: do not propose
+ individual package on upgrade.
+
+2003-01-16 12:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/network.pm: have dhcp-client the default
+ dhcp client
+
+2003-01-16 12:12 Warly <warly at mandriva.com>
+
+ * perl-install/share/logo-mandrake.png: beta 2
+
+2003-01-16 11:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: move "require standalone" where
+ needed
+
+2003-01-16 11:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: fix sound configuration while
+ installing
+
+2003-01-16 01:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/Makefile: don't yell when checking for "$"
+ in DrakX.pot and only finding "\$"
+
+2003-01-16 01:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: hopefully last titi's
+ bug on getSoundDevices :-(
+
+2003-01-16 00:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: fix typo
+
+2003-01-16 00:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: (selectInstallClass):
+ display mandrake release version when listing the choices of
+ partitions to upgrade
+
+2003-01-16 00:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: (find_root_parts): - do not use
+ guess_mount_point() anymore - check /etc/mandrake-release instead
+ of /etc/fstab - return a list of { release => "Mandrake Linux
+ release X.X (XXXX)", part => ... } instead of a list of parts
+
+2003-01-16 00:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: do not "use standalone" in a
+ module used during install!
+
+2003-01-16 00:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: adapt to
+ install_any::find_root_parts() return value changes
+
+2003-01-15 22:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, ar.po, az.po, be.po,
+ bg.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po,
+ eo.po, es.po, et.po, fi.po, fr.po, ga.po, gl.po, he.po, hr.po,
+ hu.po, id.po, is.po, it.po, ja.po, ko.po, lt.po, lv.po, nl.po,
+ no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sp.po,
+ sq.po, sr.po, sv.po, ta.po, th.po, tr.po, uk.po, vi.po, wa.po,
+ zh_CN.po, zh_TW.po: updated pot file
+
+2003-01-15 21:39 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: Added "Amharic" in the languages list, so
+ it can be choosed and its translations can get installed from the
+ rpm packages
+
+2003-01-15 18:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_auto_install.pm: move
+ install_steps_auto_install_non_interactive::configureNetwork() to
+ install_steps_auto_install::configureNetwork() as it should be
+ (thanks to Luc Bourdot)
+
+2003-01-15 18:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/patch/patch-9.0-auto-inst-network-config.pl: fix for
+ network module probe & configuration in interactive auto_install
+
+2003-01-15 16:56 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nl.po: fixed encoding problem
+
+2003-01-15 16:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: - factorize snd devices listing
+ in detect_devices::getSoundDevices() so that each caller is ppc
+ aware - factorize sound slots configuration into
+ harddrake::sound::configure_sound_slots() so that harddrake
+ service will eventually set them at bootstrapping time
+
+2003-01-15 16:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm, perl-install/harddrake/sound.pm:
+ snd-sscape does not exist
+
+2003-01-15 15:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: install2.pm, install_steps_interactive.pm,
+ harddrake/sound.pm: - factorize snd devices listing in
+ detect_devices::getSoundDevices() so that each caller is ppc
+ aware - factorize sound slots configuration into
+ harddrake::sound::configure_sound_slots() so that harddrake
+ service will eventually set them at bootstrapping time
+
+2003-01-15 15:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: add an option to skip jazz
+ drives detection
+
+2003-01-15 14:44 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/nl.po: updated Dutch file
+
+2003-01-15 12:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: (suggest_onmbr): log the choice
+
+2003-01-15 11:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakproxy: drakproxy need common for
+ getVarsFromSh()
+
+2003-01-15 00:19 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: data.pm, printerdrake.pm: Removed bugs
+ from Titi which prevented printerdrake from installing the
+ requested spooler.
+
+2003-01-14 23:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: ensure cancel on setupBootloader__mbr_or_not
+ do cancel
+
+2003-01-14 20:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: set_active on Gtk2::CheckButton
+ is pretty dumb, it thinks undef is true ;p
+
+2003-01-14 20:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: don't probe mouse when testing (startup
+ is now much faster)
+
+2003-01-14 20:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: changes to have less "Use of
+ uninitialized value"
+
+2003-01-14 19:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: remove the ugly temporary fix for
+ fontconfig
+
+2003-01-14 19:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: remove duplicate code
+
+2003-01-14 17:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: please perl_checker
+
+2003-01-14 14:45 Pixel <pixel at mandriva.com>
+
+ * rescue/list: /usr/share/magic has moved to /usr/share/misc/magic
+
+2003-01-14 14:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: fix font_choice()
+
+2003-01-14 14:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: don't automatically configure network
+ on upgrade, now only done when called via summary
+
+2003-01-14 14:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list: unicore/To/Fold.pl is necessary to fix
+ "panic: swash_fetch" error occuring in a regexp with /i on
+ ->{device} (fixes bug #799)
+
+2003-01-14 14:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/check_snd.pl: add harddrake::sound checker
+
+2003-01-14 13:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: remove doble
+
+2003-01-14 13:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: add missing sound modules (found
+ by check_snd in comparing harddrake::sound vs list_modules). we
+ only left audio and bttv...
+
+2003-01-14 11:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add missing sound modules (found by
+ check_snd in comparing draksound vs list_modules). we only left
+ audio and bttv...
+
+2003-01-14 11:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: add a "trouble shooting" window
+
+2003-01-13 11:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: typo fix
+
+2003-01-13 10:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_interactive.pm: don't say "You must have a
+ swap partition" (since it's after using diskdrake which is for
+ experts)
+
+2003-01-13 10:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: it's uneeded to force scalar
+ context
+
+2003-01-13 10:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/main.pm: make get_descr_from_ppd() clearer
+ by : - using cat_() instead of manual open or ... - using "$var
+ = s/$regexp//" instead of "var=/regexp\(...\)/; var=$1;"
+
+2003-01-13 10:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/main.pm: simplify set_cups_autoconf()
+
+2003-01-13 10:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/data.pm: remove old bug reference
+
+2003-01-13 10:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: print_testpages() :
+ factorize and simplify options managment by using an options hash
+
+2003-01-13 10:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/main.pm: add_spooler_to_security_level(),
+ configure_queue() and config_sane() : factorize common code, aka
+ resuse MDK::Common
+
+2003-01-13 10:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: setup_local_autoscan(): -
+ don't reinvent the wheel, reverse is faster - remove doble
+ $device initialization in one path
+
+2003-01-13 09:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: setup_local_autoscan() :
+ simplify loop of loop and optimize away useless $alreadyfound
+
+2003-01-13 08:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/TODO: update
+
+2003-01-13 08:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: this is not a per class help,
+ but we told the user what he can achieve (aka not only on
+ startup)
+
+2003-01-13 08:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: add support for zip drives
+
+2003-01-13 08:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: listlength() is obviously
+ just "overhead" for arrays
+
+2003-01-13 08:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: use diskdrake to configure
+ cdroms, dvroms, cd|dvd -burners, floppies and zip drives
+
+2003-01-13 03:24 Till Kamppeter <till at mandriva.com>
+