package install_gtk; # $Id$
use diagnostics;
use strict;
use ugtk2;
use mygtk2;
use common;
use lang;
use devices;
#-#####################################################################################
#-INTERN CONSTANT
#-#####################################################################################
#- if we're running for the doc team, we want screenshots with
#- a good B&W contrast: we'll override values of our theme
my $theme_overriding_for_doc = q(style "galaxy-default"
{
base[SELECTED] = "#E0E0FF"
base[ACTIVE] = "#E0E0FF"
base[PRELIGHT] = "#E0E0FF"
bg[SELECTED] = "#E0E0FF"
bg[ACTIVE] = "#E0E0FF"
bg[PRELIGHT] = "#E0E0FF"
text[ACTIVE] = "#000000"
text[PRELIGHT] = "#000000"
text[SELECTED] = "#000000"
fg[SELECTED] = "#000000"
}
style "white-on-blue"
{
base[NORMAL] = { 0.93, 0.93, 0.93 }
bg[NORMAL] = { 0.93, 0.93, 0.93 }
text[NORMAL] = "#000000"
fg[NORMAL] = "#000000"
}
style "background"
{
bg[NORMAL] = { 0.93, 0.93, 0.93 }
}
style "background-logo"
{
bg[NORMAL] = { 0.70, 0.70, 0.70 }
}
widget "*logo*" style "background-logo"
);
#------------------------------------------------------------------------------
sub load_rc {
my ($o, $name) = @_;
my $f = $name;
-r $name or $f = find { -r $_ } map { "$_/themes-$name.rc" } ("share", $ENV{SHARE_PATH}, dirname(__FILE__));
if ($f) {
Gtk2::Rc->parse_string($o->{doc} ? $theme_overriding_for_doc : scalar cat_($f));
}
if ($::move) {
#- override selection color since we will not do inverse-video on the text when it's images
Gtk2::Rc->parse_string(q(
style "galaxy-default"
{
base[ACTIVE] = "#CECECE"
base[SELECTED] = "#CECECE"
text[ACTIVE] = "#000000"
text[PRELIGHT] = "#000000"
text[SELECTED] = "#000000"
}
));
}
}
#------------------------------------------------------------------------------
sub load_font {
my ($o) = @_;
if (lang::text_direction_rtl()) {
Gtk2::Widget->set_default_direction('rtl');
my ($x, $y) = $::WizardWindow->get_position;
my ($width) = $::WizardWindow->get_size;
$::WizardWindow->move($::rootwidth - $width - $x, $y);
}
Gtk2::Rc->parse_string(q(
style "default-font"
{
font_name = ") . lang::l2pango_font($o->{locale}{lang}) . q("
}
widget "*" style "default-font"
));
}
#------------------------------------------------------------------------------
sub default_theme {
my ($o) = @_;
$::move ? '' :
$o->{simple_themes} || $o->{vga16} ? 'blue' : 'galaxy';
}
sub install_theme {
my ($o) = @_;
load_rc($o, $o->{theme} ||= default_theme($o));
load_font($o);
if (!$::move) {
my $win = gtknew('Window', widget_name => 'background');
$win->realize;
mygtk2::set_root_window_background_with_gc($win->style->bg_gc('normal'));
}
}
#------------------------------------------------------------------------------
my %steps;
sub create_steps_window {
my ($o) = @_;
return if $::stepswidth == 0;
$o->{steps_window} and $o->{steps_window}->destroy;
$steps{$_} ||= gtknew('Pixbuf', file => "steps_$_") foreach qw(on off);
my $category = sub {
gtknew('HBox', children_tight => [
gtknew('Label', text => $_[0], widget_name => 'Step-categories')
]);
};
my @l = $category->(N("System installation"));
foreach (grep { !eval $o->{steps}{$_}{hidden} } @{$o->{orderedSteps}}) {
if ($_ eq 'setRootPassword') {
push @l, '', $category->(N("System configuration"));
}
my $img = gtknew('Image', file => 'steps_off.png');
$steps{steps}{$_}{img} = $img;
push @l, gtknew('HBox', spacing => 7, children_tight => [ '', '', $img, translate($o->{steps}{$_}{text}) ]);
}
my $offset = 20;
$o->{steps_window} =
gtknew('Window', width => ($::stepswidth - $offset), widget_name => 'Steps',
position => [ lang::text_direction_rtl() ? ($::rootwidth - $::stepswidth - $offset) : $offset, 150 ],
child => gtknew('VBox', spacing => 6, children_tight => \@l));
$o->{steps_window}->show;
}
sub update_steps_position {
my ($o) = @_;
return if !$steps{steps};
my $last_step;
foreach (@{$o->{orderedSteps}}) {
exists $steps{steps}{$_} or next;
if ($o->{steps}{$_}{entered} && !$o->{steps}{$_}{done}) {
$steps{steps}{$_}{img}->set_from_pixbuf($steps{on});
$last_step and $steps{steps}{$last_step}{img}->set_from_pixbuf($steps{off});
return;
}
$last_step = $_;
}
}
#------------------------------------------------------------------------------
sub create_logo_window {
my ($o) = @_;
return if $::logowidth == 0 || $::move;
mygtk2::may_destroy($o->{logo_window});
my $file = $o->{meta_class} eq 'firewall' ? "logo-mandrake-Firewall.png" : "logo-mandrake.png";
$o->{logo_window} =
gtknew('Window',
width => $::logowidth, height => $::logoheight,
widget_name => 'logo',
child => gtknew('Image', file => $file),
);
$o->{logo_window}->show;
}
#------------------------------------------------------------------------------
sub init_gtk {
my ($o) = @_;
symlink("/tmp/stage2/etc/$_", "/etc/$_") foreach qw(gtk-2.0 pango fonts);
if ($o->{vga16}) {
#- inactivate antialias in VGA16 because it makes fonts look worse
output('/tmp/fonts.conf',
q(
2005/05/22 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated simplified Chinese translation.
2005/05/22 Thierry Vignaud <tvignaud at mandrakesoft.com>
* Xconfig/card.pm: ensure that explanations go into /var/log/explanations
is standalone
mode (log::explanations() just calls log::l() at install time)
(libgl_config) only run ldconfig if needed (aka only if GL config was
altered)
* share/po/help-zh_CN.pot, share/po/bn.po, share/po/ms.po, share/po/sk.po,
share/po/gl.po, share/po/pt_BR.po, share/po/th.po, share/po/et.po,
share/po/ja.po, share/po/hr.po, share/po/be.po, share/po/pa_IN.po,
share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
share/po/pl.po, share/po/fi.po, share/po/he.po, share/po/da.po,
share/po/ca.po, share/po/ar.po, share/po/ltg.po, share/po/nb.po,
share/po/ky.po, share/po/uz.po, share/po/help-ru.pot, share/po/ro.po,
share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
share/po/ru.po, share/po/sc.po, share/po/br.po, share/po/sl.po,
share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/uk.po, share/po/help-de.pot, share/po/mn.po, share/po/am.po,
share/po/lt.po, share/po/cy.po, share/po/help-it.pot, share/po/tg.po,
share/po/bs.po, share/po/fur.po, share/po/mk.po, share/po/wa.po,
share/po/is.po, share/po/af.po, share/po/hi.po, share/po/az.po,
share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
share/po/nl.po, share/po/help-fr.pot, share/po/tl.po, share/po/de.po,
share/po/help-es.pot, share/po/eo.po, share/po/el.po, share/po/bg.po,
share/po/cs.po, share/po/uz@Latn.po: undo breakage
* drakxtools.spec: 10.3-0.16mdk
* interactive/newt.pm: fix canceling managment in text mode
* share/rpmsrate: us428control usx2yloader are for devices managed by
snd-usb-usx2y and not by snd-usb-audio
install synaptics related packages early in the install process
ensure sound utils got installed
install bluez-utils only if a bluetooth device is plugged
install joystick utils if a joystick is detected
install kradio qtradio with KDE and gnomeradio with GNOME if a radio
card is
present
do not install eroaster under KDE & GNOME since they've their own native
burner program
adiusbadsl has been replaced by eagle-usb in the pcitable in november
2004
automatically install wireless-tools if there's a wireless card
remove references to perl-GTK-Glade, perl-GTK-GLArea and perl-GTK-Gnome
since
they're obsoleted and not used by any core package
ispell packages are gone; let's replace them by aspell ones
2005/05/20 Funda Wang <fundawang at linux.net.cn>
* share/po/help-zh_CN.pot, share/po/bn.po, share/po/ms.po, share/po/sk.po,
share/po/gl.po, share/po/pt_BR.po, share/po/th.po, share/po/et.po,
share/po/ja.po, share/po/hr.po, install_steps_interactive.pm,
share/po/be.po, share/po/pa_IN.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, install_steps_newt.pm, share/po/da.po, share/po/ca.po,
share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
share/po/uz.po, share/po/help-ru.pot, share/po/ro.po, share/po/zh_TW.po,
share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/sc.po,
install_steps.pm, share/po/br.po, share/po/sl.po, share/po/nn.po,
share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/uk.po,
share/po/help-de.pot, share/po/mn.po, share/po/am.po, share/po/lt.po,
share/po/cy.po, share/po/help-it.pot, share/po/tg.po,
install_steps_gtk.pm, share/po/bs.po, share/po/fur.po, share/po/mk.po,
share/po/wa.po, share/po/is.po, share/po/af.po, share/po/hi.po,
share/po/az.po, bootloader.pm, share/po/pt.po, share/po/vi.po,
share/po/ta.po, share/po/fr.po, share/po/nl.po, share/po/help-fr.pot,
share/po/tl.po, share/po/de.po, share/po/help-es.pot, share/po/eo.po,
share/po/el.po, share/po/cs.po, share/po/bg.po, share/po/uz@Latn.po:
s/Mandrivalinux/Mandriva Linux/
2005/05/20 Pixel <pixel at mandrakesoft.com>
* share/list.xml, commands.pm, share/aliases, Makefile, 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)
* modules.pm: 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)
fix titi sux
* install_any.pm: propagate postInstall and postInstallNonRooted in new
auto_install.cfg.pl
2005/05/20 willysr
* share/po/id.po: Small update
Updated
2005/05/19 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated simplified Chinese translation
2005/05/19 Pixel <pixel at mandrakesoft.com>
* rescue/aliases, rescue/list.ia64, rescue/list, rescue/list.alpha,
rescue/list.ppc, rescue/list.xml, rescue/list.sparc, rescue/list.x86_64,
rescue/list.i386, rescue/make_rescue_img: use install-xml-file-list
* share/list.xml, share/aliases, list.sparc:
- insmod_ is now a symlink to insmod-25
- handle explictly insmod, modinfo and rmmod
* rescue/restore_ms_boot: rewrite using DrakX modules
* 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
* tools/simplify-drakx-modules: also remove modules ending with __END__
* Makefile: revert wrongly committed temporary change
- insmod_ is now a symlink to insmod-25
- handle explictly insmod, modinfo and rmmod
* tools/install-xml-file-list: many changes for use with rescue list
2005/05/19 Thierry Vignaud <tvignaud at mandrakesoft.com>
* network/adsl.pm (adsl_detect) simplify again
(adsl_detect) explain
(adsl_detect) detect all ADSL modems of each kind (though drakconnect
is able to configure only one...)
(adsl_detect) typo fix
(adsl_detect) detect more ADSL USB modems
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
share/po/fi.po, share/po/he.po, share/po/da.po, share/po/ca.po,
share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/sl.po,
share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/uk.po, share/po/mn.po, share/po/am.po, share/po/lt.po,
share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/af.po,
share/po/hi.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
share/po/ta.po, share/po/nl.po, share/po/tl.po, share/po/de.po,
share/po/eo.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
share/po/uz@Latn.po: update cataglog
* standalone/service_harddrake: uninstall DVB modules if needed
* harddrake/data.pm: really list ATM devices
fix DVB configurator
list tablets and touchscreens in their own category
fix detecting joysticks
add a DVB class
- simplify through modules::probe_category()
- ensure modules.pm is loaded since we used it for quite some time
list ATM, Bluetooth, WAN, USB audio devices in their own categories
split the old joystick category into gameport (aka joystick controllers)
and
joystick (real joysticks devices)
* standalone/harddrake2 (simple_read_rpmsrate) add support for HW_CAT
keyword that enable to match
a category from list_modules.pm
* share/rpmsrate: install proper softwares for DVB
kill another module list duplication thanks to the new HW_CAT keyword.
use the HW_CAT to stop copying (twice!) and syncing bluetooth driver
list from
list_modules.pm
* pkgs.pm (read_rpmsrate) add support for HW_CAT keyword that enable to
match
a category from list_modules.pm
* drakxtools.spec: real 10.3-0.15mdk
10.3-0.15mdk
main subpackage lacked update-menus calls since net_applet menu entry
was added
mandrakesoft => mandriva switch
10.3-0.14mdk
* share/po/br.po, share/po/fr.po: update
update cataglog
* mouse.pm (detect) handle quite's more tablets and touchscreens at
install time
2005/05/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
* any.pm (selectCountry) only speak about other countries if needed
* interactive/newt.pm: handle 'wizcancel'
2005/05/17 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/05/17 Olivier Blin <oblin at mandrakesoft.com>
* network/modem.pm: keep # and * characters in phone number (#16031)
* network/netconnect.pm: use iwpriv for WPA with rt2x00 drivers (they
don't plan to support wpa_supplicant)
* standalone/drakroam: really write waproamd config files
fix another potential security bug (#16020)
2005/05/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/drakroam: help testing
really fix permissions
fix perms on /etc/wlandetect.conf (#16020)
forward fix perms on /etc/wlandetect.conf (#16020)
* drakxtools.spec: 10.3-0.13mdk
2005/05/16 Olivier Blin <oblin at mandrakesoft.com>
* standalone/drakboot: add the "Create new theme" button back
allow to choose between "text only", "verbose" and "silent" bootsplash
modes
2005/05/16 Stew Benedict <sbenedict at mandrakesoft.com>
* standalone/drakbackup: Don't translate media types for config (#15437)
Don't translate media types for config (#15437)
2005/05/16 Thierry Vignaud <tvignaud at mandrakesoft.com>
* mygtk2.pm (_text_insert) append option was ignored when using simplified
API
* drakxtools.spec: 10.3-0.12mdk
2005/05/13 Olivier Blin <oblin at mandrakesoft.com>
* network/network.pm: DVB support
* network/netconnect.pm: DVB support
hide DVB for now
2005/05/13 Pixel <pixel at mandrakesoft.com>
* c/stuff.xs.pl: add commented line to help debugging pci_probe
* share/list.xml, tools/install-xml-file-list: allow makefile like
variables
2005/05/13 Thierry Vignaud <tvignaud at mandrakesoft.com>
* detect_devices.pm (getUPS) do not detect ms joystick as UPS (#15930)
2005/05/12 Olivier Blin <oblin at mandrakesoft.com>
* network/netconnect.pm: reorder drakconnect first screen (to please our
flowered bearded boss)
* standalone/service_harddrake: fix PCMCIA controller reconfiguration
(#15742)
fix PCMCIA controller reconfiguration (#15742)
2005/05/12 Pixel <pixel at mandrakesoft.com>
* any.pm: default to "Custom" when group fileshare exists (bugzilla
#15917)
2005/05/12 Till Kamppeter <till at mandrakesoft.com>
* install_steps.pm, share/rpmsrate:
- Gimp-Print was renamed to Gutenprint, adapted printerdrake/DrakX
appropriately.
* scanner.pm, standalone/printerdrake:
- Removed some remaining "Mandrake"s in printerdrake and scannerdrake.
* printer/printerdrake.pm:
- Let Gutenprint GIMP plug-in be installed by printerdrake when GIMP
is installed.
* printer/data.pm:
- Let Gutenprint GIMP plug-in be installed by printerdrake when GIMP
is installed.
- Gimp-Print was renamed to Gutenprint, adapted printerdrake/DrakX
appropriately.
2005/05/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.3-0.11mdk
one more fix in 10.2-24.102.2mdk
10.2-24.102.2mdk
* standalone/harddrake2:
- clean embedding stuff
- center wait message on parent
* detect_devices.pm (getUPS) fix detecting Wingman gamepad as UPS (#15750)
(probeSerialDevices) really fix serial controllers detection (#15457)
(probeSerialDevices) fix serial controllers detection (#15457)
(probeSerialDevices) forward fix for serial controllers detection
(#15457)
* harddrake/data.pm: forward fix SATA & hw RAID detection by detecting
them pior to PATA detection
* share/po/br.po: update
2005/05/11 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/pt.po, share/po/vi.po, share/po/sv.po: updated Swedish and
Vietnamese file;
corrected references to old name in Portuguese file
2005/05/11 Stew Benedict <sbenedict at mandrakesoft.com>
* 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/10 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/05/10 Olivier Blin <oblin at mandrakesoft.com>
* standalone/draksplash2: move rectangle2xywh(), distance(), farthest()
and nearest() from draksplash2 to bootsplash module, create
xywh2rectangle()
* ugtk2.pm: shrink real_window
* bootsplash.pm: really get default vga mode
move rectangle2xywh(), distance(), farthest() and nearest() from
draksplash2 to bootsplash module, create xywh2rectangle()
* standalone/draksplash: shrink preview window on resolution change
handle both silent and verbose images
allow to modify progress bar and console box by dragging the mouse
2005/05/10 Pixel <pixel at mandrakesoft.com>
* share/list.i386, share/list.sparc, lang.pm, share/list.ia64,
tools/install-xml-file-list, share/list.alpha, share/list.xml,
share/list, share/list.x86_64, Makefile, share/list.ppc: create
install-xml-file-list and use it to replace share/list and
share/list.ARCH with share/list.xml
* rescue/make_rescue_img:
- handle multiple data dirs
- choose a free data dir if the given one already exists
fix (for list_modules.pm)
* Xconfig/monitor.pm (probe_using_X): add missing chomp_
* rescue/make_partimage_save_rest_all, rescue/partimage_whole_disk:
- handle multiple data dirs
- choose a free data dir if the given one already exists
2005/05/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
* lang.pm: add support for iiimf (UTUMI Hirosi <utuhiro78@yahoo.co.jp>)
* drakxtools.spec: real 10.3-0.10mdk
10.3-0.10mdk
* share/rpmsrate: install cpqarrayd on Compaq Smart Array controllers
2005/05/09 Funda Wang <fundawang at linux.net.cn>
* share/rpmsrate, lang.pm: 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 Olivier Blin <oblin at mandrakesoft.com>
* standalone/draksplash: remove spurious characters
use a separate window for image previews, use a notebook to split
silent/verbose/console settings
fix layout, update scale factors when the theme name is changed too
use default values for scale settings and draw a cross inside the text
box
* standalone/drakboot: use bootsplash::get_framebuffer_resolution
* bootsplash.pm: use default jpeg image path in config file for both
silent and verbose images
write bootsplash v3 configuration files (progress bar still missing)
force the exact image size when writing a theme
add get_framebuffer_resolution and create_path
fix typos
2005/05/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.3-0.9mdk
10.2-24.102.1mdk
* standalone/draksplash: better use gtkpack__() rather than gtkadd() when
adding multiple widgets
2005/05/08 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation
2005/05/07 Tibor Pittich <Tibor.Pittich at phuture.sk>
* share/po/sk.po: another small typo fixed in slovak translation
updated slovak translation
2005/05/06 Pixel <pixel at mandrakesoft.com>
* mdk-stage1/Makefile.common, mdk-stage1/Makefile,
mdk-stage1/mar/Makefile: use installed dietlibc, not our forked cvs
version
2005/05/06 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* mdk-stage1/pcmcia_/Makefile, mdk-stage1/config-stage1.h,
mdk-stage1/newt/newt.c, mdk-stage1/newt/button.c,
mdk-stage1/rp-pppoe/src/common.c, mdk-stage1/newt/entry.c,
mdk-stage1/dhcp.c, mdk-stage1/newt/checkbox.c, mdk-stage1/network.c,
mdk-stage1/directory.c, mdk-stage1/ppp/pppd/Makefile: 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
* install2.pm: Add missing brace
* docs/HACKING: Document that dietlibc-devel is now required to build gi
* resize_fat/c_rewritten.xs: gcc 4.0 was choking on lvalues of
unpredictable type.
* mdk-stage1/Makefile: Fix path of librpc.a now that we use the system's
dietlibc
2005/05/05 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/br.po: small typo error
2005/05/05 Stew Benedict <sbenedict at mandrakesoft.com>
* 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/04 Olivier Blin <oblin at mandrakesoft.com>
* standalone/draksplash: preview theme in real time, cleanups
* bootsplash.pm: fix theme creation
* network/netconnect.pm: remove another useless step
ask wireless settings before boot protocol selection
remove useless warning in install, we never override configuration
(#10827)
2005/05/04 Pixel <pixel at mandrakesoft.com>
* rescue/guessmounts: don't try to mount ntfs
* 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)
* rescue/partimage_whole_disk: run_program needs a proper HOME
2005/05/04 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* rescue/make_rescue_img: Sometimes this tries to copy a directory
2005/05/03 mareklaane
* share/po/et.po: Estonian translation updated.
2005/05/03 Olivier Blin <oblin at mandrakesoft.com>
* install2.pm: remove obsolete code (most of these steps are anyway
skipped in upgrade mode)
* tools/patch_pcmcia_config.pl: ds has been renamed pcmcia in 2.6 kernels
* standalone/drakboot, bootsplash.pm: new theme creation functions
* standalone/draksplash: perl_checker fixes, use bool2yesno
remove ugly dec2hex
2005/05/03 Reinout van Schouwen <reinout at cs.vu.nl>
* share/po/nl.po: Updated Dutch translation
by Reinout van Schouwen <reinout@cs.vu.nl>
2005/05/03 Stew Benedict <sbenedict at mandrakesoft.com>
* 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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/drakboot: do not garbage the console on 'wizcancel'
2005/05/02 Olivier Blin <oblin at mandrakesoft.com>
* detect_devices.pm, network/ethernet.pm, network/ndiswrapper.pm: fix USB
devices detection for ndiswrapper
2005/05/02 Pixel <pixel at mandrakesoft.com>
* diskdrake/interactive.pm: fix displaying "Number of logical extents: %d"
- allow resizing ext3 LV if not mounted
- allow resizing reiserfs LV even if not mounted
2005/05/02 Stew Benedict <sbenedict at mandrakesoft.com>
* standalone/drakTermServ: Update for new etherboot
2005/05/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/localedrake: add comment
* standalone/drakperm, standalone/harddrake2, standalone/printerdrake,
standalone/logdrake, standalone/draksec, standalone/drakfloppy,
standalone/drakfont, standalone/drakups: embedding cleanups resulting in
reusing main window icon in sub dialogs
* harddrake/data.pm: fix SATA & hw RAID detection by detecting them pior
to PATA detection
* standalone/drakboot: fix boot style layout
embedding cleanups resulting in reusing main window icon in sub dialogs
* drakxtools.spec: 10.3-0.8mdk
* share/po/br.po: update
2005/05/01 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/04/30 José JORGE <jjorge at free.fr>
* share/po/pt.po: jorge
melo + jorge
2005/04/29 Frederic Crozat <fcrozat at mandrakesoft.com>
* share/rpmsrate: Install epiphany-extensions when installing epiphany
2005/04/29 huftis
* share/po/nn.po: Translated more strings.
2005/04/29 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/04/29 Keld Jørn Simonsen <keld at dkuug.dk>
* share/po/da.po: updates
indexhtml/po/da.po soft/urpmi/po/da.po
gi/perl-install/share/po/da.po
2005/04/29 Olivier Blin <oblin at mandrakesoft.com>
* standalone/drakboot: typo/perl_checker fixes
use new bootsplash module, really split autologin and bootsplash stuff
kill unneeded hash
perl_checker fixes
* mdk-stage1/pci-resource/update-pci-ids.pl: detect tokenring and wireless
cards in stage1
* network/tools.pm, network/test.pm: use www.mandriva.com to test
connection
* standalone/drakroam: exit and warn when no wireless interface is found
(#15244)
do not write blank ESSID
* bootsplash.pm: initial bootsplash module
2005/04/29 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.3-0.7mdk
2005/04/28 Olivier Blin <oblin at mandrakesoft.com>
* network/adsl.pm: configure pppoe connections in a ppp peer file
2005/04/28 Pixel <pixel at mandrakesoft.com>
* Xconfig/xfree.pm: if one prefer using "Modes" instead of "Virtual", keep
it as is
2005/04/27 Funda Wang <fundawang at linux.net.cn>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
share/po/fi.po, share/po/he.po, network/drakfirewall.pm, share/po/ca.po,
share/po/da.po, share/po/ar.po, share/po/ltg.po, share/po/nb.po,
share/po/ky.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/sc.po,
share/po/br.po, share/po/sl.po, share/po/nn.po, share/po/tr.po,
share/po/mt.po, share/po/ga.po, share/po/uk.po, share/po/mn.po,
share/po/am.po, share/po/lt.po, share/po/cy.po, share/po/tg.po,
share/po/bs.po, share/po/fur.po, share/po/mk.po, share/po/wa.po,
share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
share/po/pt.po, share/po/vi.po, share/po/fr.po, share/po/ta.po,
share/po/nl.po, share/po/de.po, share/po/tl.po, share/po/eo.po,
share/po/bg.po, share/po/cs.po, share/po/el.po, share/po/uz@Latn.po:
Maybe the last Mandrake->Mandriva replacement.
2005/04/27 Olivier Blin <oblin at mandrakesoft.com>
* network/netconnect.pm: display VPI/VCI values in decimal
update ATM_ADDR after with VPI/VCI values
* network/adsl.pm: reindent
don't write /etc/ppp/options anymore, adjust options in peer files
* share/rpmsrate: pptp-adsl is obsolete, prefer pptp-linux
2005/04/27 Pixel <pixel at mandrakesoft.com>
* rescue/partimage_whole_disk: after setting geometry H and S, we must
re-compute C
ensure we use the same geometry as used when saving
* common.pm: fix mandrake_release() when called with a prefix
allow using mandrake_release() with a prefix
* rescue/install_bootloader: use module bootloader.pm to handle more
bootloaders (esp. grub)
* 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()
create install_raw_grub() and install_raw_lilo()
2005/04/26 Olivier Blin <oblin at mandrakesoft.com>
* mdk-stage1/network.c: always initialize proxy settings
fix typo
* mdk-stage1/adsl.c: detect IP address from DSL connection
* mdk-stage1/dns.c: fix dns resolution for DSL connections
enhance logging again, re-indent
fix typo (me sux)
enhance logging
2005/04/26 Pixel <pixel at mandrakesoft.com>
* mygtk2.pm: don't use ->set_uposition anymore, use ->move instead (as
suggested on gtk-perl mailing list)
* Makefile: remove obsolete change (C_RPM and C_DRAKX are not used in
c/stuff anymore)
start simplifying "make stage2"
2005/04/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
* detect_devices.pm (getUPS) do not detect IR devices as UPSes (#15495)
* share/po/br.po: add missing tags
update
2005/04/25 Pablo Saratxaga <pablo at mandrakesoft.com>
* standalone/drakxtv: corrected url
* share/po/cy.po: updated Welsh file
* share/po/it.po, share/po/ms.po, share/po/es.po: updated Italian and
Spanish files
2005/04/25 Pixel <pixel at mandrakesoft.com>
* rescue/guessmounts: rewrite using gi/perl-install modules
* bootloader.pm: using c::rpmvercmp is cleaner
fix comparing kernel version greater than 6.8
2005/04/25 sharuzzaman
* share/po/ms.po: Updated Malay translation
2005/04/25 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/drakfont: bump copyrigth notice
list myself
damien is no more working for us
* drakxtools.spec: add bug reference in 10.3-0.6mdk's changelog
10.3-0.6mdk
* share/po/br.po: update
sync with copyright bumping
* standalone/drakfirewall, standalone/logdrake, standalone/drakpxe,
standalone/finish-install.xsetup, standalone/drakvpn,
standalone/drakboot, standalone/drakTermServ, standalone/net_monitor,
standalone/drakbackup, standalone/listsupportedprinters,
standalone/printerdrake, standalone/fileshareset, standalone/drakedm,
standalone/drakroam, standalone/drakconnect, standalone/drakhelp,
standalone/XFdrake, standalone/drakbug, standalone/autosetupprintqueues,
standalone/drakupdate_fstab, standalone/draksound, standalone/drakxtv,
standalone/draksec, standalone/drakautoinst, standalone/drakproxy,
standalone/diskdrake, standalone/drakfloppy, standalone/drakgw,
standalone/scannerdrake: bump copyrigth notice
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/sl.po,
share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/uk.po, share/po/mn.po, share/po/am.po, share/po/lt.po,
share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
share/po/el.po, share/po/uz@Latn.po: sync with copyright bumping
2005/04/24 Olivier Blin <oblin at mandrakesoft.com>
* network/netconnect.pm: handle errors in wireless packages installation,
simplify
allow to disable WPA even if no key is used
fix WPA key
* network/wireless.pm: handle errors in wireless packages installation,
simplify
fix WPA key
2005/04/23 Pablo Saratxaga <pablo at mandrakesoft.com>
* standalone/harddrake2, standalone/drakfont: mandrakesoft.com ->
mandriva.com
* share/po/ms.po, share/po/pt_BR.po, share/po/th.po, share/po/be.po,
share/po/pa_IN.po, share/po/ko.po, share/po/sr.po, share/po/pl.po,
share/po/ca.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/nn.po, share/po/tr.po,
share/po/ga.po, share/po/am.po, share/po/tg.po, share/po/fur.po,
share/po/ta.po, share/po/fr.po, share/po/tl.po, share/po/uz@Latn.po:
various Mandrake -> Mandriva changes
updated po files
* standalone/draksound: s/www.linux-mandrake.com/www.mandrivalinux.com/
* share/po/zh_CN.po: more Mandrake -> Mandriva changes
various Mandrake -> Mandriva changes
* standalone.pm: mandrakelinux -> Mandriva Linux
* share/advertising/25.pl, standalone/logdrake, share/advertising/02.pl,
standalone/net_monitor, share/advertising/27.pl,
network/drakfirewall.pm, share/advertising/08.pl, standalone/drakedm,
share/advertising/30.pl, share/advertising/10.pl,
share/advertising/18.pl, standalone/drakconnect, standalone/drakhelp,
share/advertising/01.pl, standalone/drakbug, network/adsl.pm,
printer/printerdrake.pm, help.pm, share/advertising/29.pl,
share/advertising/07.pl, share/advertising/09.pl,
share/advertising/04.pl, share/advertising/28.pl,
install_interactive.pm, share/advertising/26.pl, any.pm,
share/advertising/06.pl, share/advertising/03.pl, standalone/net_applet,
share/advertising/11.pl, share/advertising/05.pl,
standalone/scannerdrake: s/Mandrivalinux/Mandriva Linux/
* install_messages.pm: s/www.mandrakelinux.com/www.mandrivalinux.com/
s/Mandrivalinux/Mandriva Linux/
* share/po/bn.po, share/po/gl.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/fi.po, share/po/he.po, share/po/da.po,
share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/it.po,
share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
share/po/fa.po, share/po/id.po, share/po/br.po, share/po/mt.po,
share/po/mn.po, share/po/lt.po, share/po/cy.po, share/po/bs.po,
share/po/mk.po, share/po/is.po, share/po/af.po, share/po/hi.po,
share/po/az.po, share/po/nl.po, share/po/de.po, share/po/eo.po,
share/po/bg.po, share/po/cs.po, share/po/el.po: more Mandrake ->
Mandriva changes
various Mandrake -> Mandriva changes
updated po files
* share/po/sk.po, share/po/DrakX.pot, share/po/sv.po, share/po/zh_TW.po,
share/po/sc.po, share/po/ru.po, share/po/sl.po, share/po/uk.po,
share/po/wa.po, share/po/pt.po, share/po/vi.po: various Mandrake ->
Mandriva changes
2005/04/23 willysr
* share/po/id.po: Updated
2005/04/22 willysr
* share/po/id.po: Updated
2005/04/21 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/04/21 Olivier Blin <oblin at mandrakesoft.com>
* mdk-stage1/wireless.c: set SSID after all other settings, improve text,
fix cast
* standalone/drakroam: fix Signal Quality parsing (and re-indent)
* mdk-stage1/dhcp.c: support DHCP over Wireless, Token Ring (great),
Firewire, you name it
borrow some comments from pump
* mdk-stage1/probing.c: use /proc/net/dev to detect network interfaces,
instead of testing a limited set of interface names
2005/04/21 Pixel <pixel at mandrakesoft.com>
* rescue/drvinst: use detect_devices and simplify
* Makefile: use simplify-drakx-modules
* rescue/make_rescue_img: use get-needed-drakx-modules to handle perl
scripts using DrakX modules
* rescue/list.i386: dmidecode is useful
* tools/simplify-drakx-modules, tools/get-needed-drakx-modules: add some
scripts used in perl-install/Makefile and rescue/make_rescue_img
* common.pm, install_any.pm: create common::release_file() and use it
* fs/type.pm: perl_checker fix
create true_local_fs_types() out of isTrueLocalFS()
* log.pm: ensure the log is flushed ASAP when using a local file
2005/04/21 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/br.po: switch from MandrakeSoft to Mandriva
update
update
update
update string for new drakroam
* share/advertising/25.pl, install_steps_interactive.pm,
standalone/finish-install.xsetup, share/advertising/27.pl,
share/po/help-ru.pot, share/advertising/08.pl, share/advertising/10.pl,
share/advertising/18.pl, share/compssUsers.pl, network/adsl.pm, help.pm,
install_steps.pm, share/advertising/29.pl, share/advertising/07.pl,
share/advertising/09.pl, share/advertising/13-b.pl,
share/po/help-de.pot, share/advertising/04.pl, crypto.pm,
network/test.pm, install_interactive.pm, share/advertising/26.pl,
standalone/net_applet, bootloader.pm, share/advertising/05.pl,
share/po/help-fr.pot, share/po/help-es.pot, share/po/help-zh_CN.pot,
share/advertising/02.pl, network/drakfirewall.pm, install_steps_newt.pm,
share/advertising/30.pl, share/advertising/01.pl,
share/advertising/28.pl, share/po/help-it.pot, any.pm,
install_steps_gtk.pm, share/advertising/03.pl, share/advertising/06.pl,
share/advertising/13-a.pl, install_messages.pm,
Xconfig/resolution_and_depth.pm, share/advertising/11.pl: switch from
MandrakeSoft to Mandriva
* standalone/scannerdrake: switch from MandrakeSoft to Mandriva in
scannerdrake & printerdrake
switch from MandrakeSoft to Mandriva in copyright notices
* standalone/drakbackup: switch from MandrakeSoft to Mandriva in copyright
notices
improve layout
(filedialog_generic) switch to gtk+-2.6's new file selector
* standalone/drakboot, standalone.pm, standalone/drakedm,
standalone/drakhelp, standalone/logdrake, standalone/net_monitor,
standalone/drakconnect, standalone/drakbug: switch from MandrakeSoft to
Mandriva
switch from MandrakeSoft to Mandriva in copyright notices
* standalone/drakfirewall, standalone/drakpxe, standalone/drakvpn,
standalone/drakTermServ, standalone/listsupportedprinters,
standalone/printerdrake, standalone/fileshareset, standalone/XFdrake,
standalone/drakupdate_fstab, scanner.pm, standalone/drakproxy,
standalone/drakfloppy, mouse.pm, standalone/autosetupprintqueues,
standalone/draksound, standalone/drakxtv, standalone/drakautoinst,
standalone/diskdrake, standalone/drakgw: switch from MandrakeSoft to
Mandriva in copyright notices
* printer/printerdrake.pm: switch from MandrakeSoft to Mandriva
switch from MandrakeSoft to Mandriva in scannerdrake & printerdrake
* standalone/draksplash: switch to gtk+-2.6's new file selector
* standalone/drakperm: perl_checker cleanups
(row_setting_dialog) set dialog's title (usability bug)
* share/po/af.po: fix doble messages
switch from MandrakeSoft to Mandriva
update
sync LAN string
update string for new drakroam
* share/po/Makefile: remove useless merge2 rule
* share/po/ja.po, share/po/sv.po, share/po/fi.po, share/po/ca.po,
share/po/eu.po, share/po/id.po, share/po/mt.po, share/po/uk.po,
share/po/tg.po, share/po/pt.po, share/po/vi.po, share/po/tl.po,
share/po/gl.po, share/po/sk.po, share/po/pl.po, share/po/da.po,
share/po/ar.po, share/po/nb.po, share/po/it.po, share/po/ru.po,
share/po/nl.po: switch from MandrakeSoft to Mandriva
update
sync LAN string
update string for new drakroam
* share/po/fr.po, share/po/cy.po: switch from MandrakeSoft to Mandriva
update
update
sync LAN string
update string for new drakroam
* standalone/drakfont: switch from MandrakeSoft to Mandriva in copyright
notices
inline useless create_fontsel()
* network/netconnect.pm: switch from MandrakeSoft to Mandriva
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....)
* drakxtools.spec: 10.3-0.5mdk
10.3-0.4mdk
10.3-0.3mdk
* standalone/drakroam (ConnectNow) simplify
(ConnectNow) simplify
(UpdateStatus) improve layout
* share/po/ms.po, share/po/pt_BR.po, share/po/et.po, share/po/sr.po,
share/po/ltg.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
share/po/es.po, share/po/lv.po, share/po/ga.po, share/po/lt.po,
share/po/mk.po, share/po/fur.po, share/po/de.po, share/po/bg.po,
share/po/el.po, share/po/uz@Latn.po, share/po/bn.po, share/po/th.po,
share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/DrakX.pot,
share/po/ko.po, share/po/he.po, share/po/ky.po, share/po/zh_CN.po,
share/po/sq.po, share/po/sr@Latn.po, share/po/hu.po, share/po/fa.po,
share/po/sc.po, share/po/sl.po, share/po/nn.po, share/po/tr.po,
share/po/mn.po, share/po/am.po, share/po/bs.po, share/po/wa.po,
share/po/is.po, share/po/hi.po, share/po/az.po, share/po/ta.po,
share/po/eo.po, share/po/cs.po: switch from MandrakeSoft to Mandriva
update
update string for new drakroam
2005/04/20 Olivier Blin <oblin at mandrakesoft.com>
* network/ethernet.pm: we do want to use sysfs if ethtool fails
* mdk-stage1/Makefile, mdk-stage1/network.c, mdk-stage1/wireless.h:
initial wireless support (needs ESSID, and optionally a WEP key)
* network/netconnect.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
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)
* mdk-stage1/wireless.c: fix hex key parsing
initial wireless support (needs ESSID, and optionally a WEP key)
* install_any.pm: do not care about the ISO volume name if it doesn't end
in -Disc\d+
handle DVD ISO images too (so that they get added installed for urpmi)
* network/wireless.pm, network/ndiswrapper.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 Pixel <pixel at mandrakesoft.com>
* rescue/make_partimage_save_rest_all: add a check
2005/04/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/drakfont (font_choice) filter file list so that only fonts
are displayed
switch to gtk+-2.6's new file selector
* network/ndiswrapper.pm (setup_device) move comment where it's
appropriate
* drakxtools.spec: 10.3-0.2mdk
2005/04/19 Keld Jørn Simonsen <keld at dkuug.dk>
* 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 Olivier Blin <oblin at mandrakesoft.com>
* network/ethernet.pm: fix typo
fix Titi sux (we do want to use sysfs if ethtool fails)
do not write zeroed MAC addresses in iftab, it confuses ifrename
* standalone/drakroam: fix SSID listing
fix SSID listing
* network/tools.pm: move wireless stuff in wireless.pm
do not crash if modprobe fails
do not show empty ndiswrapper devices list
* mouse.pm: fix simplification ..
simplify again (Pixel)
kill unused variable, simplify
using same mouse for alternate_install should be useless
remove it for xbox controller, thus making this option obsolete
fix me sucks
always set synaptics touchpad as secondary and don't list them in
mousedrake
* network/netconnect.pm: simplify
fix ancient bug (Managed should be the default wireless mode, not
Secondary) and simplify
really use given encryption key
network::wireless is needed for wireless configuration
fix typo
improve ndiswrapper driver configuration (allow to select driver, device
and many errors handling)
fix missing step
move wireless stuff in wireless.pm
do not show empty ndiswrapper devices list
unload ndiswrapper first so that the newly installed .inf files will be
read
* network/wireless.pm: improve ndiswrapper driver configuration (allow to
select driver, device and many errors handling)
convert_key_for_wpa_supplicant is now in network::wireless
move wireless stuff in wireless.pm
* install_steps_gtk.pm: using same mouse for alternate_install should be
useless
remove it for xbox controller, thus making this option obsolete
* network/network.pm: move wireless stuff in wireless.pm
2005/04/19 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/ky.po, share/po/de.po: updated Kirghiz file
2005/04/19 Pixel <pixel at mandrakesoft.com>
* rescue/partimage_whole_disk:
- ".lst" makes the file hidden, use "lst" instead
- default timeout is much too short
* rescue/install_bootloader, rescue/guessmounts, rescue/drvinst: mandriva
switch
* Xconfig/resolution_and_depth.pm: suggest 1280x1024 instead of 1280x960
which causes pbs
* rescue/restore_ms_boot: update copyright
* rescue/make_partimage_save_rest_all:
- allow specifying something else than /data/box
- acpi=ht by default
* diskdrake/interactive.pm: fix comment
* rescue/rescue-doc: switch to mandriva
* rescue/lsparts: remove redundancy using gi/perl-install pms
mandriva switch
2005/04/19 sharuzzaman
* share/po/ms.po: Updated Malay translation
2005/04/18 Olivier Blin <oblin at mandrakesoft.com>
* standalone/net_applet: increase network check timeout to lower the load
remove useless assignments
* network/netconnect.pm: clean includes
merge wireless steps and move advanced settings in advanced mode
(#15501)
configure wpa driver in drakconnect, wpa_supplicant init script is
dropped
* mdk-stage1/config-stage1.h, mdk-stage1/network.c: move defines
* network/tools.pm: replace to_bool(grep) call with any
* mouse.pm: preselect synaptics touchpad if no external mouse is present
use detect_devices::getSynapticsTouchpads() to detect touchpads
always configure an universal mouse so that USB mices can be hotplugged
* network/isdn.pm: remove useless includes
* network/shorewall.pm: fix automatic net interface detection
fix automatic net interface detection
* network/network.pm: configure wpa driver in drakconnect, wpa_supplicant
init script is dropped
* detect_devices.pm: perl_checker fix
space fix
add getSynapticsTouchpads()
* modules.pm: append evdev in modprobe.preload if a touchpad is detected
use better laptop detection now that dmidecode is used
2005/04/18 Pablo Saratxaga <pablo at mandrakesoft.com>
* keyboard.pm: added/modified various keyboards on the list (for next
update of xorg-x11)
* share/po/be.po, share/po/bn.po, share/po/ms.po, share/po/ko.po,
share/po/ro.po, share/po/pl.po, share/po/gl.po, share/po/he.po,
share/po/cy.po, share/po/af.po, share/po/et.po, share/po/eo.po,
share/po/hr.po, share/po/el.po, share/po/sq.po: updated Welsh file;
fixed some menu errors
2005/04/18 rstandtke
* share/po/de.po: some fixes
2005/04/16 huftis
* share/po/nn.po: Translated a few strings.
2005/04/15 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/04/15 Olivier Blin <oblin at mandrakesoft.com>
* mdk-stage1/config-stage1.h: new domain name
* mdk-stage1/thirdparty.c: really try to list partitions on USB keys or
hard disks
* mdk-stage1/directory.c: enlarge directory list
2005/04/15 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_steps_gtk.pm, install_any.pm: Change the name of the directory
where the rpms are copied
* crypto.pm: Update the name of the update media added by the installer
2005/04/15 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.3-0.1mdk
* standalone/harddrake2: perl_checker cleanups
2005/04/14 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/04/14 Olivier Blin <oblin at mandrakesoft.com>
* network/netconnect.pm: allow to modify METRIC settings in the wizard
2005/04/14 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* pkgs.pm, install_any.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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: fix typo in drakxservices' description
* share/po/br.po: update
update
2005/04/14 Youcef Rabah Rahal <rahal at arabeyes.org>
* share/po/ar.po: sync'ed with Arabeyes CVS
2005/04/13 Olivier Blin <oblin at mandrakesoft.com>
* standalone/drakconnect: use get_interface_type() to decide if the wifi
settings page should be displayed
* network/tools.pm: consider a device as wifi even if it isn't plugged
(useful in manage wizard)
2005/04/13 Pixel <pixel at mandrakesoft.com>
* partition_table/raw.pm: create default_type() out of zero_MBR()
* rescue/make_partimage_save_rest_all: fix typo
* rescue/make_rescue_img, rescue/partimage_whole_disk: we now use script
partimage_whole_disk around partimage
* resize_fat/any.pm: remove old debug code
* log.pm: cleanup and allow openLog() to force the log file
* rescue/list.i386: add ntfsresize
* rescue/tree/etc/rc.sysinit: mount /sys
2005/04/13 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Remount CD1 if we cancel insertion of a supplementary CD
Eject CD-Rom when installation is finished
* install_steps.pm: Eject CD-Rom when installation is finished
2005/04/13 Thierry Vignaud <tvignaud at mandrakesoft.com>
* any.pm (autologin) make autologin choice more user friendly (#4304)
* drakxtools.spec: fix 10.2-16mdk's changelog
2005/04/12 Olivier Blin <oblin at mandrakesoft.com>
* network/netconnect.pm, detect_devices.pm, network/tools.pm,
standalone/drakconnect: use sysfs as fallback to detect wireless
interfaces (rt2x00/prism2_*)
2005/04/12 Pablo Saratxaga <pablo at mandrakesoft.com>
* keyboard.pm: put text back
enabled kirghiz console kbd
* share/po/br.po: removing and re-adding file
removing and re-adding file
updated po file
2005/04/12 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* network/tools.pm: Fix running ifup/ifdown not in chroot
Need to specify the full path of ifup/ifdown when a shell isn't used to
run them
2005/04/12 Stew Benedict <sbenedict at mandrakesoft.com>
* standalone/drakbackup: fix direct-to-tape backup/restore issues (#15293)
2005/04/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.2-24mdk
* share/po/br.po: update
2005/04/12 Warly <warly at mandrakesoft.com>
* share/rpmsrate: Remove the duplicates for a320raid
Workarround for clean-rpmsrate regexp pb
2005/04/12 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* network/tools.pm: Fix running ifup/ifdown not in chroot
Need to specify the full path of ifup/ifdown when a shell isn't used to
run them
2005/04/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.2-24mdk
2005/04/12 Warly <warly at mandrakesoft.com>
* share/rpmsrate: Remove the duplicates for a320raid
Workarround for clean-rpmsrate regexp pb
2005/04/12 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* network/tools.pm: Fix running ifup/ifdown not in chroot
Need to specify the full path of ifup/ifdown when a shell isn't used to
run them
* 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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.2-24mdk
* share/po/br.po: update
2005/04/12 Warly <warly at mandrakesoft.com>
* share/rpmsrate: Remove the duplicates for a320raid
Workarround for clean-rpmsrate regexp pb
2005/04/11 Olivier Blin <oblin at mandrakesoft.com>
* network/netconnect.pm: fix error reporting for ndiswrapper package
installation (#15373)
handle spaces in ndiswrapper drivers path
* standalone/drakroam: handle ESSID with spaces (#15352)
2005/04/11 Pixel <pixel at mandrakesoft.com>
* do_pkgs.pm: have a valid return value in
->ensure_is_installed_if_available
* 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)
* pkgs.pm: the standard kernel is bigmem compliant, no need to install
kernel-smp for this (bugzilla #15353)
2005/04/11 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* crypto.pm: Change the URL of the mirrorsfull.list for installation of
the updates
2005/04/11 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.2-23mdk
2005/04/10 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/04/08 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/04/08 Olivier Blin <oblin at mandrakesoft.com>
* harddrake/data.pm: with harddrake crash with USB/PCI DSL modems (#15034)
2005/04/08 Pixel <pixel at mandrakesoft.com>
* 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
1152x864 needs more modelines than the poor 1152x864@75Hz builtin xorg
(bugzilla #11698)
2005/04/08 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Supplementary cd-roms weren't marked as supplementary.
Fix this.
Don't copy rpms that come from any sort of supplementary media.
More heuristics to figure out the CD / DVD number from its name, used
for the copy of media to the local HD.
* pkgs.pm: When sorting CDs, put supplementary CDs at the end
2005/04/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.2-22mdk
2005/04/08 Warly <warly at mandrakesoft.com>
* share/logo-mandrake.png: new install module
2005/04/08 Olivier Blin <oblin at mandrakesoft.com>
* harddrake/data.pm: with harddrake crash with USB/PCI DSL modems (#15034)
* network/netconnect.pm: add some comments for post 10.2
2005/04/08 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
* share/po/nb.po: updates from Eskild Hustvedt:)
2005/04/08 Pixel <pixel at mandrakesoft.com>
* install2.pm: do the edid probe before launching X server (the way it was
already done for i810fb)
* any.pm: XF86Config-4 doesn't exist anymore, no need logging it
* 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
1152x864 needs more modelines than the poor 1152x864@75Hz builtin xorg
(bugzilla #11698)
2005/04/08 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Don't copy rpms that come from any sort of supplementary
media.
More heuristics to figure out the CD / DVD number from its name, used
for the copy of media to the local HD.
* pkgs.pm: When sorting CDs, put supplementary CDs at the end
2005/04/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.2-22mdk
2005/04/08 Warly <warly at mandrakesoft.com>
* share/logo-mandrake.png: new install module
2005/04/08 Olivier Blin <oblin at mandrakesoft.com>
* network/netconnect.pm: add some comments for post 10.2
2005/04/08 Pixel <pixel at mandrakesoft.com>
* install2.pm: do the edid probe before launching X server (the way it was
already done for i810fb)
* any.pm: XF86Config-4 doesn't exist anymore, no need logging it
2005/04/07 Olivier Blin <oblin at mandrakesoft.com>
* mdk-stage1/probing.h, mdk-stage1/thirdparty.c, mdk-stage1/probing.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
* network/netconnect.pm: always restart slmodem, even if it was already
installed
2005/04/07 Pixel <pixel at mandrakesoft.com>
* install_steps.pm, install_steps_interactive.pm: handle third party
modules from various devices
(at least floppy is still working :)
2005/04/07 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.2-21mdk
2005/04/07 Olivier Blin <oblin at mandrakesoft.com>
* standalone/drakroam: add some comment
hide roaming frame by default, not tested
don't truncate default gateway (#15247)
* standalone/net_applet: fix refresh (forget erased settings)
* mdk-stage1/thirdparty.h, mdk-stage1/thirdparty.c: export
THIRDPARTY_DEVICE and THIRDPARTY_DIR for stage2
* network/netconnect.pm: always restart slmodem, even if it was already
installed
cosmetics
create correct /dev/modem for HCF modems
use correct package name for HCF modems
fix h[cs]f fix
* network/tools.pm: net_applet: really allow users to start connection
without having to
type the root password
run ifup/ifdown with run_program::raw and detach, so that pppd doesn't
complain about invalid tty
2005/04/07 Pablo Saratxaga <pablo at mandrakesoft.com>
* 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 Pixel <pixel at mandrakesoft.com>
* install_steps_interactive.pm: handle third party modules from various
devices
(at least floppy is still working :)
* install_steps.pm: handle third party modules from various devices
(at least floppy is still working :)
workaround weird old code (bugzilla #15300)
2005/04/07 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Add a trace
2005/04/07 Stew Benedict <sbenedict at mandrakesoft.com>
* standalone/drakTermServ: Sort the nic list for nbis.
2005/04/07 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.2-21mdk
2005/04/06 Olivier Blin <oblin at mandrakesoft.com>
* share/list, share/aliases: ship rmmod binary since insmod from
module-init-tools isn't combined with rmmod
2005/04/06 Pixel <pixel at mandrakesoft.com>
* any.pm: monitor-edid needs /dev/zero when fallbacking on lrmi
* install2.pm: leave bootsplash when X is up (and also in newt and
auto_install)
* install_gtk.pm: fix position of steps window in direction rtl (bugzilla
#15261)
2005/04/06 Olivier Blin <oblin at mandrakesoft.com>
* do_pkgs.pm: now that I know how to short-circuit it, make it work as
well
(have I already said I sux ?)
use short-circuit operator (/me sux, thanks Pixel)
* share/list, share/aliases: ship rmmod binary since insmod from
module-init-tools isn't combined with rmmod
2005/04/06 Pixel <pixel at mandrakesoft.com>
* any.pm: monitor-edid needs /dev/zero when fallbacking on lrmi
* install2.pm: leave bootsplash when X is up (and also in newt and
auto_install)
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)
* install_any.pm: make the auto_inst.cfg more valid in report.bug.gz, and
add a warning
* install_gtk.pm: fix position of steps window in direction rtl (bugzilla
#15261)
2005/04/06 Warly <warly at mandrakesoft.com>
* share/logo-mandrake.png: LE-2005 logo
2005/04/06 Pixel <pixel at mandrakesoft.com>
* install_any.pm: make the auto_inst.cfg more valid in report.bug.gz, and
add a warning
2005/04/06 Warly <warly at mandrakesoft.com>
* share/logo-mandrake.png: LE-2005 logo
2005/04/05 Olivier Blin <oblin at mandrakesoft.com>
* network/network.pm: remove useless and unwanted non-ASCII character
* mouse.pm: really apply specific ALPS touchpad settings (#14510)
* modules.pm: don't load modules.cz in uml install
* standalone/net_monitor: perl_checker, indent
detect more devices (e.g. wireless)
* drakxtools.spec: 10.2-20mdk
* network/netconnect.pm: support more slmodems
* do_pkgs.pm: install dkms packages if found
* standalone/drakroam: do not crash if no essid is selected (partially fix
#15244)
hide unavailable features, add close button
* network/adsl.pm: please perl_checker
replace non-ASCII characters
* network/tools.pm: improve wifi detection
2005/04/05 Pablo Saratxaga <pablo at mandrakesoft.com>
* lang.pm: corrected small typo
* share/po/eu.po: updated Basque file
2005/04/05 pmaryanov
* share/po/ru.po: updated
2005/04/05 Pixel <pixel at mandrakesoft.com>
* lang.pm: since we have a non-ascii font name, we have to "use utf8"
check(): only display "Errors:" if there is some errors
* rescue/list: revert adding Compress::Zlib
* install_steps.pm: remove accentuated char
* standalone/draksplash, share/advertising/22.pl, share/advertising/10.pl,
standalone/drakpxe, share/advertising/05.pl, share/advertising/21.pl,
share/advertising/28.pl, share/advertising/14.pl,
share/advertising/24.pl:
- remove non useful non-ascii characters
- add "use utf8" for useful utf8 characters
* ugtk2.pm: replace the latin-charset unbreakable space with a "use utf8"
and the utf8 unbreakable space
* install_any.pm: media_browser is returning a file, not a file handle,
/me is bad :-/
* 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)
check the presence of non ascii characters in perl files (allow utf8
chars if there is 'use utf8')
* printer/main.pm: replace non ascii char
2005/04/05 Reinout van Schouwen <reinout at cs.vu.nl>
* share/po/nl.po: Updated Dutch translation
by Reinout van Schouwen <reinout@cs.vu.nl>
2005/04/05 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* crypto.pm: Add new countries to match the mirror list
Update mirror list
2005/04/05 sharuzzaman
* share/po/ms.po: Updated Malay translation
2005/04/05 Olivier Blin <oblin at mandrakesoft.com>
* network/network.pm: remove useless and unwanted non-ASCII character
* network/adsl.pm: please perl_checker
replace non-ASCII characters
2005/04/05 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/sv.po: updated Swedish file
2005/04/05 Pixel <pixel at mandrakesoft.com>
* standalone/draksplash, share/advertising/22.pl, share/advertising/10.pl,
standalone/drakpxe, share/advertising/05.pl, share/advertising/21.pl,
share/advertising/28.pl, share/advertising/14.pl,
share/advertising/24.pl:
- remove non useful non-ascii characters
- add "use utf8" for useful utf8 characters
* ugtk2.pm: replace the latin-charset unbreakable space with a "use utf8"
and the utf8 unbreakable space
* install_any.pm: media_browser is returning a file, not a file handle,
/me is bad :-/
* bootloader.pm: apply patch from bugzilla #15216, adding support for
"password=..." and "restricted" at per-entry level (thanks to jarfil)
* 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)
check the presence of non ascii characters in perl files (allow utf8
chars if there is 'use utf8')
* lang.pm: check(): only display "Errors:" if there is some errors
* rescue/list: revert adding Compress::Zlib
* install_steps.pm: remove accentuated char
* printer/main.pm: replace non ascii char
2005/04/04 Olivier Blin <oblin at mandrakesoft.com>
* mdk-stage1/stage1.c, mdk-stage1/thirdparty.h, mdk-stage1/thirdparty.c:
add thirdparty_load_media_modules(), try to find third party modules on
the install media
* mdk-stage1/probing.h, mdk-stage1/probing.c: allow to keep track of
orphan devices (no module available)
* drakxtools.spec: 10.2-19mdk
2005/04/04 Pablo Saratxaga <pablo at mandrakesoft.com>
* keyboard.pm, share/keyboards.tar.bz2: included/fixed some xmodmap files
* share/po/gl.po: updated Galician
2005/04/04 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Try to guess the device associated with the CD-ROM when
installing urpmi
(bug 14395)
2005/04/04 Till Kamppeter <till at mandrakesoft.com>
* printer/main.pm, printer/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 Olivier Blin <oblin at mandrakesoft.com>
* mdk-stage1/thirdparty.h, mdk-stage1/thirdparty.c, mdk-stage1/stage1.c:
add thirdparty_load_media_modules(), try to find third party modules on
the install media
* network/netconnect.pm: disconnect internet interface before trying to
reconnect (or else some
nasty pppd and pppoa may be still alive)
* detect_devices.pm: getNet(): only up wireless devices
* mdk-stage1/probing.h, mdk-stage1/probing.c: allow to keep track of
orphan devices (no module available)
* network/adsl.pm: do not reload firmware on eagle-usb modems if already
done
* drakxtools.spec: 10.2-19mdk
2005/04/04 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Try to guess the device associated with the CD-ROM when
installing urpmi
(bug 14395)
/me sux
2005/04/04 Till Kamppeter <till at mandrakesoft.com>
* printer/main.pm, printer/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 Olivier Blin <oblin at mandrakesoft.com>
* detect_devices.pm: getNet(): only up wireless devices
2005/04/04 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/it.po, share/po/fr.po: updated French and Italian files
* share/po/de.po: updated German file
2005/04/04 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: /me sux
Don't ask for the same cd to be reinserted when copying rpms on disk
Introduce the new utility function getCDNumber()
* install_steps_gtk.pm: Introduce the new utility function getCDNumber()
2005/04/04 Tibor Pittich <Tibor.Pittich at phuture.sk>
* share/po/sk.po: small fix in /boot/message-text
2005/04/03 Pablo Saratxaga <pablo at mandrakesoft.com>
* pixmaps/langs/lang-qu.png, lang.pm: 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 Pixel <pixel at mandrakesoft.com>
* fsedit.pm: add /usr/local and /opt to suggestions_mntpoints
2005/04/03 Thomas Backlund <tmb at mandrake.org>
* share/po/fi.po: Updated Translations, fully translated, was 93 fuzzy, 67
untranslated.
2005/04/02 mareklaane
* share/po/et.po: Updated translation (supermount=automaatne haakimine).
2005/04/02 mbukovjan
* share/po/cs.po: Updated Czech translation.
2005/04/02 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/sl.po, share/po/es.po, share/po/vi.po, share/po/wa.po: updated
Spanish, Slovenian, Vietnamese and Walloon files
* share/po/ja.po: updated Japanese file
2005/04/02 Tibor Pittich <Tibor.Pittich at phuture.sk>
* share/po/sk.po: updated slovak translation
2005/04/02 willysr
* share/po/id.po: Updated
2005/04/01 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation
2005/04/01 José JORGE <jjorge at free.fr>
* share/po/pt.po: jorge
2005/04/01 tsdgeos
* share/po/ca.po: small update
2005/04/01 José JORGE <jjorge at free.fr>
* share/po/pt.po: jorge
2005/04/01 Olivier Blin <oblin at mandrakesoft.com>
* mdk-stage1/cdrom.c, mdk-stage1/disk.c: try to load ide-generic as
fallback when no disk or cdrom is found
* mouse.pm: configure wacom devices with synaptics touchpads too
2005/04/01 Pablo Saratxaga <pablo at mandrakesoft.com>
* Makefile, pixmaps/langs/lang-pa_IN.png, share/fonts.tar.bz2, lang.pm:
Added font for gurmukhi script (used by pa_IN translation);
enabled pa_IN, and define the font for KDE
* share/po/nb.po, share/po/id.po, share/po/sk.po, share/po/ru.po,
share/po/is.po, share/po/sl.po, share/po/de.po, share/po/cs.po,
share/po/hu.po: updated Slovenian file;
run msgmerge on all *.po files
* share/po/az.po, share/po/sv.po, share/po/ca.po: updated Swedish and
Italian files; small fixes in Azeri and Catalan files
* share/po/it.po: updated Italian file
updated Swedish and Italian files; small fixes in Azeri and Catalan
files
* share/po/cy.po: updated Welsh file
2005/04/01 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
* share/po/nb.po: Last minute strings:)
2005/04/01 pjetur
* share/po/is.po: Small fuzzy fixes
2005/04/01 pmaryanov
* share/po/ru.po: s/ÓÌÕÖÂ/ÓÅÒ×ÉÓ/
2005/04/01 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Sort CDs according to CD numbers, not alphabetically
* install_steps_gtk.pm: Actually remove multiple Mini-CD media for
deselection
When presenting the list of media to deselect, group by CDs even when
using the
mini ISO
2005/04/01 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: one more item in 10.2-18mdk
10.2-18mdk
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
share/po/ga.po, share/po/uk.po, share/po/mn.po, share/po/am.po,
share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/Makefile,
share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/nl.po,
share/po/tl.po, share/po/de.po, share/po/eo.po, share/po/el.po,
share/po/bg.po, share/po/cs.po, share/po/uz@Latn.po: add 3 new strings
from diskdrake
* share/po/fr.po: add 3 new strings from diskdrake
fix truncated message (#13989)
* harddrake/data.pm: fix harddrake crash
2005/03/31 marco
* share/po/it.po: fix
fix
2005/03/31 Olivier Blin <oblin at mandrakesoft.com>
* c/stuff.xs.pl: add enable_net_device
* network/netconnect.pm: add some comment for post 10.2
do not use ifplugd for wireless cards (and don't allow users to enable
it for wireless cards in drakconnect)
* detect_devices.pm: enable ethernet interfaces during detection (fix
Ralink wireless detection)
2005/03/31 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/tr.po: small changes
* share/po/az.po: some Azeri changes from Max Payne
small changes
* share/po/es.po: updated Spanish file
* share/po/cy.po: updated Welsh file
2005/03/31 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
* share/po/nb.po: Updates from Eskild Hustvedt:)
2005/03/31 pmaryanov
* share/po/ru.po: fixed drakperm:24 and drakperm:23
2005/03/31 Pixel <pixel at mandrakesoft.com>
* diskdrake/interactive.pm: useSupermount is no more a boolean, don't let
the "More" dialog box set it to 1 when it is magicdev
* standalone/drakauth, authentication.pm: don't display description for
non proposed authentication kinds
* lang.pm: better locale-policy.fdi (bugzilla #15025)
2005/03/31 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/harddrake2: do not try to install packages that are not
availlable (#15106)
do no try to install too generic hw packages (#15101)
* drakxtools.spec: 10.2-17mdk
* detect_devices.pm: do not detect joystics as UPSes
2005/03/31 Frederic Crozat <fcrozat at mandrakesoft.com>
* share/rpmsrate: Add gpdf and eog to GNOME packages
2005/03/31 mareklaane
* share/po/et.po: Updated translation.
2005/03/31 Olivier Blin <oblin at mandrakesoft.com>
* network/netconnect.pm: add some comment for post 10.2
do not use ifplugd for wireless cards (and don't allow users to enable
it for wireless cards in drakconnect)
2005/03/31 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/az.po, share/po/tr.po: small changes
* share/po/vi.po: updated Vietnamese file
* share/po/es.po: updated Spanish file
2005/03/31 pmaryanov
* share/po/ru.po: fixed drakperm:24 and drakperm:23
updated drakperm
2005/03/31 Pixel <pixel at mandrakesoft.com>
* diskdrake/interactive.pm: useSupermount is no more a boolean, don't let
the "More" dialog box set it to 1 when it is magicdev
* standalone/drakauth, authentication.pm: don't display description for
non proposed authentication kinds
* network/drakfirewall.pm: fix typo (bugzilla #15116)
* lang.pm: better locale-policy.fdi (bugzilla #15025)
* rescue/list: disambiguate (esp for Config.pm which now has
Net/Config.pm)
* 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 Tibor Pittich <Tibor.Pittich at phuture.sk>
* share/po/sk.po: updated slovak translation
2005/03/31 Thierry Vignaud <tvignaud at mandrakesoft.com>
* harddrake/data.pm: do not detect USB joystics as UPSes (#15102)
* share/po/az.po: update (Ugur Eminli <system.virus@gmail.com>)
* standalone/harddrake2: do not try to install packages that are not
availlable (#15106)
do no try to install too generic hw packages (#15101)
2005/03/30 mbukovjan
* share/po/cs.po: Updated Czech translation.
2005/03/30 Olivier Blin <oblin at mandrakesoft.com>
* network/netconnect.pm: fix speedtouch microcode url (#15095)
* network/adsl.pm: eagle-usb: try to use the country specific CMV
fctStartAdsl is moved in /sbin too
2005/03/30 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/es.po, share/po/ja.po, share/po/pl.po, share/po/fr.po,
share/po/wa.po: updated Japanese, Polish, Spanish, French and Walloon
files
2005/03/30 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
* share/po/nb.po: updates:)
2005/03/30 pmaryanov
* share/po/ru.po: updated drakbackup
multiply fixes translation of 'Service'
s/search/Search
fixed '...mail alert...'
2005/03/30 rstandtke
* share/po/de.po: some fixes
some additions
2005/03/30 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
share/po/DrakX.pot, share/po/sv.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/zh_TW.po, share/po/zh_CN.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
share/po/sl.po, share/po/nn.po, share/po/mt.po, share/po/ga.po,
share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
share/po/pt.po, share/po/vi.po, share/po/fr.po, share/po/nl.po,
share/po/tl.po, share/po/de.po, share/po/cs.po, share/po/uz@Latn.po:
- merge in new strings from drakroam
- auto translate "RAID controllers" for harddrake
- manual updates for af, br & fr
* share/po/Makefile: fix makefile
* drakxtools.spec: update 10.2-16mdk's changelog
update 10.2-16mdk's changelog
10.2-16mdk
* share/po/sr.po, share/po/ro.po, share/po/sr@Latn.po, share/po/sq.po,
share/po/tr.po, share/po/mn.po, share/po/az.po, share/po/ta.po,
share/po/eo.po, share/po/el.po, share/po/bg.po: manual updates
- merge in new strings from drakroam
- auto translate "RAID controllers" for harddrake
- manual updates for af, br & fr
* harddrake/data.pm: megaraid controllers are listed as RAID ones now
3ware controllers are listed as RAID ones now
ensure we detect all known sound cards
do not list hardware controllers in unknown section
ensure we detect all known SATA controllers
2005/03/30 willysr
* share/po/id.po: Updated
2005/03/29 mareklaane
* share/po/et.po: Updated translation.
2005/03/29 Olivier Blin <oblin at mandrakesoft.com>
* network/netconnect.pm: fix NET_INTERFACE for sagem modems not using
pppoa
* detect_devices.pm: detect more Bewan devices
* standalone/net_applet: really load network configuration at start
2005/03/29 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/es.po, share/po/fr.po: updated French and Spanish files
* Makefile: removed pa_IN.po and ta.po from install due to font problems
* share/po/sv.po: updated Swedish file
* share/po/pa_IN.po: Added Punjabi file
* share/po/it.po: updated Italian file
2005/03/29 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
* share/po/nb.po: Updates from Eskild Hustvedt
2005/03/29 pmaryanov
* share/po/ru.po: fixed Uninstall font
2005/03/29 Pixel <pixel at mandrakesoft.com>
* pkgs.pm: if i686-up-4GB is not there we don't have pae, fallback on
i586-up-1GB
* lang.pm: revert to standard size (as told on bugzilla #14988 to revert
#13809)
* lvm.pm: ensure we have a {lv_name} (esp. for auto_installs)
* standalone/service_harddrake, modules.pm, standalone/harddrake2,
harddrake/data.pm:
- 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 Reinout van Schouwen <reinout at cs.vu.nl>
* share/po/nl.po: Reinout van Schouwen <reinout@cs.vu.nl>:
Updated Dutch translation-
2005/03/29 Till Kamppeter <till at mandrakesoft.com>
* 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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: move drakroam from drakxtools-newt into drakxtools
since it requires gtk+
fix tools' crash when drakconf is not installing (#13392)
10.2-15mdk
* docs/HACKING: update package list regarding gtk+ bindings
* standalone/drakroam (UpdateStatus) fix layout
translate columns' headers
* any.pm (selectLanguage) remove unused variable
(selectLanguage) let "unicode" checkbox be an advanced item at both
install
time and in standalone mode
* detect_devices.pm (floppies) do not use dmidecode for detecting floppies
since it's not
reliable (#15029)
* harddrake/data.pm: fix optical mice detection (#15082)
2005/03/28 Olivier Blin <oblin at mandrakesoft.com>
* network/netconnect.pm, network/adsl.pm: eaglectrl is now in /sbin
(#15033)
2005/03/28 pmaryanov
* share/po/ru.po: fixed PPPoE, PPPoA,...
2005/03/27 Alice Lafox <alice at lafox.com.ua>
* share/po/ru.po: transl. drakroam messages
2005/03/27 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/fa.po, share/po/br.po, share/po/pl.po, share/po/ar.po,
share/po/he.po: removed "10.1"
2005/03/27 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* rescue/list: Add some more files to the rescue until packdrake works
correctly without Compress::Zlib.
2005/03/27 Tibor Pittich <Tibor.Pittich at phuture.sk>
* share/po/sk.po: updated slovak translation
2005/03/27 willysr
* share/po/id.po: Updated
2005/03/26 Funda Wang <fundawang at linux.net.cn>
* share/advertising/09.pl: Oops, Sorry for the critical typo
s/Mandrakelinux 10.1/Mandrakelinux. For advertising.
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/sl.po,
share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
share/po/el.po, share/po/uz@Latn.po: Oops! Sorry for the critial typo :(
s/Mandrakelinux 10.1/Mandrakelinux/. For advertising.
2005/03/26 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/03/26 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
share/po/ru.po, share/po/sc.po, share/po/br.po, share/po/sl.po,
share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
share/po/af.po, share/po/az.po, share/po/vi.po, share/po/fr.po,
share/po/ta.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
share/po/uz@Latn.po: updated pot file
* share/po/es.po, share/po/pt.po: updated Spanish file
updated pot file
2005/03/25 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
* rescue/list.x86_64: speculatively add 32-bit loader in case user wants
to use 3rdparty 32-bit
binaries depending on it.
* rescue/tree/usr/share/symlinks: I hate you pixel. ;-) You were not lib64
aware of those modern arches. ;-))
* rescue/make_rescue_img: take care of lib64 platforms, also add msboot
restorer to x86_64 tree
* share/rpmsrate: kdm was the new default
2005/03/25 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/sc.po: Added Sardinian file
* share/po/pt_BR.po: updated Brazilian file
* share/po/sl.po, share/po/id.po: updated Slovenian file
2005/03/25 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.2-14mdk
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
share/po/da.po, share/po/ca.po, share/po/ar.po, share/po/ltg.po,
share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
share/po/ru.po, share/po/sc.po, share/po/br.po, share/po/sl.po,
share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/uk.po, share/po/mn.po, share/po/am.po, share/po/lt.po,
share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
share/po/mk.po, share/po/wa.po, share/po/Makefile, share/po/is.po,
share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/el.po,
share/po/bg.po, share/po/cs.po, share/po/uz@Latn.po:
- add new strings from drakroam
- merge in kde's translations
* share/po/be.po: fix bogus translations introduced on 6-Aug-2004
- add new strings from drakroam
- merge in kde's translations
* modules/interactive.pm (load_category__prompt_for_more) enable one to
load ide drivers if needed
2005/03/25 willysr
* share/po/id.po: Fix Typo
Fix Typo and Minnor Update
Updated
2005/03/24 Olivier Blin <oblin at mandrakesoft.com>
* install_any.pm: nasty warly uses different volume IDs for mini CDs
* standalone/drakroam: do not crash in Help and About buttons
2005/03/24 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Always write an MD5SUM file
2005/03/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/br.po: update
update
* standalone/drakroam: tag strings as being translatable
* share/po/pt_BR.po:
- update from Cristiano Otto Von Trompczynski <cris@mandrakesoft.com>
- fix errors in cataglog
2005/03/24 Olivier Blin <oblin at mandrakesoft.com>
* standalone/net_applet: force refresh if asked by user from the menu
reload configuration on SIGHUP
ask for root password if needed when setting a new profile
* network/network.pm: write ATM_ADDR field
* 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)
* network/adsl.pm: use new --nocall option of speedtouch-start
2005/03/24 Pixel <pixel at mandrakesoft.com>
* standalone/drakvpn, network/shorewall.pm, standalone/drakgw:
- 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
* security/level.pm: really default security level 3
* raid.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)
ensure we use/propose a free md when creating a new one
after "mdadm --assemble" there can be some mds in inactivate state
busying devices, stopping them
* network/drakfirewall.pm: log what we are doing
return the user choices
- there is no reason to have string ref for ports
- replace main_auto_install() with default_ports()
network::drakfirewall::set_ports() doesn't *need* a $in anymore, and it
doesn't die when no network card
- 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
* install_steps_interactive.pm:
- configure a firewall by default in secure level >= 3
- allow auto_install parameter {firewall_ports}
- 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
* install_steps.pm: really default security level 3
- configure a firewall by default in secure level >= 3
- allow auto_install parameter {firewall_ports}
* 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)
use raid::free_mds() and don't sort (we provide a better numerically
sorted list)
2005/03/24 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* tools/Makefile: Install modules required by packdrake and gendistrib in
MISC_DEST
2005/03/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
* ugtk2.pm (Gtk2::Banner::new) make banner be RTL aware (aka follow
language direction
and display itself mirrored for RTL languages) (#11910)
(Gtk2::Banner::new) ensure icon is centered vertically
* drakxtools.spec: 10.2-13mdk
2005/03/24 willysr
* share/po/id.po: Updated
2005/03/23 Olivier Blin <oblin at mandrakesoft.com>
* mdk-stage1/disk.c: warn that the mount can fail if the partition hasn't
been cleanly unmounted
* install_any.pm: temporarily fallback on /mnt/hd if the hard disk mount
point can't be found
2005/03/23 Olivier Blin <oblin at mandrakesoft.com>
* mdk-stage1/disk.c: warn that the mount can fail if the partition hasn't
been cleanly unmounted
* install_any.pm: temporarily fallback on /mnt/hd if the hard disk mount
point can't be found
2005/03/23 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Fix ejection of cdrom when asking for the supplementary
CD. (bug 14902)
2005/03/23 Olivier Blin <oblin at mandrakesoft.com>
* mdk-stage1/disk.c: warn that the mount can fail if the partition hasn't
been cleanly unmounted
* install_any.pm: temporarily fallback on /mnt/hd if the hard disk mount
point can't be found
2005/03/23 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Fix ejection of cdrom when asking for the supplementary
CD. (bug 14902)
2005/03/23 Olivier Blin <oblin at mandrakesoft.com>
* mdk-stage1/disk.c: warn that the mount can fail if the partition hasn't
been cleanly unmounted
* install_any.pm: temporarily fallback on /mnt/hd if the hard disk mount
point can't be found
2005/03/23 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Fix ejection of cdrom when asking for the supplementary
CD. (bug 14902)
2005/03/23 fisher
* share/po/uk.po: uk tr-tion update
2005/03/23 Olivier Blin <oblin at mandrakesoft.com>
* mdk-stage1/disk.c: warn that the mount can fail if the partition hasn't
been cleanly unmounted
* install_any.pm: temporarily fallback on /mnt/hd if the hard disk mount
point can't be found
* network/adsl.pm: make Bewan PCI modems work (drop MTU config entries)
2005/03/23 Pablo Saratxaga <pablo at mandrakesoft.com>
* 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 pmaryanov
* share/po/ru.po: fixed 'Load/Save selection' and 'No details'
translated 'Smart Card'
fixed 'Allow all users'
2005/03/23 Pixel <pixel at mandrakesoft.com>
* 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 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_steps_gtk.pm: Fix detection of available space when copying rpms
on disk (bug 14790)
* install_any.pm: Fix ejection of cdrom when asking for the supplementary
CD. (bug 14902)
2005/03/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/br.po: update
typo fix
* Makefile.drakxtools, Makefile: package rpmsrate
* drakxtools.spec: 10.2-12mdk
2005/03/23 Warly <warly at mandrakesoft.com>
* share/rpmsrate: Add ufraw-gimp with gimp and ufraw in photo (for
handling raw images from digital camera)
2005/03/23 willysr
* share/po/id.po: Fix Typo
Updated
2005/03/23 Pixel <pixel at mandrakesoft.com>
* Xconfig/monitor.pm: probe_using_X on neomagic can return rubbish, so
prefer probe_DMI() (even if dmi probe is quite fuzzy...)
2005/03/22 Olivier Blin <oblin at mandrakesoft.com>
* share/rpmsrate: install atmel firmwares for hardware using at76* modules
install prism54-firmware for prism54 devices only
kernel 2.4 isn't needed anymore for this hardware
install xine-esd on Gnome desktops so that totem works when esd is
running
* mdk-stage1/disk.c: dirname may modify the string, so copy it first
2005/03/22 Pixel <pixel at mandrakesoft.com>
* Xconfig/resolution_and_depth.pm: perl_checker fix
choose the default background best matching the resolution
* standalone/keyboarddrake: we require_root_capability, so do it ASAP
(bugzilla #13619)
clean-up
put the question inside the interactive code
* Xconfig/main.pm: try a little harder to know if we must write the config
file.
this is still not enough though
put X conf read in Xconfig::main
* diskdrake/interactive.pm, lvm.pm: ensure {lv_name} is set when calling
check_mntpoint() from Create() (via check()) (bugzilla #14253)
* any.pm: be more explicit
when calling adduser, don't forget {realname} or {home} if we have them
(bugzilla #13805)
no acpi means acpi=on, not the contrary (bugzilla #13935)
* install_steps.pm: acpi=on is the default
* install_steps_interactive.pm: handle the return value of
any::setupBootloader() (bugzilla #13641)
* standalone/XFdrake: put X conf read in Xconfig::main
* standalone/drakauth, authentication.pm: SmartCard authentication needs a
(bloody) proprietary package,
only propose it when the package is available
* Xconfig/xfree.pm: try a little harder to know if we must write the
config file.
this is still not enough though
2005/03/22 Stew Benedict <sbenedict at mandrakesoft.com>
* install_steps_gtk.pm, share/list.i386, mouse.pm: XBox - get xpad to work
in install (added xset)
* harddrake/sound.pm: XBox - add options "xbox=1" for sound driver (thx
Thierry)
2005/03/22 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/harddrake2: help perl_checker
install packages needed for hw support
* drakxtools.spec: 10.2-11mdk
* interactive.pm: perl_checker cleanup
2005/03/22 Warly <warly at mandrakesoft.com>
* share/rpmsrate: fix kdegraphics-common duplicate problem
2005/03/22 willysr
* share/po/id.po: Fix Typo
Updated
Fix Typo
Updated
2005/03/21 Funda Wang <fundawang at linux.net.cn>
* keyboard.pm: fixed wrongly spelled us_intl for lb locale.
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/sl.po, share/po/nn.po,
share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
share/po/wa.po, install_messages.pm, share/po/is.po, share/po/hi.po,
share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
share/po/el.po, share/po/uz@Latn.po: s/102errata/errata/. There will not
be an 10.2, and errara.php3
is allways pointed to latest errata :/
2005/03/21 marco
* share/po/it.po: Successivo -> Next
2005/03/21 Olivier Blin <oblin at mandrakesoft.com>
* share/rpmsrate: install kwifimanager on wireless-aware kde desktops
* mdk-stage1/network.c: rephrase message (#14813)
* mouse.pm: help perl_checker
use specific Synaptics settings for ALPS devices (#14512)
* detect_devices.pm: handle wireless hardware type
is_lan_interface: do not list wifi%d interfaces as LAN devices (#14523)
* Xconfig/xfree.pm: remove useless function to improve readability and
please Titi
use specific Synaptics settings for ALPS devices (#14512)
use new recommended settings for synaptics-0.14.0
factorize and minimal comments
2005/03/21 Pixel <pixel at mandrakesoft.com>
* do_pkgs.pm: add ->is_available
* ugtk2.pm: don't use show_all, it unhides hidden summary (bugzilla
#13941)
* rescue/make_partimage_save_rest_all: addmd5 to the generated iso
factorize
* bootloader.pm: enhance yaboot macos entry handling (mostly written by
cjw) (bugzilla #14642)
2005/03/21 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Don't copy RPMs from supplementary media, except
supplementary CDs
Factorize code on opening CD tray.
This, and the previous change, fixed bug #14850.
Force opening of cdrom tray when asking for a supplementary CD.
Allow to eject non-mounted cdroms
2005/03/21 rstandtke
* share/po/de.po: some additions
2005/03/21 Thierry Vignaud <tvignaud at mandrakesoft.com>
* detect_devices.pm (getUPS) enforce "hidups" as driver for BackPro UPSes
* drakxtools.spec: 10.2-10mdk
* standalone/drakups (add_device_wizard) set extra parameters if present
2005/03/21 Warly <warly at mandrakesoft.com>
* share/rpmsrate: install kdegraphics-common to support camera
2005/03/21 willysr
* share/po/id.po: Fix typo
Updated
2005/03/21 Olivier Blin <oblin at mandrakesoft.com>
* drakxtools.spec: force net_applet start from menu (#14858)
* mdk-stage1/network.c: rephrase message (#14813)
* standalone/net_applet: don't modify autostart config file value if
started with --force
2005/03/21 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po: updated Bengali file
* share/po/sl.po: updated Slovenian file
2005/03/21 Pixel <pixel at mandrakesoft.com>
* Xconfig/xfree.pm: ensure strange return value from gtf(1) doesn't cause
havoc
* rescue/make_partimage_save_rest_all: addmd5 to the generated iso
factorize
* detect_devices.pm, pkgs.pm: handle new kernel flavour for i686 but non
pae
2005/03/21 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Allow to eject non-mounted cdroms
2005/03/21 willysr
* share/po/id.po: Updated
Fix typo
Updated
2005/03/20 willysr
* share/po/id.po: Fix Typo
Fix Typo
Updated
2005/03/19 Pixel <pixel at mandrakesoft.com>
* drakxtools.spec: we need latest ldetect-lst (bugzilla #14785)
2005/03/19 shivahuang
* share/po/zh_TW.po: updated po files
2005/03/19 willysr
* share/po/id.po: minnor update
Updated
minnor update
Updated
Updated
2005/03/18 Pixel <pixel at mandrakesoft.com>
* install2.pm: do "doPartitionDisks" and "formatPartitions" ASAP in
upgrade so that miscellaneous is runned when /mnt is mounted (bugzilla
#8678)
2005/03/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.2-9mdk
* network/netconnect.pm: disable network hotplug for via-velocity driver
(#14763)
2005/03/18 Funda Wang <fundawang at linux.net.cn>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/sl.po, share/po/nn.po,
share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
share/po/wa.po, install_messages.pm, share/po/is.po, share/po/hi.po,
share/po/af.po, share/po/az.po, share/po/pt.po, share/po/fr.po,
share/po/ta.po, share/po/vi.po, share/po/nl.po, share/po/de.po,
share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
share/po/el.po, share/po/uz@Latn.po: s/101errata/102errata for the next
release. We often forget this.
2005/03/18 Olivier Blin <oblin at mandrakesoft.com>
* harddrake/data.pm: adapt to new adsl_detect prototype
* standalone/drakroam: perl_checker/include fixes
don't be verbose
* standalone/drakconnect: really detect wireless devices in manage
interface
* rescue/tree/etc/issue: tell how to go back to the rescue menu
* share/po/fr.po: fix drakbackup message
fix bad translations
* standalone/logdrake: perl_checker fixes
fix save dialog
* network/ethernet.pm: remove other mac address occurrences in iftab
2005/03/18 Pixel <pixel at mandrakesoft.com>
* lvm.pm: rootDevice must be properly set, esp. for newt diskdrake
(bugzilla #14254)
* standalone/localedrake: always warn the user to logout, even if we can't
help (bugzilla #14403)
* diskdrake/interactive.pm: remove the lvm if lvm::vg_destroy() succeeds
(bugzilla #14249)
* install2.pm: do "doPartitionDisks" and "formatPartitions" ASAP in
upgrade so that miscellaneous is runned when /mnt is mounted (bugzilla
#8678)
* bootloader.pm: handle grub file names that do not correspond to a
mounted filesystem (bugzilla #14410)
use renamef instead of rename to create .old conf files
* Xconfig/xfree.pm: simplify
ensure the .old X conf is the last one
instead of having xorg.conf symlinked to XF86Config, do the contrary
2005/03/18 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* crypto.pm: Fix downloading update rpms with ftp method.
Remove noisy log
* ftp.pm: Meaningful error messages
2005/03/18 Stew Benedict <sbenedict at mandrakesoft.com>
* standalone/drakTermServ: Better way to list NIC modules (thx Thierry).
Lose the "system" calls. Use pxe.include now. Clean up some redundant
code.
2005/03/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
* detect_devices.pm (getUPS) move comment about serial UPS where
appropriate
* standalone/drakups (add_device_wizard) fix device path when manually
adding an UPS (#12290)
* standalone/logdrake: fix explanation mode only displaying last line
(#14368)
(parse_file) do not horribly die
* 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)
(get_user_or_group) do not ignore groups with empty password field
(#14777)
* drakxtools.spec: 10.2-9mdk
10.2-8mdk
10.2-7mdk
2005/03/18 willysr
* share/po/id.po: Updated
Updated
Updated
2005/03/17 Alice Lafox <alice at lafox.com.ua>
* share/po/ru.po: updated
2005/03/17 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
* install_steps_interactive.pm: bring back generic release-notes.txt to
life
MERGE: make it possible to read arch-specific release notes in addition
to
global (default) ones
* mdk-stage1/usb-resource/update-usb-ids.pl: fix usb devices id generation
* mdk-stage1/Makefile: pcmcia also works on x86-64 (old 10.1-branch)
* rescue/list: MERGE: fix ldso name
* install_steps_gtk.pm: MERGE: stop using dedicated X drivers on x86-64,
default to vesafb
* mdk-stage1/pcmcia_/cs.h, mdk-stage1/pcmcia_/cardmgr.c,
mdk-stage1/pcmcia_/ds.h, mdk-stage1/pcmcia_/yacc_config.h,
mdk-stage1/pcmcia_/cs_types.h, mdk-stage1/pcmcia_/vg468.h,
mdk-stage1/pcmcia_/yacc_config.c, mdk-stage1/pcmcia_/i82365.h,
mdk-stage1/pcmcia_/driver_ops.h, mdk-stage1/pcmcia_/cirrus.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)
* share/list, share/list.x86_64, share/list.i386: mdadm for everyone, fix
ldso linker name for other arches
* devices.pm: MERGE: don't be so i586 centric
2005/03/17 Olivier Blin <oblin at mandrakesoft.com>
* mdk-stage1/thirdparty.c: probe in automatic mode to create devices (and
really check for mount return code)
fix return code check
message fix again
more message fixes
fix/enhance messages
look for modules in /install/thirdparty first
* 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)
* mdk-stage1/pci-resource/update-pci-ids.pl: use sata modules too
* standalone/drakconnect: fill at least the DEVICE field for
non-configured devices
allow to modify non configured devices in manage interface
2005/03/17 Pixel <pixel at mandrakesoft.com>
* Xconfig/monitor.pm, Xconfig/main.pm, Xconfig/xfree.pm: use
monitor-probe-using-X
* mygtk2.pm: ensure the val registrations are kept ordered
* common.pm: ensure this bloody stupid code doesn't break things when it
is unused
* install_steps_interactive.pm: simplify
* mdk-stage1/doc/UPDATEMODULES, install_steps.pm: give ability to tell in
which list_modules category is a module
* 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!)
have 1280x1024 in both 4/3 and 5/4 ratios
* share/rpmsrate: we may need monitor-probe-using-X installed to configure
X during install
(XFdrake already require monitor-edid)
2005/03/17 Till Kamppeter <till at mandrakesoft.com>
* printer/printerdrake.pm:
- Fixed queue name auto-generation, it sometimes hanged in an endless
loop
(bugs #14426, #14525, #14563).
2005/03/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
* network/netconnect.pm: temporary move collate sorting into net wizard in
order to minimize possible side effects
* drakxtools.spec: add an item to 10.2-6mdk's log
* interactive.pm: temporary move collate sorting into net wizard in order
to minimize possible side effects
(ask_from_normalize) use newly introduced set_l10n_sort() in order to
have proper localized sorting (#14634)
* common.pm (set_l10n_sort) import comments from rpmdrake
(set_l10n_sort) do not bother touch LC_ALL
(set_l10n_sort) stole it from rpmdrake
2005/03/17 willysr
* share/po/id.po: Updated
Updated
2005/03/16 Daouda Lo <daouda at mandrakesoft.com>
* bootloader.pm:
- cluster without capturing
2005/03/16 Olivier Blin <oblin at mandrakesoft.com>
* mdk-stage1/tools.h: cdrom support in third-party module
* mdk-stage1/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
cdrom support in third-party module
* mdk-stage1/thirdparty.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
fail if device doesn't match anything
cdrom support in third-party module
* mdk-stage1/Makefile: allow to clean local directory only
partition.c is used only in disk installs for now
* mdk-stage1/stage1.c, mdk-stage1/modules.c, mdk-stage1/stage1.h,
mdk-stage1/modules.h:
- 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 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/eu.po, share/po/sv.po, share/po/fr.po: updated French, Basque
and Swedish files
2005/03/16 Pixel <pixel at mandrakesoft.com>
* bootloader.pm: fix dropping line macos in yaboot.conf (bugzilla #14642)
2005/03/16 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* pkgs.pm, install2.pm: Allow to specify "suppl" and "askmedia" in the
kernel command-line as well as in the hdlists file
* share/po/fr.po: Fix typo
* share/po/id.po: Fix po syntax
2005/03/16 shivahuang
* share/po/zh_TW.po: updated po files
2005/03/16 Till Kamppeter <till at mandrakesoft.com>
* printer/default.pm:
- Fixed setting of default printer on daemon-less CUPS client (bug
#13940).
2005/03/16 Tibor Pittich <Tibor.Pittich at phuture.sk>
* share/po/sk.po: finalized slovak translation for 10.2
2005/03/16 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/localedrake: enable to enable/disable utf-8
ensure there's never a "previous" button on first step
* any.pm: enable to enable/disable utf-8
* drakxtools.spec: 10.2-6mdk
* interactive/gtk.pm (ask_fromW) remove dead code
(ask_fromW) remove unecessary sync (which was needed to workaround
CList bug but now make TreeViews breaking CheckBoxes)
2005/03/16 willysr
* share/po/id.po: Updated
Updated
Updated
2005/03/15 Olivier Blin <oblin at mandrakesoft.com>
* network/netconnect.pm, network/adsl.pm: allow drakconnect to display
multiple instances of the same adsl device
2005/03/15 Stew Benedict <sbenedict at mandrakesoft.com>
* any.pm, pkgs.pm, install_any.pm: Install kernel-xbox on XBOX, bypass
bootloader setup and eject call
2005/03/15 mareklaane
* share/po/et.po: Fixed translation.
2005/03/15 Olivier Blin <oblin at mandrakesoft.com>
* network/netconnect.pm: allow drakconnect to display multiple instances
of the same adsl device
fix comment
fix unicorn packages installation
do not compare translated string, on Pixel's advice
allow not to set gateway device (#14633)
* network/adsl.pm: allow drakconnect to display multiple instances of the
same adsl device
* mdk-stage1/stage1.c, install_any.pm: fix pcmcia modules loading
2005/03/15 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/it.po, share/po/cy.po: updated Italian and Welsh files
2005/03/15 Pixel <pixel at mandrakesoft.com>
* partition_table/empty.pm: do not drop field {info} that can be created
in zero_MBR
do not drop field {info} that can be created in zero_MBR
do not drop field {info} that can be created in zero_MBR
* c/stuff.xs.pl, detect_devices.pm, modules.pm, install_any.pm,
share/list:
- add dmi_probe()
- some special code on dmi is now moved in dmitable with flags Pkg:
and Module:
* bootloader.pm: fix typo
* Xconfig/main.pm:
- new function Xconfig::monitor::is_valid()
- new function Xconfig::monitor::probe() which probes DDC, then
fallbacks on DMI
* Xconfig/monitor.pm:
- new function Xconfig::monitor::is_valid()
- new function Xconfig::monitor::probe() which probes DDC, then
fallbacks on DMI
don't pass $monitors_db around, use memoized monitors_db()
2005/03/15 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Fix cdrom device name
2005/03/15 Thierry Vignaud <tvignaud at mandrakesoft.com>
* lang.pm: install scim-input-pad too for japanese
* drakxtools.spec: 10.2-5mdk
2005/03/14 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
* 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 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/03/14 Olivier Blin <oblin at mandrakesoft.com>
* network/shorewall.pm: allow connections from local net to firewall
(#14586)
* network/adsl.pm: remove eagle-usb_must_be_configured file
fix and force CMVs symlink creation
2005/03/14 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/id.po: fixed encoding
fixed syntax errors
* share/po/ja.po, share/po/wa.po: updated Japanese file
2005/03/14 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
* share/po/nb.po: fix netmask string..
2005/03/14 Pixel <pixel at mandrakesoft.com>
* standalone/bootloader-config: ensure we have /sbin in our PATH
2005/03/14 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* share/po/fr.po: Fix typo
* share/po/zh_CN.po: Fix newline issue
* install_any.pm: Change the code for the rpm copying progress bar to
avoid forking.
* crypto.pm: Update mirror list
* install_steps_gtk.pm: Don't die while upgrading if
/var/ftp/pub/Mandrakelinux isn't there (bug #14585)
2005/03/14 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/fr.po: fix netmask message after funda fixed blino message
* share/po/br.po: update
fix netmask message after funda fixed blino message
2005/03/14 willysr
* share/po/id.po: Delete Conflict Indicator and Little Update
Little Update
Updated
Updated
Updated again
Downgrade one version
updated
2005/03/13 mbukovjan
* share/po/cs.po: Updates to Czech translations
2005/03/13 Pixel <pixel at mandrakesoft.com>
* Xconfig/xfree.pm: add some xxXGA names
* any.pm: fix looking for the user uid.gid
* bootloader.pm: don't die when we have no entries in grub menu.lst
2005/03/13 Reinout van Schouwen <reinout at cs.vu.nl>
* share/po/nl.po: Updated Dutch (nl) translation
by Reinout van Schouwen <reinout@cs.vu.nl>
* DrakX
2005/03/13 willysr
* share/po/id.po: Updated
2005/03/12 Funda Wang <fundawang at linux.net.cn>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, network/netconnect.pm, share/po/be.po, share/po/ko.po,
share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
standalone/drakconnect, share/po/sr@Latn.po, share/po/sq.po,
share/po/it.po, share/po/eu.po, share/po/es.po, share/po/lv.po,
share/po/hu.po, share/po/fa.po, share/po/id.po, share/po/ru.po,
share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
share/po/fr.po, share/po/ta.po, share/po/vi.po, share/po/nl.po,
share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: s/Netmask
address/Netmask/. typo fix
* share/po/zh_CN.po: s/Netmask address/Netmask/. typo fix
Updated Simplified Chinese translation
Updated Simplified Chinese translation
2005/03/12 José JORGE <jjorge at free.fr>
* share/po/pt.po: jorge
2005/03/12 Keld Jørn Simonsen <keld at dkuug.dk>
* share/po/da.po: Updates
soft/control-center/po/da.po gi/perl-install/share/po/da.po
2005/03/12 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/zh_CN.po, share/po/vi.po: updated Vietnamese file; corrected
syntax error in Chinese file
2005/03/11 mareklaane
* share/po/et.po: Updated translation.
2005/03/11 Olivier Blin <oblin at mandrakesoft.com>
* install_any.pm: remove useless /
really create ISO images mountpoint (me sux)
use full path to rpms for ISO media
* network/adsl.pm: fix typo (linetype for eagle-usb)
2005/03/11 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
share/po/ca.po, share/po/da.po, share/po/ltg.po, share/po/nb.po,
share/po/ky.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/sl.po,
share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/mn.po, share/po/uk.po, share/po/lt.po, share/po/tg.po,
share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
share/po/hi.po, share/po/af.po, share/po/pt.po, share/po/fr.po,
share/po/ta.po, share/po/vi.po, share/po/nl.po, share/po/de.po,
share/po/tl.po, share/po/eo.po, share/po/cs.po, share/po/el.po,
share/po/uz@Latn.po: updated pot file
* share/po/be.po, share/po/ar.po, share/po/br.po, share/po/am.po,
share/po/cy.po, share/po/bs.po, share/po/az.po, share/po/bg.po: updated
pot file
updated pot file
2005/03/11 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
* share/po/nb.po: grf, translate last minute strings
2005/03/11 Pixel <pixel at mandrakesoft.com>
* 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 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_steps_gtk.pm: When removing duplicate physical media, take DVDs
into account as well as CDs
* install_any.pm: Use library functions
Create an empty MD5SUM file to make urpmi happy
Don't stack information windows on top of another
Eject last CD after copy of rpms on disk
2005/03/11 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/uk.po, share/po/eu.po, share/po/bn.po, share/po/ms.po,
share/po/am.po, share/po/ko.po, share/po/sl.po, share/po/az.po,
share/po/zh_TW.po, share/po/hr.po, share/po/ja.po, share/po/zh_CN.po,
share/po/tr.po, share/po/cs.po: fix translations
2005/03/10 fisher
* share/po/uk.po: tr-tion update
2005/03/10 huftis
* share/po/nn.po: Updated Norwegian Nynorsk translation.
2005/03/10 Olivier Blin <oblin at mandrakesoft.com>
* network/modem.pm: use a higher timeout for modem dialing (#10814)
* install_any.pm: don't spawn a shell if stage2 isn't run directly
setup urpmi media for ISO images
* network/netconnect.pm, mdk-stage1/thirdparty.c: fix messages
2005/03/10 Pixel <pixel at mandrakesoft.com>
* standalone.pm: help perl
* Xconfig/monitor.pm: cleanup
simplify
we don't want the 4/3 detailed_timings otherwise they conflict with the
Xorg builtin vesamodes
* partition_table/dos.pm: catch bad use of get_rawCHS()
* Xconfig/xfree.pm: don't add modelines for 1280x1024, they are already in
standard vesamodes (builtin Xorg)
when adding gtf modelines, have them sorted with high frequencies first
(since Xorg prefer the first matching modeline (!))
2005/03/10 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Put a wait message for copying rpms from CDs
2005/03/10 Stew Benedict <sbenedict at mandrakesoft.com>
* diskdrake/interactive.pm, partition_table/raw.pm, fs/type.pm: Diskdrake
mods for XBox (thks Pixel)
2005/03/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/ltg.po, share/po/ky.po, share/po/am.po, share/po/cy.po,
share/po/fur.po, share/po/vi.po, share/po/tl.po, share/po/uz@Latn.po:
fix kde merge
further merge with KDE
remove duplicated string
remove uneeded string
merge in new strings
* standalone/harddrake2 (upload) remove uneeded string
enable to upload the hardware list
* Xconfig/monitor.pm (getinfoFromDDC) fix crash (eg when called from
hwdb-clients)
* run_program.pm (raw) ensure runned programs are logged in explanations
* share/po/DrakX.pot, share/po/Makefile: merge in new strings
* share/po/br.po, share/po/fr.po: fix kde merge
further merge with KDE
update
remove duplicated string
remove uneeded string
merge translations from KDE
merge in new strings
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/sv.po,
share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
share/po/da.po, share/po/ca.po, share/po/ar.po, share/po/nb.po,
share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/sl.po, share/po/nn.po,
share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/uk.po,
share/po/mn.po, share/po/lt.po, share/po/tg.po, share/po/bs.po,
share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
share/po/af.po, share/po/az.po, share/po/pt.po, share/po/ta.po,
share/po/nl.po, share/po/de.po, share/po/eo.po, share/po/el.po,
share/po/bg.po, share/po/cs.po: fix kde merge
further merge with KDE
remove duplicated string
remove uneeded string
merge translations from KDE
merge in new strings
* drakxtools.spec: 10.2-4mdk
harddrake: require hwdb-clients
2005/03/10 Pixel <pixel at mandrakesoft.com>
* Xconfig/monitor.pm: we don't want the 4/3 detailed_timings otherwise
they conflict with the Xorg builtin vesamodes
* standalone.pm: help perl
2005/03/10 Tibor Pittich <Tibor.Pittich at phuture.sk>
* share/po/sk.po: updated slovak translation
2005/03/09 Olivier Blin <oblin at mandrakesoft.com>
* network/network.pm: hide wlan-ng settings for non-root users
make wpa_supplicant.conf readable by root only
2005/03/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
* Makefile: ga translation level has been leveraged up
2005/03/09 mareklaane
* share/po/et.po: Translation fixes.
2005/03/09 Olivier Blin <oblin at mandrakesoft.com>
* mdk-stage1/stage1.h: expert mode is dead
* mdk-stage1/disk.c: fix message
move partition stuff in partition.c and common disk stuff in tools.c
* mdk-stage1/thirdparty.h, mdk-stage1/thirdparty.c: initial import (allow
to load thirdparty modules from disks)
* mdk-stage1/Makefile: don't forget to link with third_party stuff
move partition stuff in partition.c and common disk stuff in tools.c
* network/netconnect.pm, network/network.pm, network/ethernet.pm,
standalone/drakconnect: write selected dhcp client in ifcfg files
* mdk-stage1/probing.c: do ask for modules here, it is already done when
needed
wait for mass storage devices to be detected
add log message when looking for scsi adapters
* mdk-stage1/partition.c, mdk-stage1/tools.h, mdk-stage1/partition.h: move
partition stuff in partition.c and common disk stuff in tools.c
* mdk-stage1/stage1.c: expert mode is dead
do not ask for third party modules here, it's available from main menu
allow to use new third party stuff from main menu
probe usb devices before trying to use third party modules
* mdk-stage1/tools.c: expert mode is dead
move partition stuff in partition.c and common disk stuff in tools.c
2005/03/09 Pablo Saratxaga <pablo at mandrakesoft.com>
* Makefile: updated list of too low languages
* share/po/sl.po: updated Slovenian file
2005/03/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/br.po: update
update
* network/netconnect.pm: better looking text
* Makefile: ga translation level has been leveraged up
* network/ethernet.pm (get_eth_cards) update comments
(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)
* drakxtools.spec: 10.2-3mdk
2005/03/09 Warly <warly at mandrakesoft.com>
* share/logo-mandrake.png: rc1 logo
2005/03/08 Funda Wang <fundawang at linux.net.cn>
* share/rpmsrate: removed obsolete IMEs for zh_TW
2005/03/08 Olivier Blin <oblin at mandrakesoft.com>
* drakxtools.spec: use full path for net_applet icon in menu entry
(#14346)
* network/network.pm (wpa_supplicant_configure) scan hidden ssid
2005/03/08 Pixel <pixel at mandrakesoft.com>
* Xconfig/resolution_and_depth.pm: choose a 4/3 resolution by default
xbox support (by Stew)
* bootloader.pm: please perl_checker differently
* Makefile: Vera is now in xorg
2005/03/08 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Disable progress bar when copying rpms from CDs. (The
change CD dialog
clashes with it)
2005/03/08 Stew Benedict <sbenedict at mandrakesoft.com>
* mouse.pm: mousedrake, detectloader support for XBox
* bootloader.pm: perl_checker - bad /me
mousedrake, detectloader support for XBox
2005/03/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
* interactive.pm, standalone.pm, ugtk2.pm: log program exiting
* security/msec.pm (load_values) fix getting value when it's defined but 0
(#14364)
(get_function_value) fix getting value when it's 0 (#14364)
* drakxtools.spec: fix 10.2-2mdk's changelog
10.2-2mdk
* share/rpmsrate: install scim-input-pad for japanese users
2005/03/08 Olivier Blin <oblin at mandrakesoft.com>
* network/network.pm (wpa_supplicant_configure) scan hidden ssid
2005/03/08 Pixel <pixel at mandrakesoft.com>
* Xconfig/resolution_and_depth.pm: choose a 4/3 resolution by default
xbox support (by Stew)
2005/03/08 Tibor Pittich <Tibor.Pittich at phuture.sk>
* share/po/sk.po: updated slovak translation
2005/03/07 Frederic Lepied <flepied at mandrakesoft.com>
* share/rpmsrate: use fonts-ttf-dejavu instead of fonts-ttf-vera (bug
#13493).
2005/03/07 Funda Wang <fundawang at linux.net.cn>
* lang.pm: added gcin setup
Added settings for new traditional chinese IME gcin.
2005/03/07 Olivier Blin <oblin at mandrakesoft.com>
* standalone/drakconnect: handle NEEDHOSTNAME and DHCP_HOSTNAME in Manage
interface
move DHCP settings in a notebook page
* network/netconnect.pm: delete gateway if appropriate when configuring
DSL devices too (#13978)
* mdk-stage1/dhcp.h: export dhcp_domain too
* mdk-stage1/network.c: remove spurious space
try to reuse hostname and domain information from dhcp step (#14285)
ask if the http proxy should be used for ftp (#13492)
don't segault if proxy step is cancelled
2005/03/07 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po: updated Bengali file
2005/03/07 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
* share/po/nb.po: more and more fixes
2005/03/07 Pixel <pixel at mandrakesoft.com>
* diskdrake/interactive.pm: allow live resizing of reiserfs on lvm (as
tested by Gaetan Lehmann). not tested
* share/themes-galaxy.rc, install_gtk.pm, share/themes-blue.rc,
share/list:
- 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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.2-1mdk
* share/po/br.po: update
2005/03/06 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
* share/po/nb.po: more fixes..
2005/03/06 Pixel <pixel at mandrakesoft.com>
* diskdrake/interactive.pm, diskdrake/resize_ntfs.pm: ensure ntfsresize is
available
2005/03/06 shivahuang
* share/po/zh_TW.po: updated po files
2005/03/06 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/fr.po: proofreading (gerard delafond)
2005/03/06 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/03/05 Olivier Blin <oblin at mandrakesoft.com>
* network/adsl.pm: set Linetype in eagle-usb.conf to use CMVs
create CMV symlinks for both POTS and ISDN lines
2005/03/05 shivahuang
* share/po/zh_TW.po: updated po files
2005/03/04 Olivier Blin <oblin at mandrakesoft.com>
* network/adsl.pm: CMV support for eagle-usb
* mdk-stage1/probing.c: remove unused variable
* network/netconnect.pm: copy provider_id tag too
add @network::ethernet::dhcp_clients
* detect_devices.pm: add is_lan_interface
* mdk-stage1/stage1.c: set MODE_TESTING too if DEBUGSTAGE1 is set
* standalone/drakconnect: perl_checker fix
allow to modify DHCP settings too
use detect_devices::is_lan_interface
* network/ethernet.pm: add @network::ethernet::dhcp_clients
* network/adsl_consts.pm: use provider_id as key instead of id
add provider IDs, comments, cleanups
2005/03/04 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
* share/po/nb.po: 100% good to go!:)
A few more fixes:)
100%!
:)
2005/03/04 Pixel <pixel at mandrakesoft.com>
* 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 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_steps_gtk.pm: Disallow to delect the first media listed in the
"hdlists" file.
* pkgs.pm: Modify new string in order to merge with KDE translations
Fix passing installation method instead of description to
install_any::getFile
Add a wait message when downloading hdlists from network
* share/po/fr.po: Translation nit
* install_any.pm: Add an explicit error message instead of a built-in
cryptic one (bug #14243)
2005/03/04 shivahuang
* share/po/zh_TW.po: updated po files
2005/03/04 Till Kamppeter <till at mandrakesoft.com>
* printer/default.pm:
- Let printerdrake recognize if the user edited /etc/cups/client.conf
manually.
2005/03/03 huftis
* share/po/nn.po: Updated Norwegian Nynorsk translation.
2005/03/03 Olivier Blin <oblin at mandrakesoft.com>
* detect_devices.pm: add ralink RT2x00 interfaces type in comment
* network/netconnect.pm: delete gateway settings if gateway device is
invalid too (#11761)
2005/03/03 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
share/po/af.po, share/po/az.po, share/po/pt.po, share/po/fr.po,
share/po/ta.po, share/po/vi.po, share/po/nl.po, share/po/de.po,
share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
share/po/el.po, share/po/uz@Latn.po: Added translation for "recommended"
string
2005/03/03 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_steps_gtk.pm, install_any.pm: perl_checker fixes
Add a progress bar when copying rpms from the media to the hard disk
* commands.pm: Avoid unnecessary stats.
* share/po/nb.po: Fix .po syntax
2005/03/03 shivahuang
* share/po/zh_TW.po: updated po files
updated po files
2005/03/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/br.po: update
update
2005/03/03 Youcef Rabah Rahal <rahal at arabeyes.org>
* share/po/ar.po: Sync with Arabeyes CVS
2005/03/02 Olivier Blin <oblin at mandrakesoft.com>
* standalone/net_applet: refresh every second, and do not reread network
conf at each refresh
* network/netconnect.pm: delete gateway settings if reconfiguring the
gateway interface to dhcp
2005/03/02 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/zh_TW.po: fixed menu
* share/po/af.po: updated po file
small fix in Afrikaans file
* share/po/bg.po: fixed menus
2005/03/02 Pixel <pixel at mandrakesoft.com>
* bootloader.pm: handle boot-as and master-boot (bugzilla #13846)
fix comment
* Xconfig/xfree.pm: add the various "names" for standard resolutions
sort CVT_ratios by preference
"keyboard" InputDevice can also be called "kbd"
* install_any.pm: screenshot_dir__and_move(): use /tmp which is ramdisk
instead of /tmp/stage2 which is now always read-only
2005/03/02 rstandtke
* share/po/de.po: some additions
2005/03/02 Till Kamppeter <till at mandrakesoft.com>
* printer/main.pm, printer/printerdrake.pm:
- Made the "(recommended)" in the printer/driver lists translateable
(bug
10651)
* 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 Tibor Pittich <Tibor.Pittich at phuture.sk>
* share/po/sk.po: updated slovak translation
2005/03/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: fix 10.2-0.35mdk's changelog
10.2-0.35mdk
* ugtk2.pm (create_scrolled_window) Gtk2::Html::View has native scrolling
support and
thus behave badly with GtkViewport
2005/03/01 Daouda Lo <daouda at mandrakesoft.com>
* any.pm:
- webclient alternative is obsolete, launch browser with new
/usr/bin/www-browser
- check and launch browser according to wm
* standalone/drakbug:
- load link with /usr/bin/www-browser
- use any::launch_browser_with_wm func to launch better suited
browser
* standalone/drakhelp:
- load link with /usr/bin/www-browser
- use any::launch_browser_with_wm
2005/03/01 Frederic Crozat <fcrozat at mandrakesoft.com>
* share/rpmsrate: add i18n packages for mozilla-firefox
2005/03/01 Olivier Blin <oblin at mandrakesoft.com>
* mdk-stage1/probing.c: do not show a dialog box before loading network or
SCSI drivers, we'll
load it anyway ...
* diskdrake/interactive.pm: remember encryption algorithm
allow to choose encryption algorithm (#13472)
2005/03/01 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/pt.po: corrected syntax error
2005/03/01 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
* share/po/nb.po: more proof reading
2005/03/01 pjetur
* share/po/is.po: Small fixes
2005/03/01 Pixel <pixel at mandrakesoft.com>
* interactive.pm: when testing, don't silently default to newt
* mygtk2.pm: stringify using a perl_checker compliant way
- 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?)
* Xconfig/monitor.pm: fix typo
create {preferred_resolution} out of the edid detailed_timings and use
it
skip detailed_timings flagged bad_ratio
* bootloader.pm: fix buggy get_append_memsize() (bugzilla #13874)
* Xconfig/resolution_and_depth.pm: add a ratio choice, and restrict the
resolutions to this choice
- sort the whole resolutions to simplify the code, and get better
choices
- add a failsafe resolution
create {preferred_resolution} out of the edid detailed_timings and use
it
* Xconfig/xfree.pm: add 1280x600 for VAIO PCG-C1M (bugzilla #5192)
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)
- 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
* Xconfig/parse.pm: fix section with only comments (putting the comment
after the EndSection is wrong)
* lang.pm: configure iocharset and codepage option for hal
2005/03/01 Till Kamppeter <till at mandrakesoft.com>
* 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.
- 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
- Fixed add printer wizard ("Previous" and "Cancel") for printerdrake
being
run embedded in the MCC (bug 13929).
2005/03/01 Thierry Vignaud <tvignaud at mandrakesoft.com>
* network/ethernet.pm (get_eth_cards) workaround buggy kernel until
provided patch got applied (#12609)
(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)
* ugtk2.pm (Gtk2::ComboBox::set_popdown_strings) clear model before
filling the list
* 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
* Makefile.drakxtools, Makefile: fix build after pixel's pass
* drakxtools.spec: 10.2-0.34mdk
10.2-0.33mdk
* share/po/fr.po: fix bogus translation
2005/02/28 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/02/28 mbukovjan
* share/po/cs.po: Updated Czech translation.
2005/02/28 Olivier Blin <oblin at mandrakesoft.com>
* network/ethernet.pm: do not rely on broken ethtool from hostap drivers
* drakxtools.spec: add net_applet menu entry
* network/netconnect.pm: enhance "wrong network mask format" message
(#10712)
allow to modify DHCP timeout
handle PEERYP and PEERNTPD too (#9982)
peerdns support (and assorted space fixes)
apply USERCTL settings for modems too
* standalone/net_applet: netprofile support, allow to select watched
interface
* standalone/drakconnect: enhance "wrong network mask format" message
(#10712)
* network/network.pm: write DHCP_TIMEOUT for DHCP connections
write PEERYP and PEERNTPD for DHCP connections
write PEERDNS for DHCP interfaces
2005/02/28 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/fr.po: updated French file
* 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.
* share/po/sl.po: updated Slovenian file
updated Slovenian file
* share/po/vi.po: updated Vietnamese file
* share/po/fa.po, share/po/nl.po, share/po/it.po, share/po/bs.po,
share/po/sk.po, share/po/br.po, share/po/cy.po, share/po/et.po,
share/po/ja.po, share/po/da.po, share/po/pt.po: updated Welsh, Persian,
Italian adn Japanese files;
ran msgmerge on all *.po files
2005/02/28 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
* share/po/nb.po: minor fixes
updates from eskild hustvedt:)
a few fixes
2005/02/28 Pixel <pixel at mandrakesoft.com>
* rescue/make_partimage_save_rest_all, rescue/make_rescue_img:
- in rest_all, try to restore from the cdrom
- remove the debugging setting of leia as the partimage server
* Xconfig/resolution_and_depth.pm:
- 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
- drop hashes
- handle lower than 640 resolutions
(prepare for next move, introducing aspect ratio in choose_gtk)
* mdk-stage1/disk.c, mdk-stage1/cdrom.c, mdk-stage1/stage1.h,
mdk-stage1/tools.c, mdk-stage1/directory.c: new option "keepmounted" to
allow the rescue media to be kept mounted
* Xconfig/various.pm, any.pm, Makefile.config, drakxtools.spec,
share/list, Xconfig/xfree.pm, Makefile.drakxtools, Xconfig/monitor.pm,
tools/Makefile, install2.pm:
- 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
* rescue/list: add xfs_repair to the rescue (bugzilla #10488)
* bootloader.pm: fix typo
have install.sh 755 (as suggested by Vincent Meyer)
2005/02/28 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_steps_gtk.pm: Make regexps a bit more lenient.
2005/02/28 Stew Benedict <sbenedict at mandrakesoft.com>
* standalone/drakTermServ: Bugzilla 13998 - Sort list of nbis.
Bugzilla 14031 - cleint files created as char devices.
2005/02/28 Till Kamppeter <till at mandrakesoft.com>
* printer/printerdrake.pm, install_steps_interactive.pm:
- Let country and not language decide about default paper size
2005/02/28 Tibor Pittich <Tibor.Pittich at phuture.sk>
* share/po/sk.po: updated slovak translation
2005/02/28 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: fix adding net_applet menu entry
10.2-0.32mdk
* share/po/br.po: update
typo fixes
2005/02/28 Youcef Rabah Rahal <rahal at arabeyes.org>
* share/po/ar.po: Arabic QA
QA for Arabic
2005/02/27 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/02/27 Reinout van Schouwen <reinout at cs.vu.nl>
* share/po/nl.po: Updated Dutch (nl) translation
by Reinout van Schouwen <reinout@cs.vu.nl>
* DrakX
Updated Dutch (nl) translation
by Reinout van Schouwen <reinout@cs.vu.nl>
* DrakX
2005/02/26 Alice Lafox <alice at lafox.com.ua>
* share/po/ru.po: translated new 78 messages
2005/02/26 vljubovic
* share/po/bs.po: Latest changes to Bosnian files
2005/02/25 Keld Jørn Simonsen <keld at dkuug.dk>
* share/po/da.po: updates
gi/perl-install/share/po/da.po
2005/02/25 Olivier Blin <oblin at mandrakesoft.com>
* network/network.pm: write USERCTL too
* network/netconnect.pm: pre-detect modem device (instead of mouse device
...) and do it at the
right place
remove debug code (spotted by Pixel)
allow to enable USERCTL
space fixes
space fixes
allow to select "unlisted" provider in adsl provider list
* network/tools.pm: do not ask for root password if interface allows
USERCTL
2005/02/25 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po: updated Bengali file
* share/po/wa.po: small update
* share/po/sv.po, share/po/gl.po: updated Swedish file; corrected
"default:LTR" entry for Galician
* keyboard.pm: changed keyboard to "us" for Chinese
2005/02/25 Pixel <pixel at mandrakesoft.com>
* Xconfig/resolution_and_depth.pm: now that i understand hsync and vsync,
i can filter using HorizSync much more nicely :)
2005/02/25 Till Kamppeter <till at mandrakesoft.com>
* printer/printerdrake.pm:
- Driver "oki4w" was renamed to "oki4drv". Adapted printerdrake
appropriately
2005/02/25 Tibor Pittich <Tibor.Pittich at phuture.sk>
* share/po/sk.po: updated slovak translation
updated slovak translation
2005/02/25 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/drakxtv: perl_checker fixes
* standalone/drakfont (backend_mod) fix uninstalling fonts (#9324)
(backend_mod) fix uninstalling fonts (#9324)
rollback unwanted changes
(backend_mod) fix uninstalling fonts (#9324)
* drakxtools.spec: 10.2-0.31mdk
10.2-0.30mdk
* share/po/ja.po: fix wrong key accelerator (#13540)
* standalone/draksec: rollback unwanted changes
* standalone/logdrake: simplify
perl_checker fixes
* share/po/br.po: update
* standalone/drakconnect: perl_checko fixes (especially fix wrong message)
2005/02/24 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation.
2005/02/24 huftis
* share/po/nn.po: Updated Norwegian Nynorsk translation.
2005/02/24 Keld Jørn Simonsen <keld at dkuug.dk>
* 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 mareklaane
* share/po/et.po: Updated translation.
2005/02/24 Olivier Blin <oblin at mandrakesoft.com>
* network/network.pm: do not update kde config file if kde isn't installed
(spotted by Mathieu Geli)
fix typos
minimal WPA support
always restart wlan-ng interface
move wlan-ng stuff in network::network
* network/tools.pm: minimal WPA support
* network/netconnect.pm: minimal WPA support
move wlan-ng stuff in network::network
space cleanup
spaces cleanup
2005/02/24 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/ar.po, share/po/ltg.po,
share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
share/po/sq.po, share/po/it.po, share/po/lv.po, share/po/hu.po,
share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
share/po/sl.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
share/po/mk.po, share/po/is.po, share/po/hi.po, share/po/af.po,
share/po/az.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
share/po/ta.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
share/po/uz@Latn.po: updated pot file
* standalone/net_applet: no space before question marks in English
no space after colon in English
* printer/printerdrake.pm: move "HPOJ" and "HPLIP" as parameters of
translatable strings,
so common phrases need to be translated only once.
perl_cheker doesn't like a line break between function name and
parenthesis
* share/po/nn.po, share/po/wa.po: updated Walloon file
updated pot file
* share/po/da.po, share/po/eu.po: updated Basque and Danish files
updated pot file
* share/po/es.po: updated Spanish file
updated pot file
2005/02/24 Pixel <pixel at mandrakesoft.com>
* 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)
fix typo
fix typo
fix typo
2005/02/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/lt.po: merge in strings from urpmi & rpmdrake
* standalone/drakups: perl_checker fixes
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
adapt to new Libconf API
* share/po/br.po: merge in strings from urpmi & rpmdrake
update
minor update
* drakxtools.spec: 10.2-0.29mdk
* .perl_checker: blacklist bad Libconf package
* share/po/eo.po: merge in strings from urpmi & rpmdrake
update
* share/po/id.po, share/po/ro.po, share/po/mk.po, share/po/th.po,
share/po/af.po, share/po/az.po, share/po/sr@Latn.po, share/po/ko.po,
share/po/bg.po, share/po/lv.po: update
* standalone/drakxtv: explain
fix #13865: scan TV channels for TV ocards that do not require any
driver configuration
2005/02/24 willysr
* share/po/id.po: Updated
2005/02/23 fisher
* share/po/uk.po: ukrainian tr-tion update
2005/02/23 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/02/23 Olivier Blin <oblin at mandrakesoft.com>
* standalone/drakconnect: remove spurious spaces
* network/modem.pm: remove all non-digit characters in phone number
(#10813)
* network/network.pm: handle wpa_supplicant files
2005/02/23 Pixel <pixel at mandrakesoft.com>
* install_any.pm: fix
* interactive/gtk.pm:
- fix displaying "Advanced" instead of "Basic" in advanced_state by
default
- cleanup
* ugtk2.pm: fix usage of create_file_selector()
* common.pm: cleanup is_xbox() here too
* detect_devices.pm: write code correctly
"pae" flag in the cpu is needed for new kernel
SuSE also have "Hand Held" as a laptop (ch_type in { 8, 9, 10, 11, 14 })
2005/02/23 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* ugtk2.pm: Force to open file selector as a modal window (bug 13942)
* share/po/zh_TW.po: Fix missing \n
2005/02/23 Stew Benedict <sbenedict at mandrakesoft.com>
* keyboard.pm, detect_devices.pm, common.pm, Xconfig/monitor.pm,
Xconfig/xfree.pm: XBox support - XFdrake
* standalone/drakbackup, standalone/drakTermServ: Drop banner, using up
too much window space. Perl_checker mods.
2005/02/23 shivahuang
* share/po/zh_TW.po: merge correctly between 1.352 and 1.353
2005/02/23 Till Kamppeter <till at mandrakesoft.com>
* printer/printerdrake.pm:
- Fixed bug of accentuated characters in PPDs not correctly reproduced
in the
printer options dialog.
* printer/main.pm:
- Made possible modifying the options on a non-Foomatic queue not set
up
with printerdrake.
2005/02/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
* install_any.pm (default_packages) setup acerk for another laptop (which
doesn't need
any option)
* network/adsl_consts.pm: add norwegian ADSL providers (Eskild Hustvedt)
* share/po/br.po: update
2005/02/23 vljubovic
* share/po/bs.po: Fixes in Bosnian translation
2005/02/22 Alice Lafox <alice at lafox.com.ua>
* share/po/ru.po: finished translation for 10.2
2005/02/22 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
melo
2005/02/22 Olivier Blin <oblin at mandrakesoft.com>
* standalone/net_applet: reflect new label from drakconf
disable activefw by default
2005/02/22 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po: updated Bengali file
* share/po/ky.po: updated Kirghiz file
* share/po/sl.po: updated Slovenian file
2005/02/22 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_steps_gtk.pm, pkgs.pm: Verify free space on disk for copying
rpms
* install_any.pm: Fix location of hdlist for rpms copied on disk
2005/02/22 rstandtke
* share/po/de.po: some fixes
2005/02/22 shivahuang
* share/po/zh_TW.po: updated po files
2005/02/22 Till Kamppeter <till at mandrakesoft.com>
* printer/printerdrake.pm:
- Corrected default settings for printer auto-detection in beginner's
mode
2005/02/22 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/drakfont (interactive_mode) typo fix
* standalone/drakconnect, standalone/net_applet: reuse the very same
message
unbreak blino change: reuse string from mcc since that's what will be
displayed and allter *all* callers
* drakxtools.spec: 10.2-0.28mdk
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/uk.po, share/po/mn.po, share/po/am.po, share/po/lt.po,
share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
share/po/tl.po, share/po/eo.po, share/po/el.po, share/po/bg.po,
share/po/cs.po, share/po/uz@Latn.po: merge missing strings from mcc's
domain
* share/rpmsrate, lang.pm: adapt to new uim splitting
2005/02/22 Youcef Rabah Rahal <rahal at arabeyes.org>
* share/po/ar.po: Arabic QA
2005/02/21 huftis
* share/po/nn.po: Updated Norwegian Nynorsk translation.
2005/02/21 Olivier Blin <oblin at mandrakesoft.com>
* standalone/drakids: add an explanation about the Gtk2::SimpleList
workaround
uggly workaround of Gtk2::SimpleList bugs
2005/02/21 Pixel <pixel at mandrakesoft.com>
* share/rpmsrate: fix scim-anthy appearing twice
2005/02/21 Till Kamppeter <till at mandrakesoft.com>
* 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 Tibor Pittich <Tibor.Pittich at phuture.sk>
* share/po/sk.po: updated slovak translation
2005/02/21 Alice Lafox <alice at lafox.com.ua>
* share/po/ru.po: part. update
2005/02/21 huftis
* share/po/nn.po: Updated Norwegian Nynorsk translation.
2005/02/21 mareklaane
* share/po/et.po: Translation fixes.
2005/02/21 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/sl.po: updated Slovenian file
2005/02/21 Pixel <pixel at mandrakesoft.com>
* 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 Tibor Pittich <Tibor.Pittich at phuture.sk>
* share/po/sk.po: updated slovak translation
2005/02/20 Funda Wang <fundawang at linux.net.cn>
* lang.pm: New koi8-u font size. bug#13809
2005/02/20 huftis
* share/po/nn.po: Updated Norwegian Nynorsk translation
2005/02/20 Olivier Blin <oblin at mandrakesoft.com>
* standalone/drakfont: perl_checker fixes
really use the file selection message
allow to select multiple files
2005/02/20 Pablo Saratxaga <pablo at mandrakesoft.com>
* keyboard.pm: keyboard values for "lb" language.
2005/02/20 pjetur
* share/po/is.po: End of days work
End of another day
2005/02/20 Till Kamppeter <till at mandrakesoft.com>
* 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/19 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
share/po/el.po, share/po/uz@Latn.po: small typo fix
* keyboard.pm: small fix
2005/02/19 pjetur
* share/po/is.po: More translations
2005/02/19 Till Kamppeter <till at mandrakesoft.com>
* scanner.pm:
- Added support for the new keywords MANUAL, MANUALREQUIRED, and
KERNEL in the
scanner database
2005/02/18 fisher
* share/po/uk.po: translation update
2005/02/18 Funda Wang <fundawang at linux.net.cn>
* lang.pm: scim-chinese has been renamed to scim-pinyin.
* share/rpmsrate: uim has a new gtk frontend
scim-chinese has been renamed to scim-pinyin.
2005/02/18 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/02/18 Olivier Blin <oblin at mandrakesoft.com>
* network/activefw.pm: support GetReports method
* standalone/net_applet: remove spurious spaces
show unprocessed attacks when the applet starts
store attacks in a queue instead of blocking DBus bus with a Gtk2 main
loop
let the daemon handle the blacklist policy in automatic mode
* standalone/drakgw: indentation/spaces cleanups
* Makefile.config, drakxtools.spec, Makefile.drakxtools: don't package
drakids for now
2005/02/18 Pablo Saratxaga <pablo at mandrakesoft.com>
* lang.pm: a small note so I don't forget why I did it that way
* share/po/sl.po: updated po file
updated Slovenian file
* share/po/pt.po: updated Slovenian file
2005/02/18 Pixel <pixel at mandrakesoft.com>
* install_steps_interactive.pm, partition_table.pm: media_browser returns
a filehandle when non save
* any.pm: really fix the typo!
fix typo
factorize code in ask_window_manager_to_logout_then_do()
* install_any.pm:
- add HTTP support in media_browser
- HTTP support is non save only
media_browser returns a filehandle when non save
* diskdrake/interactive.pm: use ->ask_filename instead of ->ask_file (esp.
useful in "save" mode)
factorize code in ask_window_manager_to_logout_then_do()
don't reboot if the window manager did not exit
media_browser returns a filehandle when non save
* install_steps.pm: generated auto_install.cfg.pl can contain a somewhat
empty printer config, but not really empty
don't let upNetwork break /etc/protocols when the install is not done
yet
generated auto_install.cfg.pl can contain a somewhat empty printer
config, but not really empty
generated auto_install.cfg.pl can contain a somewhat empty printer
config, but not really empty
* standalone/XFdrake: factorize code in
ask_window_manager_to_logout_then_do()
* 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)
* 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 Stew Benedict <sbenedict at mandrakesoft.com>
* detect_devices.pm: Detect XBox, don't probe for floppy on XBox.
2005/02/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/rpmsrate: prefer uim-qt for japanese under KDE
* share/po/ga.po: update
2005/02/18 Youcef Rabah Rahal <rahal at arabeyes.org>
* share/po/ar.po: Sync with Arabeyes CVS -> 100% Arabic translation :-)
2005/02/17 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/02/17 Olivier Blin <oblin at mandrakesoft.com>
* Makefile: probe.c is located in c/
* network/shorewall.pm: definitively get rid off net_cnx scripts
add get_default_device
remove unneeded test
use network::shorewall::get_net_device
add and use network::shorewall::get_net_device
* network/netconnect.pm: titifix
perl_checker fix
remove unused network::netconnect::get_net_device
* standalone/drakconnect: fix typo
perl_checker fixes
don't use net_cnx_up anymore
* network/tools.pm: perl_checker fixes
revert some previous commit
net_cnx scripts shouldn't be used anywhere now
remove set_cnx_script
remove write_cnx_script
* standalone/drakvpn: perl_checker fixes
use network::shorewall::get_net_device
* drakxtools.spec: ship drakids in drakxtools
do not ship activefw.pm in drakxtools-backend but in drakxtools
* Makefile.drakxtools: move drakids in /usr/bin
* standalone/drakids: clear white list too
* standalone/net_applet: allow to enable automatic mode from popup
use only one 'edge' ButtonBox
* standalone/drakgw: perl_checker fixes
use network::shorewall::get_net_device
net_cnx scripts shouldn't be used anymore
* Makefile.config: ship drakids
2005/02/17 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/tg.po, share/po/ltg.po, share/po/nb.po, share/po/uz.po,
share/po/sk.po, share/po/ru.po, share/po/pt_BR.po, share/po/br.po,
share/po/is.po, share/po/sl.po, share/po/nn.po, share/po/et.po,
share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po, share/po/vi.po,
share/po/fr.po, share/po/nl.po, share/po/it.po, share/po/uk.po,
share/po/eu.po, share/po/es.po, share/po/DrakX.pot, share/po/sv.po,
share/po/sr.po, share/po/de.po, share/po/fi.po, share/po/he.po,
share/po/cy.po, share/po/da.po, share/po/cs.po, share/po/uz@Latn.po:
updated Slovenian file;
fixed various MandrakeSoft -> Mandrakesoft etc.
2005/02/17 pjetur
* share/po/is.po: cleaning up more
2005/02/17 Pixel <pixel at mandrakesoft.com>
* diskdrake/interactive.pm: in case someone use diskdrake only to create
partitions, shut up the predefined mount point automatic choice
* 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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/service_harddrake: perl_checko cleanup
* standalone/keyboarddrake: simplify
* share/rpmsrate: only install gnome-volume-manager for KDE & GNOME
desktops
KDE uses gnome-volume-manager too
install cpufreqd on laptops w/o KDE (#13697)
* share/po/br.po: update
2005/02/16 Frederic Crozat <fcrozat at mandrakesoft.com>
* share/rpmsrate: install nautilus-filesharing when installing nautilus
install desktop-printing when installing GNOME
2005/02/16 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/02/16 Olivier Blin <oblin at mandrakesoft.com>
* standalone/drakids: use foreach (perl_checker)
fix whitelist display and unwhitelist call
use drakfirewall icon
handle Whitelist signal
handle whitelist
allow to sort blacklist by date, attacker or attack type
* standalone/net_applet: rename get_mode as get_interactive
* network/activefw.pm: rename get_mode as get_interactive
add generic call_method sub to factorize
typo fix
handle whitelist
2005/02/16 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/sl.po: updated Slovenian file
updated Slovenian file
* share/po/vi.po: updated Vietnamese file
2005/02/16 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
* share/po/nb.po: More updates:)
minor update
2005/02/16 Pixel <pixel at mandrakesoft.com>
* patch/patch-updatemodules.pl: for the real 10_1, not the 10_1-update
branch
2005/02/16 Till Kamppeter <till at mandrakesoft.com>
* printer/main.pm, printer/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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* harddrake/data.pm: list usb mice that have not driver set as "Mouse:xxx"
in usbtable (#13575)
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/sv.po,
share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
share/po/sq.po, share/po/it.po, share/compssUsers.pl, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/sl.po, share/po/nn.po,
share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/uk.po,
share/po/mn.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
share/po/az.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
share/po/ta.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
share/po/eo.po, share/po/el.po, share/po/bg.po, share/po/cs.po,
share/po/uz@Latn.po: typo fix (Per Oyvind Karlsen)
* standalone/keyboarddrake: better display of keyboard layouts by using a
tree (rationale: big
pull-down menu is slow to browse)
* share/rpmsrate: rollback
typo fix (Per Oyvind Karlsen)
include more EVMS packages
* drakxtools.spec: 10.2-0.27mdk
* share/po/br.po: typo fix (Per Oyvind Karlsen)
update
update
typo fixes
2005/02/16 Youcef Rabah Rahal <rahal at arabeyes.org>
* share/po/ar.po: Arabic translation (sync with arabeyes CVS)
2005/02/15 Olivier Blin <oblin at mandrakesoft.com>
* standalone/drakids: perl_checker fixes
delete unblacklisted entries from the list
handle Init signal (look again for daemon if received)
clear blacklist when needed
add quit button
initial import
* standalone/net_applet: fix typo again
fix typo
remove unneeded variable
use network::activefw;
* network/activefw.pm: allow to look for daemon after startup
add unblacklist
initial import
2005/02/15 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/nb.po: corrected encoding
* share/po/sr@Latn.po: fixed cyrillic mix
* share/po/th.po: small fix
small fix
* share/po/sl.po: updated Slovenian file
2005/02/15 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
* share/po/nb.po: More updates again!:)
Even more fixes:)
2005/02/15 Pixel <pixel at mandrakesoft.com>
* mygtk2.pm: add FileChooser creation and rollback ugly ->run thing
(hopefully now unneeded)
* ugtk2.pm: _ask_dir and _ask_file now use FileChooser
* tools/cvslog2changelog.pl: fix typo
* install_steps_gtk.pm, diskdrake/interactive.pm, install_any.pm,
install_steps_interactive.pm: replace load/save from floppy with using
media_browser()
* interactive/gtk.pm, interactive.pm: create ->ask_filename and
->ask_directory to replace ->ask_file
2005/02/15 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Fix bug 13661 : umounting a supplementary CD wasn't done
cleanly after failure
* install_steps_gtk.pm, pkgs.pm: Support media size check when copying
every rpm on HD
2005/02/15 Till Kamppeter <till at mandrakesoft.com>
* printer/printerdrake.pm: Force only ASCII letters, numbers, and
underscores being used in print queue names.
2005/02/15 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/bn.po, share/po/ms.po, share/po/id.po, share/po/ru.po,
share/po/gl.po, share/po/pt_BR.po, share/po/br.po, share/po/th.po,
share/po/sl.po, share/po/hr.po, share/po/tr.po, share/po/mt.po,
share/po/be.po, share/po/mn.po, share/po/ko.po, share/po/sr.po,
share/po/pl.po, share/po/fi.po, share/po/he.po, share/po/lt.po,
share/po/ca.po, share/po/tg.po, share/po/uz.po, share/po/mk.po,
share/po/ro.po, share/po/is.po, share/po/af.po, share/po/hi.po,
share/po/az.po, share/po/zh_TW.po, share/po/ta.po, share/po/sq.po,
share/po/sr@Latn.po, share/po/eo.po, share/po/bg.po, share/po/el.po,
share/po/lv.po: update
2005/02/15 Olivier Blin <oblin at mandrakesoft.com>
* network/activefw.pm: initial import
* standalone/net_applet: remove unneeded variable
use network::activefw;
2005/02/15 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/th.po: small fix
small fix
automerging
* share/po/nb.po: corrected encoding
* share/po/ltg.po, share/po/ky.po, share/po/uz.po, share/po/ms.po,
share/po/ro.po, share/po/fur.po, share/po/br.po, share/po/hr.po,
share/po/tr.po, share/po/ta.po, share/po/sr@Latn.po, share/po/sq.po,
share/po/ga.po, share/po/be.po, share/po/mn.po, share/po/am.po,
share/po/ko.po, share/po/sr.po, share/po/lt.po, share/po/eo.po,
share/po/el.po, share/po/lv.po, share/po/uz@Latn.po: automerging
2005/02/15 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
* share/po/nb.po: Even more fixes:)
2005/02/15 Pixel <pixel at mandrakesoft.com>
* mygtk2.pm: add FileChooser creation and rollback ugly ->run thing
(hopefully now unneeded)
* install_steps_gtk.pm, diskdrake/interactive.pm, install_any.pm,
install_steps_interactive.pm: replace load/save from floppy with using
media_browser()
* ugtk2.pm: _ask_dir and _ask_file now use FileChooser
* tools/cvslog2changelog.pl: fix typo
* interactive/gtk.pm, interactive.pm: create ->ask_filename and
->ask_directory to replace ->ask_file
2005/02/15 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_steps_gtk.pm, pkgs.pm: Support media size check when copying
every rpm on HD
2005/02/14 Funda Wang <fundawang at linux.net.cn>
* lang.pm: Modified font settings for zh_CN and zh_TW, 10pt would be fine
to New Sung
rather than 14pt.
2005/02/14 peroyvind
* share/po/nb.po: Updates from Eskild Hustvedt:)
2005/02/14 Thierry Vignaud <tvignaud at mandrakesoft.com>
* detect_devices.pm (probeSerialDevices) simplify
* standalone/service_harddrake: better style
2005/02/13 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/02/13 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/ja.po: updated Japanese file
2005/02/13 Pixel <pixel at mandrakesoft.com>
* Xconfig/monitor.pm: protect against bad depth (may occur on ppc?)
2005/02/13 Reinout van Schouwen <reinout at cs.vu.nl>
* share/po/nl.po: Updated Dutch (nl) translation
by Reinout van Schouwen <reinout@cs.vu.nl>
* drakconf, DrakX
2005/02/13 Till Kamppeter <till at mandrakesoft.com>
* printer/main.pm, printer/printerdrake.pm: Allow HPLIP setup also when
setting up the print queue manually.
2005/02/12 mbukovjan
* share/po/cs.po: Updated Czech translations
2005/02/12 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/eu.po, share/po/DrakX.pot: updated Basque file
* share/po/cy.po: updated Welsh file
2005/02/12 rstandtke
* share/po/de.po: some additions
2005/02/11 Frederic Crozat <fcrozat at mandrakesoft.com>
* share/rpmsrate: GNOME is now using gnome-volume-manager instead of
magicdev
-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 fisher
* share/po/uk.po: translation update
2005/02/11 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
* tools/ddcprobe/Makefile: ppc fixes (danny)
2005/02/11 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/02/11 mareklaane
* share/po/et.po: Updated and fixed translation.
2005/02/11 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* lang.pm: Don't use the RPM_LANG_INSTALL environment variable anymore
* install_any.pm: Sort media names in recapitulative message
2005/02/11 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/service_harddrake: fix removing a PCMCIA controller
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/sv.po,
share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
share/po/da.po, share/po/ca.po, share/po/ar.po, share/po/ltg.po,
share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
share/advertising/10.pl, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/uk.po, share/po/mn.po, share/po/am.po, share/po/lt.po,
share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
share/po/tl.po, share/po/eo.po, share/po/el.po, share/po/bg.po,
share/po/cs.po, share/po/uz@Latn.po: fix CD-ROM acronym
* drakxtools.spec: 10.2-0.25mdk
* harddrake/sound.pm: align
add snd-hdspm & snd-indigo
add snd-emu10k1x
* pkgs.pm: do not favor perl-GTK
* modules.pm: add various/crypto category (support for hardware
accelerated crypto)
(write_preload_conf) preload padlock driver for VIA C3 that have RNG
(crypto hw) enabled
2005/02/11 Youcef Rabah Rahal <rahal at arabeyes.org>
* share/po/ar.po: Arabic translation + a few fixes
Arabic translation
2005/02/10 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation
2005/02/10 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/02/10 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/fr.po: updated Slovenian file
updated French file
* share/po/sl.po: updated Slovenian file
2005/02/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/list: include dmraid
* share/rpmsrate: install hotkeys even when KDE isn't selected
* docs/HACKING: add another required package (dmraid)
* detect_devices.pm (isTVcard) better style
(probeSerialDevices) really "install" serial modules
2005/02/10 Youcef Rabah Rahal <rahal at arabeyes.org>
* share/po/ar.po: Sync with arabic translation CVS
2005/02/10 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/fr.po: updated French file
* share/po/ja.po: updated Japanese file
2005/02/10 Till Kamppeter <till at mandrakesoft.com>
* printer/main.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).
* printer/printerdrake.pm: Tell that card reader is USB storage in the
HPLIP help text only if the device is actually connected via USB.
- 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/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
* detect_devices.pm (isTVcard) only look for drivers configurable by
drakxtv
(getTVcards) rely on "multimedia/tv" category
add various/serial category and thus add support for mice and modems
connected to multiport serial cards
add network/modem category, thus adding support for ACP (Mwave) modems
* network/netconnect.pm: fix ndiswrapper installing: always install it if
needed (btw run faster if
already installed)
fix stepping back from lan interface step (impossible when using
ndiswrapper
and when there's only one interface)
simplify ndiwrapper step chaining
* drakxtools.spec: typo fix in 10.2-0.24mdk's changelog
10.2-0.24mdk
fix 10.2-0.23mdk's changelog
10.2-0.23mdk
* modules.pm (write_preload_conf) typo fix
(write_preload_conf) rely on "multimedia/tv" category, thus managing
more TV cards
(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()...)
(write_preload_conf) simplify and support multiple different AGP
controllers
(though unprobable)
(write_preload_conf) minimal DVB support: preload proper modules
add various/laptop category (only toshiba is detectable by pci_probe()
though...)
* mygtk2.pm (main) fix FileSelection (inactive & unusable window)
* share/po/br.po: update
* 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)
* harddrake/data.pm: do not detect speakers as keyboards
rely on new "multimedia/webcam" category for detecting webcams
2005/02/09 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/02/09 Olivier Blin <oblin at mandrakesoft.com>
* standalone/net_applet: perl_checker fixes
2005/02/09 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
share/po/ky.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/eu.po,
share/po/lv.po, share/po/hu.po, share/po/id.po, share/po/ru.po,
share/po/br.po, share/po/sl.po, share/po/nn.po, share/po/tr.po,
share/po/mt.po, share/po/ga.po, share/po/mn.po, share/po/uk.po,
share/po/am.po, share/po/lt.po, share/po/cy.po, share/po/tg.po,
share/po/bs.po, share/po/fur.po, share/po/mk.po, share/po/wa.po,
share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
share/po/pt.po, share/po/vi.po, share/po/fr.po, share/po/ta.po,
share/po/nl.po, share/po/de.po, share/po/tl.po, share/po/eo.po,
share/po/el.po, share/po/bg.po, share/po/cs.po, share/po/uz@Latn.po:
updated pot file
* share/po/sv.po, share/po/nb.po: updated pot file
updated Swedish and Norwegian files
* share/po/it.po: updated Italian file
updated pot file
* share/rpmsrate: Arabic-only fonts are useless for "fa" or "ur" locales
* share/po/fa.po: updated Persian file
updated pot file
* share/po/es.po: updated po file
updated pot file
* lang.pm: changed arabic font for KDE ("Roya" doesn't have ascii glyphs;
"Terafik" does)
2005/02/09 peroyvind
* share/po/nb.po: * translate the word "daemon" to norwegian
* various corrections
updated
2005/02/09 Pixel <pixel at mandrakesoft.com>
* bootloader.pm: fix ugly typo (especially causing acpi to not be set in
drakboot --boot)
2005/02/09 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* ugtk2.pm: Add the possibility to call a callback just after widget
initialisation in
ask_browse_tree_info_given_widgets().
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/sv.po,
share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
share/po/ru.po, share/po/sl.po, share/po/nn.po, share/po/tr.po,
share/po/mt.po, share/po/ga.po, share/po/mn.po, share/po/uk.po,
share/po/am.po, share/po/lt.po, share/po/cy.po, share/po/tg.po,
share/po/bs.po, share/po/fur.po, share/po/mk.po, share/po/wa.po,
share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
share/po/pt.po, share/po/fr.po, share/po/ta.po, share/po/vi.po,
share/po/nl.po, share/po/de.po, share/po/tl.po, share/po/eo.po,
share/po/bg.po, share/po/cs.po, share/po/el.po, share/po/uz@Latn.po:
Make an error message more user-friendly
* install_any.pm: Make an error message more user-friendly
make perl_checko, the little bot, happy
Remove "Cancel" button from the supplementary media selection window
2005/02/09 Till Kamppeter <till at mandrakesoft.com>
* printer/printerdrake.pm: Added automatic setup of HP printers with
HPLIP.
* printer/main.pm: Added reading the printing technology type in the HPLIP
model database.
Added automatic setup of HP printers with HPLIP.
Added subroutine to parse HPLIP device database XML file.
2005/02/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
* fs.pm (mount) let's support ntfs and reorder fs list btw (#3653)
* drakxtools.spec: 10.2-0.22mdk
10.2-0.21mdk
add bug reference in 10.1-14mdk's changelog
* standalone/service_harddrake: prevent adding spurious empty lines at end
of /etc/hotplub/blacklist on stop
2005/02/08 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/02/08 mareklaane
* share/po/et.po: Menus and some more translation fixes.
2005/02/08 Olivier Blin <oblin at mandrakesoft.com>
* drakxtools.spec: start automatically net_applet in fluxbox and XFce4 too
2005/02/08 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/fr.po: updated pot file
updated French file
updated pot file
* share/po/gl.po: updated pot file
updated pot file
updated pot file
* share/keyboards.tar.bz2, keyboard.pm: synchronized keyboards with X11;
added second bengali layout;
make Serbian cyrillic use Serbian latin (isntead of "us") for latin
layout
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/pt_BR.po,
share/po/th.po, share/po/et.po, share/po/hr.po, share/po/be.po,
share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
share/po/pl.po, share/po/fi.po, share/po/he.po, share/po/ca.po,
share/po/da.po, share/po/ar.po, share/po/ltg.po, share/po/nb.po,
share/po/ky.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
share/po/ga.po, share/po/uk.po, share/po/mn.po, share/po/am.po,
share/po/lt.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
share/po/ta.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
share/po/eo.po, share/po/el.po, share/po/bg.po, share/po/cs.po,
share/po/uz@Latn.po: updated pot file
updated pot file
* share/po/ja.po: updated pot file
updated pot file
updated Japanese file
* printer/printerdrake.pm: translatable string already in use
* standalone/drakbug: "%s" is not a translatable thing (changed N() ->
translate())
* share/po/cy.po: updated Welsh file
updated pot file
updated pot file
2005/02/08 peroyvind
* share/po/nb.po: complete translation from Eskild:)
2005/02/08 Pixel <pixel at mandrakesoft.com>
* any.pm: allow mounting isOtherAvailableFS filesystems read-only
* ugtk2.pm: {rwindow} is more probably a mygtk2::MagicWindow
* standalone/drakbug: cleanup this mess
* fs/format.pm: workaround perl limitation
* fs/type.pm: add iso9660 in isOtherAvailableFS
detect iso9660 filesystem
* fsedit.pm: when the partition table is empty, try to see if we are not
using the plain disk
* install2.pm, fs.pm, modules.pm, mdk-stage1/probing.c: new kernel doesn't
like usbdevfs any more, it wants usbfs
2005/02/08 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_steps_gtk.pm: Better wording for a couple of strings
Don't propose to copy RPMs on disk for ISO installation method
* any.pm: Allow upper case letters in users' real names.
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/sv.po,
share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
share/po/ru.po, share/po/sl.po, share/po/nn.po, share/po/tr.po,
share/po/mt.po, share/po/ga.po, share/po/mn.po, share/po/uk.po,
share/po/am.po, share/po/lt.po, share/po/cy.po, share/po/tg.po,
share/po/bs.po, share/po/fur.po, share/po/mk.po, share/po/wa.po,
share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
share/po/pt.po, share/po/vi.po, share/po/fr.po, share/po/ta.po,
share/po/nl.po, share/po/de.po, share/po/tl.po, share/po/eo.po,
share/po/bg.po, share/po/cs.po, share/po/el.po, share/po/uz@Latn.po:
Better wording for a couple of strings
* docs/HACKING: Add some more necessary RPMs
2005/02/08 Till Kamppeter <till at mandrakesoft.com>
* printer/main.pm: Fixed (worked around?) bug of parallel HP MF devices
not being set up correctly with HPOJ (probably bad interaction with
udev).
- 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.
* printer/detect.pm:
- Prevented restarting of HPOJ and reloading the parallel port kernel
modules
when printerdrake's queue generator is called by the hotplug script.
* printer/printerdrake.pm: Updated device destinctions for HPOJ to the
newest models.
- Prevented restarting of HPOJ and reloading the parallel port kernel
modules
when printerdrake's queue generator is called by the hotplug script.
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).
* printer/data.pm: Added hplip-model-data package to be installed.
2005/02/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.2-0.20mdk
10.1-27.5.101mdk
2005/02/08 vljubovic
* share/po/bs.po: Update translation
2005/02/07 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation
2005/02/07 mareklaane
* share/po/et.po: Some more translation fixes.
First round of translation fixes ended...
2005/02/07 Olivier Blin <oblin at mandrakesoft.com>
* network/network.pm: do not require perl-Gnome2-Gconf in drakxtools, but
use gconftool-2
make it easy to use other GConf interfaces
* network/adsl_consts.pm: add missing methods
* network/netconnect.pm: select manual adsl connection type if the network
interface was static
2005/02/07 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po,
share/po/it.po, share/po/eu.po, share/po/es.po, share/po/lv.po,
share/po/hu.po, share/po/id.po, share/po/ru.po, share/po/br.po,
share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
share/po/fur.po, share/po/mk.po, share/po/is.po, share/po/hi.po,
share/po/af.po, share/po/az.po, share/po/pt.po, share/po/fr.po,
share/po/ta.po, share/po/vi.po, share/po/nl.po, share/po/de.po,
share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
share/po/el.po, share/po/uz@Latn.po: updated pot file
* share/po/wa.po: updated Walloon file
updated pot file
* share/po/zh_TW.po, share/po/fa.po: updated Farsi file
updated pot file
2005/02/07 Pixel <pixel at mandrakesoft.com>
* mygtk2.pm:
->get('window-position') should be done on real_window
* install_steps_interactive.pm: really fix "Graphical interface - not
configured" bug
* fs/mount_options.pm: ensure some options are not set for
directories_needed_to_boot (bugzilla #13433)
* pkgs.pm: fix setting @hdlists when deselectionAllowed is false
2005/02/07 shivahuang
* share/po/zh_TW.po: conflicts between 1.336 & 1.337 solved
2005/02/07 Till Kamppeter <till at mandrakesoft.com>
* share/rpmsrate: Updated rpmsrate for new printing packages
* standalone/printerdrake: Adjusted version number.
* printer/data.pm: Use "hplip-hpijs" for HPIJS package.
2005/02/07 mareklaane
* share/po/et.po: More translation fixes.
2005/02/07 Pixel <pixel at mandrakesoft.com>
* fs/mount_options.pm: ensure some options are not set for
directories_needed_to_boot (bugzilla #13433)
* pkgs.pm: fix setting @hdlists when deselectionAllowed is false
2005/02/06 mareklaane
* share/po/et.po: More translation fixes.
More translation fixes.
Fixed translations.
2005/02/06 Till Kamppeter <till at mandrakesoft.com>
* printer/printerdrake.pm: Adapted printerdrake to new printer drivers
packages.
* printer/data.pm: Added "hplip-hpijs-ppds" to be installed when
printerdrake is started.
Adapted printerdrake to new printer drivers packages.
2005/02/05 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation
2005/02/05 Olivier Blin <oblin at mandrakesoft.com>
* network/netconnect.pm, network/tools.pm: basic ndiswrapper support
* network/network.pm: remove useless message
2005/02/05 Pablo Saratxaga <pablo at mandrakesoft.com>
* lang.pm: changed LANGUAGE value for languages that will need renaming
in the future (ph->fil, ltg->LTG)
2005/02/05 Pixel <pixel at mandrakesoft.com>
* 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 Warly <warly at mandrakesoft.com>
* install_any.pm: fix copy_rpms_on_disks
2005/02/04 Olivier Blin <oblin at mandrakesoft.com>
* network/network.pm: gnome proxy support in drakproxy
* network/netconnect.pm: handle bpalogin service
perl_checker fixes
* drakxtools.spec: 10.2-0.19mdk
2005/02/04 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Better version to install urpmi with copied RPMs
Make install_urpmi work when having copied every RPM on disk
2005/02/04 Warly <warly at mandrakesoft.com>
* share/logo-mandrake.png: beta 10.2 logo
2005/02/04 Olivier Blin <oblin at mandrakesoft.com>
* network/netconnect.pm: handle bpalogin service
perl_checker fixes
add bpalogin support for cable connections
2005/02/04 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/zh_TW.po, share/po/fr.po: updated French file; corrected syntax
errors in Chinese file
* share/po/vi.po: updated Vietnamese file
2005/02/04 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Better version to install urpmi with copied RPMs
Make install_urpmi work when having copied every RPM on disk
call hdInstallPath only once
Remove a debug trace, and perl_checker fixes
Add support to copy all RPMs to the hard drive before installation.
* share/po/zh_TW.po: Fix zh_TW problem
* install_steps.pm, install_steps_gtk.pm, pkgs.pm,
install_steps_interactive.pm: Add support to copy all RPMs to the hard
drive before installation.
* diskdrake/interactive.pm: Untranslated string
2005/02/04 shivahuang
* share/po/zh_TW.po: updated po file
2005/02/04 Warly <warly at mandrakesoft.com>
* share/logo-mandrake.png: beta 10.2 logo
2005/02/03 Alice Lafox <alice at lafox.com.ua>
* share/po/ru.po: updated
2005/02/03 David Baudens <baudens at mandrakesoft.com>
* share/rpmsrate: CAT_X at Pixel's suggestion
Always install mozilla-firefox when NETWORKING_WWW is selected
2005/02/03 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/ja.po: updated Japanese file
2005/02/03 Pixel <pixel at mandrakesoft.com>
* Xconfig/main.pm: in auto, $raw_X non empty is "ok"
* partition_table.pm: cleanup
2005/02/03 rstandtke
* share/po/de.po: some additions
2005/02/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.2-0.18mdk
2005/02/03 Youcef Rabah Rahal <rahal at arabeyes.org>
* share/po/ar.po: Arabnic translation
2005/02/02 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/02/02 Olivier Blin <oblin at mandrakesoft.com>
* network/drakfirewall.pm: fix samba port range syntax
* network/isdn.pm: fix capi kernel drivers installation
fix capi kernel drivers installation
2005/02/02 Pixel <pixel at mandrakesoft.com>
* rescue/make_rescue_img, rescue/make_partimage_save_rest_all: add a basic
partimage save_all/rest_all feature
2005/02/02 Tibor Pittich <Tibor.Pittich at phuture.sk>
* share/po/sk.po: updated slovak translation
2005/02/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/rpmsrate: prefer beep-media-player over xmms
2005/02/02 vljubovic
* share/po/bs.po: Updating Bosnian translation
2005/02/02 Youcef Rabah Rahal <rahal at arabeyes.org>
* share/po/ar.po: Arabic translation
2005/02/01 David Baudens <baudens at mandrakesoft.com>
* share/po/fr.po: Update
2005/02/01 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation
2005/02/01 mareklaane
* share/po/et.po: Updated translation.
2005/02/01 Olivier Blin <oblin at mandrakesoft.com>
* network/drakfirewall.pm: supplement previous half-fix
port 445 is used for Samba (without NetBios)
use new range syntax for smb
2005/02/01 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/it.po, share/po/cy.po: updated Italian and Welsh files
2005/02/01 Pixel <pixel at mandrakesoft.com>
* install_steps_interactive.pm: check the given mount points
* loopback.pm, diskdrake/interactive.pm, fsedit.pm: $hd is now unused, no
need to pass it
* 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())
* lvm.pm: ensure {lv_name} is set for LVM partitions
2005/02/01 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* share/po/fr.po: Restore a bunch of translation that have disappeared
2005/02/01 tsdgeos
* share/po/ca.po: updates
2005/02/01 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/br.po, share/po/ga.po: update
* share/rpmsrate: like latest rxvt-CJK, rxvt-unicode works fine with SCIM
too, but is
multilingual too (unlike rxvt)
install rxvt-CJK with the same priority as rxvt
2005/01/31 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/es.po: updated Spanish file
* share/po/fr.po: updated French file
updated French file
* share/po/sv.po: updated Swedish file
* share/po/eu.po: updated Basque file
2005/01/31 Pixel <pixel at mandrakesoft.com>
* mdk-stage1/modules.c, mdk-stage1/Makefile, rescue/make_rescue_img,
mdk-stage1/network.c, mdk-stage1/.cvsignore, mdk-stage1/network.h,
mdk-stage1/newt-frontend.c: add a dhcp-client built using mdk-stage1
code
* mdk-stage1/stage1.c: add a dhcp-client built using mdk-stage1 code
- have nothing talking about interactive when SPAWN_INTERACTIVE is
unset
- same for SPAWN_SHELL
2005/01/30 Funda Wang <fundawang at linux.net.cn>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/sr@Latn.po, share/po/sq.po,
share/po/it.po, share/po/eu.po, share/po/es.po, share/po/lv.po,
share/po/hu.po, share/po/fa.po, share/po/id.po, share/po/ru.po,
share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
share/po/fr.po, share/po/ta.po, share/po/vi.po, share/po/nl.po,
share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: s/Disk/Hard Disk/.
from Harddrake
* share/po/zh_CN.po: s/Disk/Hard Disk/. from Harddrake
Updated Simplified Chinese translation
* harddrake/data.pm: s/Disk/Hard Disk/
2005/01/30 mbukovjan
* share/po/cs.po: Updated Czech translations.
2005/01/30 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
share/po/af.po, share/po/az.po, share/po/pt.po, share/po/fr.po,
share/po/ta.po, share/po/vi.po, share/po/nl.po, share/po/de.po,
share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
share/po/el.po, share/po/uz@Latn.po: updated pot file
2005/01/29 mareklaane
* share/po/et.po: Small corrections (väljalasketeave -> info väljalaske
kohta + kasutaja õige -> lisa kasutaja).
2005/01/28 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/es.po: updated po file
* share/po/am.po: updated Amharic file
* share/po/it.po: updated Italian file
2005/01/28 Pixel <pixel at mandrakesoft.com>
* mdk-stage1/Makefile: only prompt for "Additional Drivers floppy" for
network
* fs.pm, fs/type.pm, fsedit.pm, fs/mount_options.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)
* mdk-stage1/modules.c: only prompt for "Additional Drivers floppy" for
network
don't prompt if no modules, otherwise "Ok" in ask_from_list_comments()
gets a segfault
* 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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* lang.pm (console_font_files) perl_checker cleanup
* share/po/pt_BR.po: typo fix (#12660)
* network/ethernet.pm (configure_eth_aliases) simplify
* drakxtools.spec:
- bump Glib/Gtk+2 requires
- 10.2-0.17mdk
* standalone/service_harddrake: perl_checker cleanup
fix PCMCIA autoconfig in harddrake service
make --force force harddrake to eeconfigure everything
2005/01/27 Daouda Lo <daouda at mandrakesoft.com>
* standalone/drakbug:
- vincent danen patch (barely tested)
2005/01/27 Keld Jørn Simonsen <keld at dkuug.dk>
* 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 Pixel <pixel at mandrakesoft.com>
* fs/format.pm: remove log
* 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)
fix "mdadm package not installed" during install (bugzilla #13259)
2005/01/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/br.po: typo fix
2005/01/26 huftis
* share/po/nn.po: Updated Norwegian Nynorsk translation.
2005/01/26 Pixel <pixel at mandrakesoft.com>
* partition_table.pm: nicer description() (esp. when the size is 0)
2005/01/26 Stew Benedict <sbenedict at mandrakesoft.com>
* standalone/drakbackup: Wizard, System Backup configuration problems
(#13235)
2005/01/26 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/01/26 Pixel <pixel at mandrakesoft.com>
* Xconfig/card.pm: xorg_version is 6.8.2
* install2.pm: drakx_version() is now in install_any
* network/network.pm: fix (bugzilla #13197)
* partition_table.pm: nicer description() (esp. when the size is 0)
* mygtk2.pm: fix commented code :)
fix return value of method calls on MagicWindow
->size_request doesn't return anything on the box, it is better done
on the window (for rpmdrake)
* any.pm, install_any.pm: drakx_version() is now in install_any and use
getFile() to get VERSION
2005/01/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec:
- move convert script from spec file into standalone/convert
- btw, do not try converting if uneeded
10.2-0.16mdk
* standalone/convert, Makefile.drakxtools, Makefile:
- move convert script from spec file into standalone/convert
- btw, do not try converting if uneeded
2005/01/25 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* 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 rstandtke
* share/po/de.po: some additions and fixes
2005/01/25 Pixel <pixel at mandrakesoft.com>
* install_steps.pm: fix previous commit (we don't want devfsd anymore)
* install_any.pm: fix rpmsrate_always_flags() not applied (bugzilla
#13177)
* 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 Stew Benedict <sbenedict at mandrakesoft.com>
* standalone/drakTermServ: Bugzilla 13138, 13139. (portmap check,
dhcpd.conf.pxe.include)
2005/01/25 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/br.po: update
2005/01/24 mareklaane
* share/po/et.po: Updated translation.
2005/01/24 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/ja.po: updated Japanese file
* share/po/it.po, share/po/cy.po: updated Welsh and Italian files
2005/01/24 Pixel <pixel at mandrakesoft.com>
* rescue/tree/etc/rc.sysinit: create /var/log
2005/01/24 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* share/rpmsrate: Fix duplicate flag in rpmsrate
2005/01/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/rpmsrate: fix wrong package name
2005/01/23 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/eu.po: updated Basque file
2005/01/23 Pixel <pixel at mandrakesoft.com>
* install_steps.pm: removing code setting devfs=mount or devfs=nomount
* raid.pm: put the new option auto=dev instead of auto=yes (see
mdadm-1.8.0-2mdk)
2005/01/22 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation
2005/01/22 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/eu.po: updated Basque file
updated pot file
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/es.po,
share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
share/po/uz@Latn.po: updated pot file
2005/01/22 Pixel <pixel at mandrakesoft.com>
* standalone/draksplash, standalone/drakperm, diskdrake/hd_gtk.pm,
standalone/harddrake2, standalone/drakboot, standalone/printerdrake,
standalone/logdrake, standalone/draksec, standalone/drakfloppy,
standalone/drakfont, standalone/drakups: 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 (?))
* 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/21 Pixel <pixel at mandrakesoft.com>
* Xconfig/main.pm: fix check_valid()
- 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 Stew Benedict <sbenedict at mandrakesoft.com>
* standalone/drakTermServ: Drop quasi-pxe setup in dhcp.conf as we can use
real pxe now.
Perl_checker fixes.
2005/01/21 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.2-0.15mdk
2005/01/21 Daouda Lo <daouda at mandrakesoft.com>
* standalone/printerdrake:
- main loop fix
- remove dead code
- cleanups
2005/01/21 Pixel <pixel at mandrakesoft.com>
* 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)
* Xconfig/main.pm: fix check_valid()
- 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..."
* mygtk2.pm: do show_all on the real window (this is used by drakloop)
* keyboard.pm, standalone/keyboarddrake: minimal XkbModel support
2005/01/21 Thierry Vignaud <tvignaud at mandrakesoft.com>
* harddrake/data.pm: tag devices as bridges later so that pcmcia
controllers got a chance
to be detected
* share/po/br.po: typo fixes
typo fixes
* standalone/printerdrake: fix subdialogs when embedded in mcc
fix banner's title by initializing mcc domain before ugtk2
* drakxtools.spec: 10.2-0.14mdk
10.2-0.13mdk
* 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 Pixel <pixel at mandrakesoft.com>
* 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)
* keyboard.pm, standalone/keyboarddrake: minimal XkbModel support
2005/01/20 Pixel <pixel at mandrakesoft.com>
* commands.pm: add lspcidrake
* network/shorewall.pm, network/ethernet.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)
* rescue/dirs: not useful anymore (maybe others are unneeded too?)
* rescue/tree/etc/rc.sysinit: we want /mnt at the root of the rescue
2005/01/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
* harddrake/sound.pm: snd-azx was renamed as snd-hda-intel in ALSA's CVS,
so let's prepare
ground for future
* 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 ...)
move SATA in its own category
* modules.pm (append_to_modules_loaded_at_startup_for_all_kernels)
introduce it
(wrapper around append_to_modules_loaded_at_startup())
move SATA in its own category
* install_any.pm (default_packages) simplify through
modules::append_to_modules_loaded_at_startup_for_all_kernels()
(default_packages) handle buggy laptops that're unusable without
laoding acerhk module
* install_steps.pm, install_steps_interactive.pm: move SATA in its own
category
2005/01/19 Pixel <pixel at mandrakesoft.com>
* standalone/drakconnect: adapt to new
network::ethernet::get_eth_cards_names() prototype
* standalone/keyboarddrake: use ->ask_from instead of ->ask_from_listf
(keeping the same GUI behaviour)
2005/01/19 Thierry Vignaud <tvignaud at mandrakesoft.com>
* harddrake/sound.pm (switch) add hint for translator
* drakxtools.spec: 10.2-0.12mdk
2005/01/18 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/eu.po, share/po/uz.po, share/po/am.po, share/po/uz@Latn.po:
updated Basque files;
corrected "<control>X" translations for non-latin keyboards
* share/po/gl.po: corrected "default:LTR" translation
2005/01/18 Pixel <pixel at mandrakesoft.com>
* mdk-stage1/rescue-gui.c: VERSION is now DISTRIB_VERSION
* mdk-stage1/Makefile: include gi/Makefile.config to have DISTRIB_DESCR
defined
* commands.pm: fix *old* typo
* mygtk2.pm: fix broken focus during install
* pkgs.pm: fix generating compssUsers.flat (was broken because of the
CAT_xxx switch)
* install_any.pm: auto_install compatibility: CAT_SYSTEM used to be
selected by default
2005/01/18 Pixel <pixel at mandrakesoft.com>
* install_any.pm: auto_install compatibility: CAT_SYSTEM used to be
selected by default
2005/01/17 huftis
* share/po/nn.po: Updated translation.
2005/01/17 Pixel <pixel at mandrakesoft.com>
* ugtk2.pm: fix backward compatibility
2005/01/17 Stew Benedict <sbenedict at mandrakesoft.com>
* standalone/drakbackup: Bugzilla 13056 - custom cron configuration
Bugzilla 13056 - custom cron setup
2005/01/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: require dmidecode in -backend subpackage
2005/01/16 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation
2005/01/16 huftis
* share/po/nn.po: Updated translation.
2005/01/16 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo e jorge
2005/01/16 Pixel <pixel at mandrakesoft.com>
* Xconfig/resolution_and_depth.pm: if the window is not modal, the main
XFdrake window can block it :-(
* Xconfig/xfree.pm: don't be too picky on uppercase or lowercase sections
* 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)
* Xconfig/various.pm, install_steps.pm, install_any.pm: move setupFB() in
Xconfig, and do it when needed (including when standalone)
* bootloader.pm: fix syntax error
mapdrive should not bother same_entries()
* Xconfig/main.pm: when reading an existing X config file, ensure it is
not too bad, otherwise propose to start from scratch
(bugzilla #8548)
move setupFB() in Xconfig, and do it when needed (including when
standalone)
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)
* install_steps_interactive.pm: 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)
* standalone/XFdrake: make perl_checker happy
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)
* Xconfig/card.pm: fix auto_install graphic card configuration (when one
specify the Driver)
2005/01/15 huftis
* share/po/nn.po: Updated translation.
2005/01/15 Pixel <pixel at mandrakesoft.com>
* interactive/gtk.pm: change packing for the widgets given
- move set_main_window_size() from ugtk2 to mygtk2
- call it in MagicWindow creation
allow passing gtk widgets to ->wait_message
* mdk-stage1/Makefile, mdk-stage1/config-stage1.h, mdk-stage1/stage1.c,
rescue/tree/etc/issue, rescue/Makefile, rescue/make_rescue_img:
factorize the distrib version
* bootloader.pm: in read_grub(), setting {table} cause write_grub to
create a {mapdrive} even when we didn't have one (bugzilla #12307)
* mygtk2.pm:
- move set_main_window_size() from ugtk2 to mygtk2
- call it in MagicWindow creation
fix using gtkset with text => ... on a Button
* ugtk2.pm:
- move set_main_window_size() from ugtk2 to mygtk2
- call it in MagicWindow creation
* fs/format.pm: gtk2 progress bar when formatting ext3
2005/01/14 huftis
* share/po/nn.po: More translation
2005/01/14 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/fr.po: updated po file
* share/po/sv.po: updated Swedish file
* share/po/eo.po: updated Esperanto file
2005/01/14 Pixel <pixel at mandrakesoft.com>
* diskdrake/interactive.pm: this warning is stupid during install
* tools/hd_grub.cgi: fix typo
* 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)
* mygtk2.pm: create wrapper object mygtk2::MagicWindow which handles the
{rwindow} vs {window} duality
* interactive/gtk.pm:
- fix displaying wait_message
- restore previous display of the wait_message during install (is that
better ?)
* ugtk2.pm: MagicWindow is now really magic, {rwindow} and {window} can be
the same thing :)
* authentication.pm: fix switching back nsswitch.conf to local
authentication (bugzilla #13024)
2005/01/14 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/harddrake2: fix crash on opening help windows
2005/01/13 huftis
* share/po/nn.po: Updated translation.
2005/01/13 Pixel <pixel at mandrakesoft.com>
* network/shorewall.pm: fix bugzilla #12996
2005/01/12 Pixel <pixel at mandrakesoft.com>
* interactive/gtk.pm: have separate SizeGroup's for advanced and non
advanced entries
2005/01/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.2-0.11mdk
2005/01/12 Pixel <pixel at mandrakesoft.com>
* ugtk2.pm: return the child when MagicWindow is using the $::WizardWindow
(otherwise the user of the MagicWindow can destroy the WizardWindow)
* mygtk2.pm: return the child when MagicWindow is using the
$::WizardWindow
(otherwise the user of the MagicWindow can destroy the WizardWindow)
- fix gtkadd()
- fix displaying banner
- no banner if no ::Wizard_title (as used to be)
* interactive/gtk.pm: rewrite wait_messageW using mygtk2
* bootloader.pm: write in lilo.conf the global root= (bugzilla #12312)
* mdk-stage1/init.c: fix buggy blino commit which caused install failures
to cause reboot without prompting
* install_any.pm: we don't need the clp read-write (if it is read-only it
allows remounting /mnt ro)
* fs/format.pm: remove debug code
* any.pm: add user specific shell support in create_user (Nicolas Planel)
* mdk-stage1/stage1.c, Makefile: use /etc/init instead of /sbin/init to
allow umounting clp in init
2005/01/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.2-0.11mdk
one more change in 10.2-0.10mdk
10.2-0.10mdk
* standalone/harddrake2: display the menubar and the banner when embedded
* standalone/printerdrake: show banner when embedded
2005/01/11 Nicolas Planel <nplanel at mandrakesoft.com>
* any.pm: add user specific shell support in create_user
2005/01/11 Pixel <pixel at mandrakesoft.com>
* any.pm: do not log the encrypted password
show advanced languages by default
* install_steps_gtk.pm: we always have force_focus when we have
!$::isStandalone,
so do it that way and get rid of $ugtk2::force_focus
remove $ugtk2::force_center_at_pos, inline it instead
revert bad commit
install_gtk::create_help_window is unused, removing it
* ugtk2.pm: create "MagicWindow" in mygtk2 out of ugtk2::new()
simplify away thing already done in %window_options
move ugtk2::create_window() to mygtk2::_create_Window()
change set_main_window_size() prototype
- create mygtk2::main()
- get rid of setting {destroyed}, use a local variable instead
simplify (no need to protect against double destroy anymore)
{window}->show is already done in ->new
better comment
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
fix typo
fix typo
- $current_window can be local to ugtk2, so do it that way
- create force_keyboard_focus()
better comments
we always have force_focus when we have !$::isStandalone,
so do it that way and get rid of $ugtk2::force_focus
remove $ugtk2::force_center_at_pos, inline it instead
no need to set widget name to Title (what was it used for?)
more consistent naming
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)
add comments
* mygtk2.pm: create "MagicWindow" in mygtk2 out of ugtk2::new()
mygtk2::_gtk() takes an hash ref to allow checking the resulting hash
move ugtk2::create_window() to mygtk2::_create_Window()
- create mygtk2::main()
- get rid of setting {destroyed}, use a local variable instead
* install_gtk.pm: cleanup
help size doesn't need anything special anymore
don't fake a ugtk2, use pure mygtk2 instead
don't fake a ugtk2, use pure mygtk2 instead
no need to set title to 'skip' (it was used by aewm-drakx)
install_gtk::create_help_window is unused, removing it
* interactive/gtk.pm: create "MagicWindow" in mygtk2 out of ugtk2::new()
change set_main_window_size() prototype
* Xconfig/test.pm: we always have force_focus when we have
!$::isStandalone,
so do it that way and get rid of $ugtk2::force_focus
* run_program.pm: do not log the encrypted password
2005/01/11 Thierry Vignaud <tvignaud at mandrakesoft.com>
* detect_devices.pm (dmidecode) do not rerun dmidecode on machines that do
not support it
* share/po/br.po: typo fix
* 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)
ivtv & zaptel dkms packages were renamed
2005/01/10 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/gl.po: updated Galician file
2005/01/10 Pixel <pixel at mandrakesoft.com>
* ugtk2.pm: move some now common things in _create_window()
more installing special install shortcuts in _create_window()
(there is no reason for not having the shortcuts when the window has
pop_it)
- 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
use {icon_no_error} instead of {icon}
rewrite
rewrite
the test is not useful, we can't get to this code when $::isEmbedded is
set
emove unused feature
$ugtk2::pop_it is unused
* Makefile: dont_run_directly_stage2 and trace_stage2 needs the live, not
the clp
- add vera fonts (normal and bold)
- generate fonts.dir and fonts.cache-1
- take cursor.pcf.gz from system
* share/list: add /etc/fonts/fonts.conf
* share/fonts.tar.bz2:
- remove cursor.pcf.gz (now taken from system)
- generate fonts.dir and fonts.cache-1
* lang.pm:
- add vera fonts (normal and bold)
- generate fonts.dir and fonts.cache-1
- take cursor.pcf.gz from system
* rescue/dirs: at least be able to mount /dev/pts if needed
* interactive/gtk.pm: simplify using {pop_it}
* rescue/list: rsync is useful too
add what Lord Packdrakeng.pm request
minimal ssh tools (alas it doesn't on console 1 because /dev/tty is
allocated properly, it needs fixing)
* 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
* share/rpmsrate: simplify
* 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
* rescue/tree/etc/rc.sysinit: have /dev rw (eg: for /dev/initctl)
* mygtk2.pm: create {icon_no_error}
2005/01/10 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* 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.
* standalone/drakbackup: Don't use deprecated urpmi --X option
* standalone/drakTermServ: Silent install of terminal-server if needed
(--X is deprecated)
* drakxtools.spec: Require urpmi 4.6.11 (for --expect-install)
2005/01/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/rpmsrate: install zaptel packages if needed
install ivtv packages if needed
2005/01/09 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2005/01/09 Tibor Pittich <Tibor.Pittich at phuture.sk>
* share/po/sk.po: updated slovak translation
2005/01/08 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation
* lang.pm: install scim-chewing if zh is selected by localedrake. Fix font
setting for zh_CN.
2005/01/08 huftis
* share/po/nn.po: Updated translation.
2005/01/07 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/ja.po: updated po file
* share/rpmsrate: new fonts-ttf-chinese package
* lang.pm: changed chinese font names
2005/01/07 Pixel <pixel at mandrakesoft.com>
* standalone/drakclock: simplify
* interactive/gtk.pm: $w->{isEmbedded} is unused
$w->{isWizard} is unused
* ugtk2.pm: $w->{isEmbedded} is unused
$w->{isWizard} is unused
$o->{force_center} is unused
no icon during install
simplify using mygtk2
* mygtk2.pm: add "Plug"
2005/01/07 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* keyboard.pm: Make %lang2keyboard a global variable, so it can be
overriden in a
patch file
2005/01/06 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/cy.po, share/po/et.po: updated Welsh and Estonian files
2005/01/06 Pixel <pixel at mandrakesoft.com>
* network/shorewall.pm: cleanup unused variables
* mdk-stage1/doc/UPDATEMODULES: fix
* standalone/draksec, harddrake/sound.pm: remove unused variable
* interactive/gtk.pm: on a label, we must use ->get_text, not ->get
* install_gtk.pm: fix typo (thanks to perl_checker)
- 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
* ugtk2.pm: simplify
- 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
- 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)
* install2.pm, common.pm, install_any.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
* mygtk2.pm: add {icon} for Window
merge Window and Dialog creation
allow setting padding for pack_start, but only globally (it works like
spacing, but also include spacing at beginning, and at end)
add {position_policy} for Window
* network/tools.pm: remove unused variables
* fs.pm, install_steps.pm: fs::formatMount_all() parameter wait_message is
no more optional (though you can give undef)
* loopback.pm, diskdrake/interactive.pm, install_steps_interactive.pm,
raid.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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/br.po: update
update
* lang.pm: update UIM config for uim-0.4.5 (UTUMI Hirosi)
* drakxtools.spec: 10.2-0.9mdk
2005/01/05 Keld Jørn Simonsen <keld at dkuug.dk>
* 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 Pixel <pixel at mandrakesoft.com>
* install_steps_interactive.pm: fix selecting "other" keyboard when @best
<= 1
fix selecting "other" keyboard when @best <= 1
fix selecting "other" keyboard when @best <= 1
* fs.pm: part2wild_device_name('', $part) is better than
devices::make($part->{device}) (esp. for nfs "devices")
handle spaces in username
* fs/mount_options.pm: don't set fs_type to ext2:vfat for ext3 or reiserfs
/home coming from usb key (bugzilla #9827)
* network/smb.pm: handle spaces in username
2005/01/05 Thierry Vignaud <tvignaud at mandrakesoft.com>
* install_any.pm (migrate_device_names) fix message
* share/rpmsrate: install echomixer if needed
switch default IM to scim-chewing for zh_TW
* harddrake/sound.pm: add a couple of new ALSA drivers (from CVS)
* drakxtools.spec: 10.2-0.8mdk
2005/01/04 Funda Wang <fundawang at linux.net.cn>
* lang.pm: backport s/jp/ja/ fix from HEAD
2005/01/04 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/hr.po: updated Croatian file
* share/po/cy.po: updated Welsh file
2005/01/04 Pixel <pixel at mandrakesoft.com>
* rescue/list: ld-linux.so.2 is also needed on the rescue :)
2005/01/04 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/et.po: updated Estonian file
updated pot file
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/ja.po, share/po/hr.po,
share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
share/po/uz@Latn.po: updated pot file
2005/01/04 Pixel <pixel at mandrakesoft.com>
* rescue/list: ld-linux.so.2 is also needed on the rescue :)
* mdk-stage1/init.c: ensure /tmp/syslog in stage2 contains the full log
* 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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* network/adsl_consts.pm: update ADSL ISPs list
* share/rpmsrate: install hotkeys in order to have working special keys on
internet/multimedia laptop keyboards
2005/01/03 Pixel <pixel at mandrakesoft.com>
* authentication.pm, steps.pm: "Administrator (root)" is more
user-friendly than "root"
* fs/mount_options.pm: remove codepage= option for fs types which don't
handle it (eg: ntfs)
* fs/type.pm: create can_be_one_of_those_fs_types()
* network/netconnect.pm, network/network.pm, network/ethernet.pm,
install_steps_interactive.pm, harddrake/data.pm: move and rename
network::ethernet::get_eth_categories() into
list_modules::ethernet_categories()
(it's closer to the definition of the categories)
* modules/interactive.pm: a somewhat nicer message when loading a module
* install_steps.pm: default security level is now 3
2005/01/03 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* do_pkgs.pm: '--best-output' is no longer an urpmi option (and it's not
necessary
anyway since --auto is specified)
* install_steps.pm: Make do_pkgs::install() return the number of packages
actually installed
(used by printerdrake, apparently)
2005/01/03 Stew Benedict <sbenedict at mandrakesoft.com>
* standalone/drakbackup: Bugzilla 12861 - Directories with spaces
Mandrakeclub - Perms on tarballs too relaxed
perl_checker compliance
Bugzilla 12861 - Directories with spaces
Mandrakeclub - Perms too relaxed on tarballs
perl_checker compliance
Bugzilla 12861 - Directories with spaces
Mandrakeclub - Perms too relaxed on tarballs
perl_checker compliance
2005/01/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
* install_any.pm (migrate_device_names) try to be smarter with translators
2005/01/03 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
share/po/az.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
share/po/ta.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
share/po/uz@Latn.po: updated pot file
* keyboard.pm:
- enabled choice of various new keyboard layouts.
- don't prepend "us," if there is already a list of layouts
* share/po/cy.po: updated Welsh file
updated pot file
2005/01/03 Pixel <pixel at mandrakesoft.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?)
* install_any.pm: no clp is not an error
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)
* fs/mount_options.pm: remove codepage= option for fs types which don't
handle it (eg: ntfs)
* fs/type.pm: create can_be_one_of_those_fs_types()
* devices.pm, install2.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)
* mdk-stage1/stage1.c, mdk-stage1/init.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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* harddrake/sound.pm: add another sparc sound driver
2005/01/03 Funda Wang <fundawang at linux.net.cn>
* lang.pm: s/jp/ja. Corrected spelling of locale ja
* share/po/zh_CN.po: Updated Simplified Chinese translation
2004/12/31 Pixel <pixel at mandrakesoft.com>
* mygtk2.pm: no need to have things twice in _icon_paths()
* install_steps_gtk.pm: simplify (thanks to perl_checker)
remove code using getAndSaveFile to get the X server
(we don't have live directory anymore, and anyway we only use one X
server)
* install_gtk.pm: simplify (we always want the logo, and looking the right
path is already done elsewhere)
* share/list: ldd doesn't say anymore which file ld-linux is, so adding it
explicitly
* 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 Pixel <pixel at mandrakesoft.com>
* install_steps_gtk.pm: simplify (thanks to perl_checker)
remove code using getAndSaveFile to get the X server
(we don't have live directory anymore, and anyway we only use one X
server)
* 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/30 Pixel <pixel at mandrakesoft.com>
* ugtk2.pm: more spacing around the separator and the buttons (as
requested by ergonomy team)
* install_steps.pm: finish backporting HEAD changes for finish-install
(any::write_passwd_user() doesn't exist anymore)
2004/12/29 Pixel <pixel at mandrakesoft.com>
* lvm.pm, devices.pm: move device mapper initialisation out of lvm.pm into
devices.pm (since it will be useful for other things)
* install_steps_interactive.pm: when computing group size, select
CAT_SYSTEM packages
* pkgs.pm: simplify and speed up computeGroupSize()
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/28 Pixel <pixel at mandrakesoft.com>
* install_gtk.pm: fix overlap
re-organize steps display as requested by ergonomic team
* install_steps_gtk.pm: fix displaying package tree (was empty since
moving from XXX to CAT_XXX)
* mygtk2.pm:
- add can_default
- remove known_opts (alike the rest of the code)
* pkgs.pm, install_any.pm, install_steps_interactive.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/24 Pixel <pixel at mandrakesoft.com>
* share/rpmsrate, install_any.pm, install_steps_interactive.pm:
differentiate compssUsers flags from non-user modifiable flags (eg:
hardware flags)
* network/drakfirewall.pm: "Samba server" is better named "Windows Files
Sharing (SMB)" (bugzilla #10585)
2004/12/23 Pixel <pixel at mandrakesoft.com>
* standalone/XFdrake: fix Xconfig::default::configure() use
"XFdrake --auto" is now fully auto using auto_install configuration
instead of "as much auto as can be"
- don't ask X to restart in auto mode
- set exit status to 1 when configuration failed (esp. auto mode)
2004/12/23 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: bump require on perl in order to prevent beakage on
update due to
binary incompatibility (#12719 and the like)
fix typo in 10.2-0.7mdk's changelog
10.2-0.7mdk
2004/12/22 Pixel <pixel at mandrakesoft.com>
* pkgs.pm: simplify
fix previous commit
create read_rpmsrate_raw() out of read_rpmsrate(), this new function can
be easily used outside install
* install_steps_interactive.pm: no need to use max_size, no need to
compute it
* install2.pm, fsedit.pm: add option no_bad_drives (to workaround bugzilla
#12766)
2004/12/22 Thierry Vignaud <tvignaud at mandrakesoft.com>
* 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
handle new snd-pcxhr driver from alsa CVS
* share/rpmsrate: install proper tools for Digigram PCXHR sound card
2004/12/21 Pixel <pixel at mandrakesoft.com>
* install2.pm: /proc/sys/kernel/modprobe wants something non empty,
otherwise it doesn't change anything
* install_any.pm: don't pass prefix, use $::prefix
don't pass prefix to network::netconnect::main() (it doesn't use it)
don't pass prefix, use $::prefix
* fs.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()
* install_steps_interactive.pm: don't pass prefix, use $::prefix
don't pass prefix to network::netconnect::main() (it doesn't use it)
* mdk-stage1/doc/UPDATEMODULES: much simpler code to handle post-install
update modules
- it handles new modules
- it calls depmod
* install_steps_gtk.pm, commands, standalone/drakbug_report, pkgs.pm,
crypto.pm, commands.pm: don't pass prefix, use $::prefix
* standalone/drakconnect, network/netconnect.pm, printer/printerdrake.pm:
don't pass prefix to network::netconnect::main() (it doesn't use it)
* any.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()
don't pass prefix, use $::prefix
* 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()
don't pass prefix, use $::prefix
don't pass prefix, use $::prefix
much simpler code to handle post-install update modules
- it handles new modules
- it calls depmod
* detect_devices.pm: fix floppies detection (through dmidecode)
2004/12/20 Pixel <pixel at mandrakesoft.com>
* install2.pm: don't die when /proc/sys/kernel/modprobe doesn't exist (for
BOOT kernels)
* mdk-stage1/tools.c, mdk-stage1/tools.h, mdk-stage1/automatic.c: minimal
bootsplash stage1 support
create unset_automatic()
* mdk-stage1/modules.c, mdk-stage1/cdrom.c, mdk-stage1/stage1.c,
mdk-stage1/network.c: create unset_automatic()
* mdk-stage1/Makefile, mdk-stage1/bootsplash.h, mdk-stage1/bootsplash.c,
mdk-stage1/frontend.h, mdk-stage1/stdio-frontend.c,
mdk-stage1/newt-frontend.c: minimal bootsplash stage1 support
2004/12/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
* network/modem.pm (get_user_home) do not horribly die if USER environment
variable list
a non existing user
2004/12/19 Funda Wang <fundawang at linux.net.cn>
* lang.pm: jp console should not be localized
jp console should not be localized
2004/12/18 rstandtke
* share/po/de.po: added some translations
2004/12/17 Pixel <pixel at mandrakesoft.com>
* install_gtk.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"
switch to mygtk2
* ugtk2.pm: add some more functions in mygtk2
* Xconfig/test.pm: remove unused code
* modules.pm: packdrake changed a little, ensuring that if we ask no
modules it doesn't cause havoc
* 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"
oops, set_background *is* needed
remove unneeded ->set_background
add some more functions in mygtk2
* bootloader.pm: ia64 uses the lilo method (even if it has some important
differences)
on ia64, use method lilo
2004/12/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
* network/netconnect.pm: fix NETMASK autofilling
2004/12/16 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
* c/smp.c: merge smp detection from fedora/ydl
2004/12/16 Pixel <pixel at mandrakesoft.com>
* install2.pm: help testing
* mygtk2.pm:
- add DrawingArea
- add text_ref & format for buttons
remove debug code
we must allow more than one callback per ref & widget
add option allow_unknown_options for easy compatibility
* detect_devices.pm, pkgs.pm, install_any.pm: create function
detect_devices::BIGMEM() which calls c::dmiDetectMemory(), but only
if we are root (this helps testings install without dying)
* install_steps_gtk.pm: migrate to mygtk2
* ugtk2.pm: fix typo (mygtk2 wants active_ref, not val)
add option allow_unknown_options for easy compatibility
* Xconfig/resolution_and_depth.pm: much simpler code using mygtk2
2004/12/15 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
* mdk-stage1/insmod-modutils/include/util.h,
mdk-stage1/insmod-modutils/util/logger.c: rename log to do_log in order
to avoid clashes with builtins
* mdk-stage1/dietlibc/ia64/start.S, mdk-stage1/dietlibc/ia64/fork.S,
mdk-stage1/dietlibc/ia64/pipe.S: ia64 fixes: fork, pipe, syscall weak
symnames
* mdk-stage1/insmod-modutils/include/elf_ppc64.h,
mdk-stage1/insmod-modutils/obj/obj_ppc64.c: merge ppc64 support from
modutils 2.4.26
* mdk-stage1/insmod-modutils/obj/obj_gpl_license.c: add missing file from
older merge from modutils 2.4.26
* mdk-stage1/dietlibc/ia64/syscalls.h: add ia64 setjmp/longjmp from glibc
ia64 fixes: fork, pipe, syscall weak symnames
* tools/ddcprobe/Makefile: ppc & ppc64 fixes
ppc64 support
* mdk-stage1/insmod-modutils/obj/obj_kallsyms.c: fix build to expose
assignments better
* mdk-stage1/insmod-modutils/obj/obj_ia64.c: add support for
R_IA64_PCREL60B reloc
build fix
* tools/ddcprobe/ddcxinfos.c: ppc & ppc64 fixes
sounds like the (empty) line is expected
* mdk-stage1/insmod-modutils/util/sys_oim.c,
mdk-stage1/insmod-modutils/insmod.c,
mdk-stage1/insmod-modutils/util/Makefile,
mdk-stage1/insmod-modutils/util/modstat.c: drop support for kernel 2.0
* tools/ddcprobe/vbe.h: ppc & ppc64 fixes
fix on big endian platforms (ppc, ppc64)
* mdk-stage1/dietlibc/ia64/__longjmp.S, mdk-stage1/dietlibc/ia64/setjmp.S:
add ia64 setjmp/longjmp from glibc
* mdk-stage1/rescue-gui.c, mdk-stage1/init.c: lib64 fixes on ppc64
* mdk-stage1/dietlibc/include/elf.h: ia64 elf definitions
* tools/ddcprobe/of.c: ppc & ppc64 fixes
On PowerPC platforms, byteswap product_code so that ids match MonitorsDB
contents
2004/12/15 Pixel <pixel at mandrakesoft.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 Stew Benedict <sbenedict at mandrakesoft.com>
* standalone/drakTermServ: perl_checker, suggestions from Pixel, rework
buttons in main GUI
2004/12/15 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/fr.po: update (stef, neoclust)
* drakxtools.spec: 10.2-0.6mdk
2004/12/15 Warly <warly at mandrakesoft.com>
* share/rpmsrate.corpo-server, share/rpmsrate.corpo-desktop: remove
mdkonline-backend
2004/12/14 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
* mdk-stage1/dietlibc/include/termios.h, mdk-stage1/dietlibc/diet.c,
mdk-stage1/dietlibc/syscalls.h, mdk-stage1/dietlibc/include/sys/stat.h,
mdk-stage1/dietlibc/include/sys/ucontext.h,
mdk-stage1/dietlibc/include/sys/shm.h,
mdk-stage1/dietlibc/include/fcntl.h,
mdk-stage1/dietlibc/include/sys/mman.h,
mdk-stage1/dietlibc/include/asm/sigcontext.h,
mdk-stage1/dietlibc/include/elf.h,
mdk-stage1/dietlibc/include/sys/ioctl.h,
mdk-stage1/dietlibc/include/sys/types.h, mdk-stage1/dietlibc/Makefile,
mdk-stage1/dietlibc/include/endian.h,
mdk-stage1/dietlibc/include/sys/ptrace.h,
mdk-stage1/dietlibc/include/signal.h: ppc64 port
* mdk-stage1/dietlibc/include/setjmp.h: fix setjmp.h (JB_SIZE) on ppc64
ppc64 port
2004/12/14 Pixel <pixel at mandrakesoft.com>
* drakxtools.spec: fix release (keep 101mdk for 10.1 packages)
* network/netconnect.pm: for drakx-finish-install, we want drakconnect to
restart network
for drakx-finish-install, we want drakconnect to restart network
* mygtk2.pm: export gtkval_register() and gtkval_modify()
* mdk-stage1/pcmcia_/merge_from_pcitable: cleanup
2004/12/13 Keld Jørn Simonsen <keld at dkuug.dk>
* 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 Pixel <pixel at mandrakesoft.com>
* detect_devices.pm: fix
* drakxtools.spec: introduce in CVS 27.2.101mdk which was using a patch on
drakbug
* standalone/drakbug: commit vdanen patch which makes drakbug send
everything to bugzilla (instead of anthill)
2004/12/13 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* share/list: Add a gazillion modules required by the new packdrake for
now
2004/12/13 Pixel <pixel at mandrakesoft.com>
* detect_devices.pm: fix
* drakxtools.spec: introduce in CVS 27.2.101mdk which was using a patch on
drakbug
* standalone/drakbug: commit vdanen patch which makes drakbug send
everything to bugzilla (instead of anthill)
2004/12/13 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* share/list: Add a gazillion modules required by the new packdrake for
now
Add the subset of POSIX.pm needed by the new packdrake
2004/12/13 Thierry Vignaud <tvignaud at mandrakesoft.com>
* harddrake/autoconf.pm:
- 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
* harddrake/data.pm (pcmcia_controller_probe) move some harddrake code
there
* detect_devices.pm: better english (writing style rather than spoken one)
(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)
(pcmcia_controller_probe) move some harddrake code there
* Xconfig/card.pm, share/po/ms.po, share/po/pt_BR.po, share/po/et.po,
share/po/ja.po, install_steps_interactive.pm, standalone/drakvpn,
printer/data.pm, standalone/drakboot, standalone.pm,
standalone/drakTermServ, share/po/sv.po, share/po/sr.po, share/po/fi.po,
fs/type.pm, standalone/drakbackup, share/po/ca.po, share/po/ltg.po,
share/po/uz.po, partition_table/mac.pm, diskdrake/interactive.pm,
standalone/fileshareset, share/po/ro.po, standalone/drakroam,
authentication.pm, share/po/zh_TW.po, share/po/eu.po, share/po/es.po,
network/adsl.pm, modules.pm, network/tools.pm,
standalone/service_harddrake.sh, standalone/drakupdate_fstab,
share/po/lv.po, share/po/id.po, help.pm, share/po/br.po, install_gtk.pm,
network/isdn.pm, share/po/mt.po, share/po/ga.po, modules/parameters.pm,
share/po/uk.po, install2.pm, share/po/lt.po, resize_fat/boot_sector.pm,
commands.pm, network/test.pm, install_interactive.pm, share/po/tg.po,
share/advertising/12.pl, loopback.pm, mygtk2.pm, interactive/http.pm,
ftp.pm, interactive/stdio.pm, share/po/mk.po, share/po/fur.po,
services.pm, harddrake/sound.pm, fs.pm, standalone/drakfont,
share/po/af.po, network/ethernet.pm, standalone/net_applet,
bootloader.pm, share/po/pt.po, share/po/vi.po, share/po/fr.po,
keyboard.pm, standalone/drakperm, share/advertising/05.pl,
share/po/tl.po, share/po/de.po, common.pm, share/po/el.po,
share/po/bg.po, share/po/uz@Latn.po, network/network.pm, share/po/bn.po,
standalone/logdrake, share/po/gl.po, share/po/sk.po, share/po/th.po,
Xconfig/parse.pm, interactive.pm, share/po/hr.po, resize_fat/fat.pm,
network/netconnect.pm, share/po/be.po, do_pkgs.pm, mouse.pm,
network/smb.pm, share/po/DrakX.pot, share/po/ko.po, share/po/pl.po,
share/po/he.po, raid.pm, fs/format.pm, diskdrake/smbnfs_gtk.pm,
share/po/da.po, share/po/ar.po, partition_table.pm, unused/dns.pm,
share/po/ky.po, share/po/nb.po, pkgs.pm, run_program.pm,
standalone/drakconnect, share/po/zh_CN.po, share/po/sq.po,
share/po/sr@Latn.po, share/po/it.po, printer/printerdrake.pm,
share/po/hu.po, http.pm, share/po/fa.po, network/modem.pm,
resize_fat/main.pm, network/ipsec.pm, share/po/ru.po, share/po/sl.po,
standalone/drakautoinst, c.pm, share/po/nn.po, share/po/tr.po,
partition_table/gpt.pm, share/po/mn.po, share/po/am.po, lang.pm,
devices.pm, harddrake/v4l.pm, share/po/cy.po, partition_table/raw.pm,
ugtk2.pm, any.pm, install_steps_gtk.pm, printer/main.pm, share/po/bs.po,
interactive/newt.pm, share/po/wa.po, fs/mount_options.pm,
share/po/is.po, share/po/hi.po, share/po/az.po, Xconfig/xfree.pm,
share/po/ta.po, standalone/drakgw, share/po/nl.po, fsedit.pm,
share/po/eo.po, share/po/cs.po, standalone/bootloader-config: better
english (writing style rather than spoken one)
* install_any.pm, install_steps.pm, standalone/service_harddrake: better
english (writing style rather than spoken one)
- 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 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* share/list: Add new packdrake module
2004/12/12 Pixel <pixel at mandrakesoft.com>
* .perl_checker: ignore packdrake for now
* install_gtk.pm, share/list.i386: keyboard_drv.o is needed by Xorg, and
driver must "keyboard", not "Keyboard"
2004/12/12 Pixel <pixel at mandrakesoft.com>
* .perl_checker: ignore packdrake for now
* install_gtk.pm, share/list.i386: keyboard_drv.o is needed by Xorg, and
driver must "keyboard", not "Keyboard"
2004/12/10 Pixel <pixel at mandrakesoft.com>
* Makefile: move drakx VERSION file in install/stage2 (used by bugzilla)
2004/12/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/ja.po: update (Yukiko Bando)
2004/12/09 Pixel <pixel at mandrakesoft.com>
* install_steps.pm: commit warly's fix in HEAD
commit warly's fix in 10.1 branch
2004/12/08 Warly <warly at mandrakesoft.com>
* install_steps.pm: fix the updatemodules mode for installation
2004/12/07 Pixel <pixel at mandrakesoft.com>
* 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)
look for yenta_socket in pci_probe too
look for yenta_socket in pci_probe too (nb: ldetect pci_probe has a
special rule for it, not simply pcitable)
* share/rpmsrate: xcdroast only if X is chosen (bugzilla #12594)
2004/12/06 Warly <warly at mandrakesoft.com>
* share/rpmsrate.corpo-server, share/rpmsrate.corpo-desktop: Added
mdkonline, slmodem and ipw2?00
2004/12/05 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2004/12/05 Pixel <pixel at mandrakesoft.com>
* fs/format.pm, install_any.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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/fr.po: typo fixes (#12580)
2004/12/04 Pixel <pixel at mandrakesoft.com>
* mdk-stage1/pcmcia_/merge_from_pcitable: simplify
2004/12/04 tsdgeos
* share/po/ca.po: Update
2004/12/03 Pixel <pixel at mandrakesoft.com>
* install2.pm: disable kmod, otherwise we get a different behaviour in
kernel vs kernel-BOOT
* Makefile: use the cute "perldoc -l" instead of perl -V:vendorlib which
doesn't work when the module hasn't been rebuilt
* unused/migrate-ugtk2-to-mygtk2.pl, unused/migrate-ugtk2-to-mygtk2.el: be
more automatic and less .emacs dependent
* tools/Makefile: use perldoc -l instead of perl -M + %INC
* install_steps_gtk.pm: more debug log
* commands: during install, commands should $::isInstall set (otherwise
poor modprobe becomes a fork bomb)
2004/12/03 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
share/po/hr.po, share/po/tr.po, share/po/mt.po, share/po/be.po,
share/po/mn.po, share/po/am.po, share/po/ko.po, share/po/sr.po,
share/po/lt.po, share/po/he.po, share/po/cy.po, share/po/ca.po,
share/po/ar.po, share/po/ltg.po, share/po/ky.po, share/po/mk.po,
share/po/ro.po, share/po/is.po, share/po/af.po, share/po/az.po,
share/po/zh_TW.po, share/po/vi.po, share/po/sq.po, share/po/sr@Latn.po,
share/po/tl.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
share/po/bg.po, share/po/lv.po: rescued some strings
2004/12/03 Pixel <pixel at mandrakesoft.com>
* install2.pm: disable kmod, otherwise we get a different behaviour in
kernel vs kernel-BOOT
* Makefile: use the cute "perldoc -l" instead of perl -V:vendorlib which
doesn't work when the module hasn't been rebuilt
* unused/migrate-ugtk2-to-mygtk2.pl, unused/migrate-ugtk2-to-mygtk2.el: be
more automatic and less .emacs dependent
* tools/Makefile: use perldoc -l instead of perl -M + %INC
* install_steps_gtk.pm: more debug log
* commands: during install, commands should $::isInstall set (otherwise
poor modprobe becomes a fork bomb)
2004/12/02 Pixel <pixel at mandrakesoft.com>
* ugtk2.pm: use migrate-ugtk2-to-mygtk2.pl (and i verified the diff)
* unused/migrate-ugtk2-to-mygtk2.pl: replace "policy => [ horizpolicy,
vertpolicy ]" with "h_policy => ..., v_policy => ..."
(both defaulting to "automatic")
dirty script easing the switch from ugtk2 to mygtk2 (beware!)
* unused/migrate-ugtk2-to-mygtk2.el: dirty script easing the switch from
ugtk2 to mygtk2 (beware!)
* rescue/make_rescue_img: fix typo and perl_checker compliance
* mygtk2.pm: replace "policy => [ horizpolicy, vertpolicy ]" with
"h_policy => ..., v_policy => ..."
(both defaulting to "automatic")
2004/12/02 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
share/po/af.po, share/po/az.po, share/po/pt.po, share/po/fr.po,
share/po/ta.po, share/po/vi.po, share/po/nl.po, share/po/de.po,
share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
share/po/el.po, share/po/uz@Latn.po: updated pot file
2004/12/02 Pixel <pixel at mandrakesoft.com>
* unused/migrate-ugtk2-to-mygtk2.pl: replace "policy => [ horizpolicy,
vertpolicy ]" with "h_policy => ..., v_policy => ..."
(both defaulting to "automatic")
dirty script easing the switch from ugtk2 to mygtk2 (beware!)
* mygtk2.pm: replace "policy => [ horizpolicy, vertpolicy ]" with
"h_policy => ..., v_policy => ..."
(both defaulting to "automatic")
future is in mygtk2, ugtk2 must die (and it will die, but not that soon
(to keep compatibility))
* rescue/make_rescue_img: remove temporary directory
* detect_devices.pm: helping titi that didn't get isLaptop() right in 3
commits ;p
* ugtk2.pm: use migrate-ugtk2-to-mygtk2.pl (and i verified the diff)
future is in mygtk2, ugtk2 must die (and it will die, but not that soon
(to keep compatibility))
* unused/migrate-ugtk2-to-mygtk2.el: dirty script easing the switch from
ugtk2 to mygtk2 (beware!)
* authentication.pm, any.pm:
- any::enableShadow() -> authentication::enable_shadow()
- inline authentication::crypt()
move crypt() where it's needed
2004/12/02 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* authentication.pm, any.pm: Move crypt() in the package it belongs to
2004/12/01 Pixel <pixel at mandrakesoft.com>
* detect_devices.pm: simplify: grep already done
complete_usb_storage_info()
2004/12/01 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* ugtk2.pm: return value for gtkset_mousecursor
2004/12/01 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/ja.po: typo fix
2004/12/01 Warly <warly at mandrakesoft.com>
* install_steps.pm: Add a SYSTEM to Corporate in /etc/sysconfig/system for
corporate
* share/compssUsers.corpo-server: remove development section in corpo
server
* install_any.pm: use the compssUsers related to the meta_class if it
exists
* share/compssUsers.suppl-desktop, share/compssUsers.suppl-server: add
compssUsers for supplementary CDs
* install_steps_gtk.pm: update the group selection layout to handle the
supplementary CD
* share/compssUsers.desktop: remove game for corpo desktop
* rescue/tree/etc/issue: change Mandrake Linux 10.0 into Mandrakelinux
Corporate 3.0
* share/themes-corporate.rc: correct the theme color for installation
* steps.pm: Do not activate the updates selection step during installation
* share/rpmsrate.corpo-server, share/rpmsrate.corpo-desktop: updated
rpmsrate for corporate desktop and server
* install_messages.pm: The coporate errata is corpo30errata.php3 and not
100errata.php3
2004/11/30 Frederic Lepied <flepied at mandrakesoft.com>
* mdk-stage1/Makefile, mdk-stage1/config-stage1.h: corporate
2004/11/30 Pixel <pixel at mandrakesoft.com>
* network/network.pm: don't pass the prefix/etc/sysconfig/network to
network::network::write_conf(), we always use the same file name
backport HEAD changes used by finish-install
* modules.pm: replace isStandalone with !isInstall (for finish-install
which is neither isInstall nor isStandalone)
replace isStandalone with !isInstall (for finish-install which is
neither isInstall nor isStandalone)
* 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()
backport HEAD changes used by finish-install
* standalone/finish-install: don't keep the banner from drakconnect for
all steps
add drakx-finish-install
prog to launch after install which configurate users, authentication,
root password and network
don't keep the banner from drakconnect for all steps
add drakx-finish-install
prog to launch after install which configurate users, authentication,
root password and network
* any.pm, install_steps.pm:
- move some functions from any.pm to authentication.pm
- create authentication::ask_root_password_and_authentication() out of
install_steps_interactive::setRootPassword()
backport HEAD changes used by finish-install
create any::set_root_passwd() and use it
* drakxtools.spec: add drakx-finish-install
* standalone/drakbackup: fix fatal perl_checker error
fix fatal perl_checker warning
* run_program.pm: replace !isStandalone with isInstall
* authentication.pm: make $when_network_is_up optional
- move some functions from any.pm to authentication.pm
- create authentication::ask_root_password_and_authentication() out of
install_steps_interactive::setRootPassword()
backport HEAD changes used by finish-install
* Makefile.config, Makefile, Makefile.drakxtools,
standalone/finish-install.xsetup: add drakx-finish-install
add drakx-finish-install
* network/netconnect.pm: network::netconnect::real_main() do not exit
brutally on wizcancel, handle it in network::netconnect::main()
network::netconnect::real_main() do not exit brutally on wizcancel,
handle it in network::netconnect::main()
* standalone/adduserdrake: backport HEAD changes used by finish-install
* standalone/drakauth: perl_checker fix
shorter
don't pass the prefix/etc/sysconfig/network to
network::network::write_conf(), we always use the same file name
$when_network_is_up is now optional
backport HEAD changes used by finish-install
2004/11/30 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Warn when failing to mount the supplementary CD-ROM
2004/11/30 Thierry Vignaud <tvignaud at mandrakesoft.com>
* detect_devices.pm (dmidecode) explain why we return a list and not
directly an hash
(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
* share/rpmsrate, lang.pm: install scim-anthy as well for japanese users
* install_any.pm (setDefaultPackages) perl_checker cleanup
* drakxtools.spec: typo fix
* harddrake/data.pm: rollback previous bogus commit
2004/11/30 Warly <warly at mandrakesoft.com>
* rescue/tree/etc/issue: update version for rescue issue
2004/11/30 Pixel <pixel at mandrakesoft.com>
* install_steps.pm, any.pm:
- move some functions from any.pm to authentication.pm
- create authentication::ask_root_password_and_authentication() out of
install_steps_interactive::setRootPassword()
create any::set_root_passwd() and use it
- 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)
* 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()
* 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)
* authentication.pm:
- move some functions from any.pm to authentication.pm
- create authentication::ask_root_password_and_authentication() out of
install_steps_interactive::setRootPassword()
white space normalisation
2004/11/30 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/localedrake: Yes/no is better than Ok/cancel for logout
question
* harddrake/data.pm: rollback previous bogus commit
detect_devices::getModem() does not take an argument anymore
* share/rpmsrate, lang.pm: install scim-anthy as well for japanese users
* install_any.pm (setDefaultPackages) perl_checker cleanup
* detect_devices.pm (isLaptop) fix it on non PPC architectures
(dmidecode) add (explicit) memoization
2004/11/29 Pixel <pixel at mandrakesoft.com>
* bootloader.pm: perl_checker compliance
- drop oem & recovery code (which was broken)
- will be replaced with a root password + user accounts + network
configuration a la drakfirsttime
* authentication.pm: minimal authentication get() function
create %kind2pam_kind
* any.pm: rename allocUsers() to alloc_user_faces() (better suited)
* mdk-stage1/disk.h, install_steps_gtk.pm, docs/README, mdk-stage1/disk.c,
install_steps.pm, rescue/tree/etc/rc.sysinit, rescue/tree/etc/oem,
install_steps_interactive.pm, tools/oem-prepare, mdk-stage1/tools.c,
rescue/tree/etc/oem-all, rescue/.cvsignore, install2.pm,
mdk-stage1/stage1.c, rescue/Makefile, rescue/kernel_read_part.c:
- drop oem & recovery code (which was broken)
- will be replaced with a root password + user accounts + network
configuration a la drakfirsttime
2004/11/29 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install2.pm: A bit of grammar
2004/11/29 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/harddrake2: add hint for translator
* share/po/ja.po: update (Yukiko Bando)
* install_any.pm (setDefaultPackages) better support for Toshiba laptops:
preload
toshiba driver and install toshutils (inspirated from
drivers/char/toshiba.c's audit)
(setDefaultPackages) better support for DELL laptops: preload i8k driver
better support for DELL laptops (inspirated from drivers/char/i8k.c's
audit)
* share/rpmsrate: ensure toshutils is present on media
ensure ik8utils is present on media
2004/11/27 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation
2004/11/27 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* network/adsl_consts.pm: Don't load encoding.pm, it's not provided in the
stage 2 perl
2004/11/26 David Baudens <baudens at mandrakesoft.com>
* share/rpmsrate: Add some tool in DEVELOPMENT section
2004/11/26 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
share/po/af.po, share/po/az.po, share/po/pt.po, share/po/fr.po,
share/po/ta.po, share/po/vi.po, share/po/nl.po, share/po/de.po,
share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
share/po/el.po, share/po/uz@Latn.po: updated pot file
* standalone/harddrake2: fixed typo
2004/11/26 Pixel <pixel at mandrakesoft.com>
* Xconfig/card.pm: simplify
* 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)
* standalone/keyboarddrake: don't write X config when there is none
(otherwise we write a partial X config)
* Xconfig/monitor.pm: help perl another way that perl_checker prefers
* network/ethernet.pm: help perl_checker
2004/11/26 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* pkgs.pm, install_any.pm: We won't have files named
compssUsers.pl.<meta_class> since they're all
merged now.
2004/11/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/br.po: update
* drakxtools.spec: 10.2-0.5mdk
2004/11/25 David Baudens <baudens at mandrakesoft.com>
* share/rpmsrate: Fix Totem installation when KDE and GNOME are both
installed.
Fix Quanta installation
2004/11/25 Pixel <pixel at mandrakesoft.com>
* fsedit.pm: moving partitions never really worked and is disabled since
years
safer
* 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}
* any.pm: remove /lib and /usr/lib with more verbose code
fix previous commit
handle the lib64 case separately
* pkgs.pm, devices.pm, install_any.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)
* install_steps_gtk.pm: simpler code
* standalone/drakfloppy: minimal perl_checker compliance
use floppies_dev() instead of floppies()
* diskdrake/interactive.pm: moving partitions never really worked and is
disabled since years
- 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}
* standalone/diskdrake: use fs::get::device2part()
use fs::get::device2part()
* fs.pm: remove unused var
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)
- 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}
more intelligent sort of fstab to handle loopback files or bind
directory (bug anthil #1198)
2004/11/25 Thierry Vignaud <tvignaud at mandrakesoft.com>
* harddrake/data.pm: do not probe memory chips at boot time ...
* standalone/printerdrake (About) let be more l10n friendly regarding
"translatability"
(About) let be more l10n friendly regarding font's weight and size
* modules.pm (load_and_configure) fix setting scsi and usb probell in live
CD (thus fixing
mousedrake --auto with USB mice on live CD)
* modules/any_conf.pm: ensure that explanations go into
/var/log/explanations is standalone mode
(log::explanations() just calls log::l() at install time)
* standalone/service_harddrake: do not die if sound never was configured
(aka on first boot on live CD)
* drakxtools.spec: fix spacing in 10.2-0.4mdk's changelog
10.2-0.4mdk
2004/11/24 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation
2004/11/23 Pablo Saratxaga <pablo at mandrakesoft.com>
* lang.pm: list Turkish language in both Asia and Europe (for Istanbul)
2004/11/23 Pixel <pixel at mandrakesoft.com>
* 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)
fix {device_alias} containing /dev/xxx instead of xxx. The bug was
"none /mnt/cdrom supermount dev=/dev//dev/cdrom,fs=iso9660..."
(bugzilla #12224)
* partition_table/raw.pm: detect on lilo on floppy (bugzilla #12213)
detect on lilo on floppy (bugzilla #12213)
* bootloader.pm: don't use typeOfMBR to check the method on floppy which
may not be inserted
(part of bugzilla #12213)
don't use typeOfMBR to check the method on floppy which may not be
inserted
(part of bugzilla #12213)
2004/11/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/ja.po: update (Yukiko Bando)
* share/po/fr.po: update (kournikolas)
* share/po/br.po: update
2004/11/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/ja.po: update (Yukiko Bando)
* share/po/br.po: update
2004/11/22 Pixel <pixel at mandrakesoft.com>
* rescue/make_rescue_img, mdk-stage1/pci-resource/update-pci-ids.pl,
docs/HACKING, Makefile:
- 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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* network/netconnect.pm (real_main) in "ADSL provider" step, plain reset
the protocol on
provider switch
* standalone/harddrake2: kill a stock icon
* share/po/br.po: update
2004/11/19 Thierry Vignaud <tvignaud at mandrakesoft.com>
* harddrake/sound.pm (alsa2oss) add snd-azx
* share/rpmsrate: fix wrong package name
2004/11/18 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
* install_steps_gtk.pm: use 'fbdev' server on x86_64 too
* share/advertising/list-cpd, share/advertising/list-cps: update to match
warly's config files
2004/11/18 Pixel <pixel at mandrakesoft.com>
* interactive.pm: fix prototype
remove some unneeded ";", add some for normalization (as told by
perl_checker)
* install_steps_interactive.pm, diskdrake/interactive.pm: since we don't
use ramdisk but clp, some code is dead
(remove usingRamdisk(), check_prog(), remove_unused()...)
add some ";", remove some ";", as told by perl_checker
* install2.pm, pkgs.pm, run_program.pm: since we don't use ramdisk but
clp, some code is dead
(remove usingRamdisk(), check_prog(), remove_unused()...)
* lang.pm, fs.pm, common.pm, install_any.pm: since we don't use ramdisk
but clp, some code is dead
(remove usingRamdisk(), check_prog(), remove_unused()...)
remove some unneeded ";", add some for normalization (as told by
perl_checker)
* partition_table/gpt.pm, standalone/harddrake2, partition_table/raw.pm,
partition_table/mac.pm, install_steps_auto_install.pm,
diskdrake/hd_gtk.pm: add some ";", remove some ";", as told by
perl_checker
* wizards.pm, install_steps.pm, install_gtk.pm, network/isdn.pm,
diskdrake/resize_ntfs.pm, network/netconnect.pm, mouse.pm, lvm.pm,
devices.pm, raid.pm, crypto.pm, Xconfig/screen.pm, commands.pm,
install_interactive.pm, ugtk2.pm, partition_table.pm, any.pm,
interactive/stdio.pm, interactive/newt.pm, harddrake/sound.pm,
services.pm, authentication.pm, network/ethernet.pm, bootloader.pm,
harddrake/data.pm, interactive/gtk.pm, network/adsl.pm, fsedit.pm,
detect_devices.pm, modules.pm, network/shorewall.pm: remove some
unneeded ";", add some for normalization (as told by perl_checker)
2004/11/18 Pixel <pixel at mandrakesoft.com>
* diskdrake/hd_gtk.pm, install_steps_auto_install.pm,
partition_table/mac.pm, diskdrake/interactive.pm, standalone/harddrake2,
partition_table/raw.pm, partition_table/gpt.pm,
install_steps_interactive.pm: add some ";", remove some ";", as told by
perl_checker
2004/11/17 Pixel <pixel at mandrakesoft.com>
* diskdrake/interactive.pm: really remove the VG from internal list of
{lvms}, not on a copy
* install_steps_interactive.pm: fix indentation
* partition_table.pm: also remove "require partition_table::lvm_PV"
comment for perl_checker
2004/11/17 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* crypto.pm: Update inline mirror list again (the previous one was broken)
Update the inline mirror list for mini isos
Integrate from trunk (mirror list update)
Integrate fixes for mini-ISOs from the trunk.
* install_any.pm: Integrate fixes for mini-ISOs from the trunk.
2004/11/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
* harddrake/sound.pm: add new sound drivers from
kernel-tmb-2.6.7-2.tmb.6mdk
* modules.pm: on 10.0, b44 failled on newer cards; let's try bcm4400 too
* drakxtools.spec: bump requires on ldetect-lst b/c of s/3c90x/3c59x/
10.2-0.3mdk
fill in 10.2-0.2mdk's changelog
10-34.8.100mdk
10-34.7.100mdk
* standalone/service_harddrake: backport from 10.1: adapt to new nvidia
driver location due to
corporate now using DKMS
2004/11/16 Pixel <pixel at mandrakesoft.com>
* rescue/list.i386, rescue/list.ia64, rescue/list, rescue/list.ppc,
rescue/list.x86_64: move libperl.so from list.ARCH back to list, using a
wildcard
* fs/type.pm: for sunos:
- "SunOS swap" and "Whole disk" don't use ufs
- drop isSunOS(): replace it with testing {fs_type} eq 'ufs'
create isEmpty() and use it instead of simply testing {pt_type}, since
{pt_type} can be undef whereas {fs_type} is set
don't use pseudo fs_type "apple" for Apple Bootstrap partitions, better
only use {pt_type} for non mountable partitions
* fs/get.pm, diskdrake/interactive.pm, diskdrake/hd_gtk.pm: create
isEmpty() and use it instead of simply testing {pt_type}, since
{pt_type} can be undef whereas {fs_type} is set
* lang.pm: fix typo (thanks to bugzilla #12387)
* fsedit.pm, partition_table/lvm_PV.pm: handle more nicely raw_lvm_PV
(don't simply ignore them)
* 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)
* partition_table.pm: handle more nicely raw_lvm_PV (don't simply ignore
them)
don't die in will_tell_kernel() when the device is weird, since it is
normal when destroying a raw_lvm_PV
enhance readability
create isEmpty() and use it instead of simply testing {pt_type}, since
{pt_type} can be undef whereas {fs_type} is set
* detect_devices.pm: update ppc kernel modules detection & loading
cleanup get_mac_generation()
* tools/make_mdkinst_stage2, tools/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)
* partition_table/raw.pm: fix yaboot detection
* bootloader.pm: rename get_of_dev() -> dev2yaboot()
don't write boot OF in /tmp/of_boot_dev, better use dev2yaboot() instead
- 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()
* Xconfig/card.pm: enable UseFBDev in X configs on ppc, for rage128 and
radeon
set raw_LINES on every fglrx devices
drop broken code
- setting VideoRam for i810
- unsetting UseFBDev for r128 on ppc
* modules.pm: update ppc kernel modules detection & loading
* mdk-stage1/disk.c, mdk-stage1/tools.h, Makefile, mdk-stage1/cdrom.c,
mdk-stage1/config-stage1.h, rescue/Makefile, mdk-stage1/directory.c,
mdk-stage1/Makefile, docs/README, mdk-stage1/tools.c, rescue/.cvsignore,
rescue/make_rescue_img, mdk-stage1/network.c: 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
* pkgs.pm: enhance analyse_kernel_name(), esp. to handle i686-up-64GB
* any.pm: don't write boot OF in /tmp/of_boot_dev, better use dev2yaboot()
instead
* tools/Makefile: make_mdkinst_stage2 is no more, hail mdkinst_stage2_tool
2004/11/16 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/service_harddrake, harddrake/data.pm: on startup, redo ethX
aliases
on startup, redo ethX aliases
2004/11/15 Pixel <pixel at mandrakesoft.com>
* install_steps_interactive.pm:
- special bootstrap partition warning for IBM mac_generation
- no "OldWorld or Unknown machine" for IBM mac_generation
2004/11/15 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* drakxtools.spec: new release for new perl
* share/list: Adjust perl architecture, now that we don't have threads
anymore
2004/11/14 Funda Wang <fundawang at linux.net.cn>
* lang.pm: switch to gbk in zh_CN
2004/11/13 Pixel <pixel at mandrakesoft.com>
* rescue/list: add partimage
2004/11/12 Pixel <pixel at mandrakesoft.com>
* install_steps.pm, install_steps_interactive.pm: no "auto install floppy"
on ppc
* mdk-stage1/Makefile.common: cleanup
simplify
build init using $(DIET) just like stage2-* (needed for ppc, and nicer),
unify LDFLAGS_INIT and LDFLAGS_STAGE1
remove GLIBC_LDFLAGS_STAGE1 and DIETLIBC_LDFLAGS_STAGE1 since they were
not used everywhere,
and so it was not easy to understand
drop unused INIT_LIBC, GLIBC_LIBC, DIETLIBC_LIBC (all 3 were empty at
the moment)
* tools/ddcprobe/Makefile: disable ddcprobe again - it doesn't work right,
causing the installer to halt
with a divide by zero error
* 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)
* mdk-stage1/Makefile: build init using $(DIET) just like stage2-* (needed
for ppc, and nicer),
unify LDFLAGS_INIT and LDFLAGS_STAGE1
remove GLIBC_LDFLAGS_STAGE1 and DIETLIBC_LDFLAGS_STAGE1 since they were
not used everywhere,
and so it was not easy to understand
drop unused INIT_LIBC, GLIBC_LIBC, DIETLIBC_LIBC (all 3 were empty at
the moment)
don't use minilibc.h on ppc
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)
some defines are not arch dependent
* install_gtk.pm: 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)
fix converting the background color
2004/11/10 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/pt.po, share/po/mk.po: updated Macedonian file
2004/11/10 Pixel <pixel at mandrakesoft.com>
* drakxtools.spec: drakauth: add SmartCard authentication
* 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
- 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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* network/adsl_consts.pm: sync ADSL ISPs DB with HEAD
* drakxtools.spec: 10.2-0.1mdk
merge 10.1-27mdk's changelog from MDK10.1 branch
merge in lost changelog
10.1-27.1.101mdk
fix 10.1-27mdk's changelog
* standalone/service_harddrake: load yenta_socket and the like for PCMCIA
controllers
* standalone/logdrake: fix logdrake speed (should have been commited long
time ago)
fix logdrake speed (should have been commited long time ago)
* detect_devices.pm (isLaptop) fix it on non PPC arches
* network/ethernet.pm (mapIntfToDevice) backport 9box detection fix:
do not try to match usb devices since ldetect doesn't return enough data
* share/rpmsrate: install drivers for ipw2xOO
sync relevant "hardware/driver matching" bits from Head
* network/isdn_consts.pm: backport support for Philips Semiconductors DSL
card
2004/11/10 Vincent Guardiola <vguardiola at mandrakesoft.com>
* authentication.pm: add pm_mkhomedir
2004/11/09 Funda Wang <fundawang at linux.net.cn>
* pkgs.pm: reverted pkgs, Sorry
s/fctix/fcitx. Critical typo
* lang.pm: s/fctix/fcitx. Critical typo
2004/11/09 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2004/11/09 Olivier Blin <oblin at mandrakesoft.com>
* network/tools.pm: introduce network::tools::get_interface_status
2004/11/09 Pixel <pixel at mandrakesoft.com>
* Xconfig/card.pm: fix regexp given to matching_driver (otherwise
smartcard:xxx matches)
fix regexp given to matching_driver (otherwise smartcard:xxx matches)
2004/11/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
* detect_devices.pm (getSagem) do not probe for old adiusbadsl driver
(which is deprecated
by eagle-usb for more than one year)
* network/adsl_consts.pm: update/add ADSL ISP entries (Benoit Audouard)
reorder finnish entry
* lang.pm: backport s/fctix/fcitx/ fix from HEAD
* drakxtools.spec: bump require on ldetect-lst b/c of
s/adiusbadsl/eagleusb/
* share/theme-editor.pl: basic port from Gtk-1.2.x to Gtk+-2.x
2004/11/08 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/tg.po, share/po/pt.po: updated Tajik file
2004/11/08 Pixel <pixel at mandrakesoft.com>
* common.pm, install2.pm: cp_af() is missing in perl-MDK-Common
1.1.11-2mdk
* lvm.pm: call pvremove on every PVs when destroying a VG (to clear the
LVM2 magic) (bugzilla #11579)
* Xconfig/card.pm, do_pkgs.pm, bootloader.pm: backport
check_kernel_module_packages() from 10.1 to adapt to dkms proprietary
packages
2004/11/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
* network/netconnect.pm: do not use slicing when selecting single values
2004/11/07 huftis
* share/po/nn.po: More translated.
2004/11/07 Pixel <pixel at mandrakesoft.com>
* authentication.pm: SmartCard authentication needs pkg castella-pam
SmartCard authentication needs pkg castella-pam
2004/11/06 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2004/11/05 Olivier Blin <oblin at mandrakesoft.com>
* network/network.pm: hide ifcfg files for non-root users if they contain
a WEP key (#12177)
hide ifcfg files for non-root users if they contain a WEP key (#12177)
* mdk-stage1/pcmcia_/probe.c: merge from pcitable
2004/11/05 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/et.po, share/po/de.po: updated Estonian and German files
2004/11/05 Pixel <pixel at mandrakesoft.com>
* mdk-stage1/directory.c: RAMDISK_LOCATION_REL is a better name than
RAMDISK_LOCATION
create choose_iso_in_directory() out of try_with_directory()
* mdk-stage1/tools.c: we use pivot_root for rescue, so don't umount
STAGE2_LOCATION
saving stage1 resolv.conf is done in finish_preparing() with no special
code needed for rescue
(as was done in save_stuff_for_rescue())
RAMDISK_LOCATION_REL is a better name than RAMDISK_LOCATION
* Makefile: do not gzip pm files anymore (since we will soon use
compressed loopback, this is not useful anymore)
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!)
simplify
* mdk-stage1/network.c: use install/stage2/mdkinst.kernels to check stage2
kernel version instead of install/stage2/live/lib/modules.cz-xxx
* mdk-stage1/config-stage1.h: RAMDISK_LOCATION_REL is a better name than
RAMDISK_LOCATION
* share/list: do not gzip pm files anymore (since we will soon use
compressed loopback, this is not useful anymore)
* mdk-stage1/Makefile:
- no need to build stage1-cdrom nor stage1-network for MOVE
- for stage1-full, no special .c is needed for MOVE
cleanup (hoist MOVE_ADDSRC in STAGE1SRC)
remove duplicates in STAGE1OBJS-FULL, this removes make warnings
* authentication.pm: add "Smart Card" authentication (using pam_castella)
(as asked by flepied)
add "Smart Card" authentication (using pam_castella) (as asked by
flepied)
* rescue/tree/usr/share/symlinks, mdk-stage1/stage1.c: keep the tmpfs and
rescue in /tmp/stage2
(this allows to mount the rescue read-only)
* rescue/tree/etc/rc.sysinit: umount /stage1 when /etc/mtab exists to
remove a warning
free up stage1 memory
fix typo
keep the tmpfs and rescue in /tmp/stage2
(this allows to mount the rescue read-only)
2004/11/04 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/eu.po: updated Basque po file
2004/11/04 Pixel <pixel at mandrakesoft.com>
* mdk-stage1/stage1.h: MODE_RAMDISK is now unused
drop IS_SPECIAL_STAGE2 in favor of IS_RESCUE
* mdk-stage1/modules.c: LIVE_LOCATION is better named LIVE_LOCATION_REL
without the leading "/"
cleanup code using kernel_module_extension()
* mdk-stage1/stage1.c:
- create mount_clp_may_preload() out of handle_clp()
- rename handle_clp() to handle_move_clp() and simplify its use
IMAGE_LOCATION_REAL is better named STAGE2_LOCATION in MOVE
replace RAW_LOCATION_REL with IMAGE_LOCATION_REL
(the absolute symlink will now be relative, but that's ok here)
simplify since STAGE2_LOCATION is now valid for live installs before
pivot_root
(due to previous stage1.c commit)
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)
rename STAGE2_LOCATION_REL into STAGE2_LOCATION_ROOTED
(since STAGE2_LOCATION_REL is not relative, it's simply absolute when
chrooted)
create STAGE2_LOCATION symlink if it is not a directory (well more
precisely when it doesn't exist)
LIVE_LOCATION is better named LIVE_LOCATION_REL without the leading "/"
* mdk-stage1/network.c: LIVE_LOCATION is better named LIVE_LOCATION_REL
without the leading "/"
create str_ftp_error()
* mdk-stage1/config-stage1.h:
- create mount_clp_may_preload() out of handle_clp()
- rename handle_clp() to handle_move_clp() and simplify its use
add some comments
IMAGE_LOCATION_REAL is better named STAGE2_LOCATION in MOVE
- STAGE2_LOCATION is unused in MOVE
- IMAGE_LOCATION_REAL is unused in non MOVE
replace RAW_LOCATION_REL with IMAGE_LOCATION_REL
(the absolute symlink will now be relative, but that's ok here)
new macro IMAGE_LOCATION_REL
rename STAGE2_LOCATION_REL into STAGE2_LOCATION_ROOTED
(since STAGE2_LOCATION_REL is not relative, it's simply absolute when
chrooted)
LIVE_LOCATION is better named LIVE_LOCATION_REL without the leading "/"
* mdk-stage1/tools.h:
- create mount_clp_may_preload() out of handle_clp()
- rename handle_clp() to handle_move_clp() and simplify its use
test_that_cd() is now image_has_stage2()
* mdk-stage1/tools.c:
- create mount_clp_may_preload() out of handle_clp()
- rename handle_clp() to handle_move_clp() and simplify its use
fix typo
create save_fd() out of copy_file()
MODE_RAMDISK is now unused
LIVE_LOCATION is better named LIVE_LOCATION_REL without the leading "/"
test_that_cd() is now image_has_stage2()
drop IS_SPECIAL_STAGE2 in favor of IS_RESCUE
* mdk-stage1/url.c, mdk-stage1/url.h: create str_ftp_error()
* mdk-stage1/directory.c: LIVE_LOCATION_REL doesn't exist anymore in MOVE
more comment
LIVE_LOCATION is better named LIVE_LOCATION_REL without the leading "/"
use image_has_stage2() (even if not equivalent for rescue since we now
check the stage2 stuff instead, but it should do)
drop IS_SPECIAL_STAGE2 in favor of IS_RESCUE
* mdk-stage1/cdrom.c: more comment
test_that_cd() is now image_has_stage2()
drop IS_SPECIAL_STAGE2 in favor of IS_RESCUE
2004/11/04 Stew Benedict <sbenedict at mandrakesoft.com>
* 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.
Create cfg dir if needed, ignore vmnet for broadcast address.
Use xorg.conf. Touch dhcp.conf.etherboot.kernel.
2004/11/02 Pixel <pixel at mandrakesoft.com>
* mdk-stage1/tools.c: rename MEM_LIMIT_RAMDISK into MEM_LIMIT_DRAKX
compile less things when MANDRAKE_MOVE is defined
(needed so that future commits can restrict define's in config-stage1.h)
* mdk-stage1/directory.c: cleanup (remove warning when compiling with
MANDRAKE_MOVE defined)
* mdk-stage1/config-stage1.h: rename MEM_LIMIT_RAMDISK into
MEM_LIMIT_DRAKX
* mdk-stage1/disk.h, mdk-stage1/tools.h, mdk-stage1/stage1.c,
mdk-stage1/network.h: compile less things when MANDRAKE_MOVE is defined
(needed so that future commits can restrict define's in config-stage1.h)
* mdk-stage1/disk.c: use IMAGE_LOCATION_DIR where it should be
compile less things when MANDRAKE_MOVE is defined
(needed so that future commits can restrict define's in config-stage1.h)
* mdk-stage1/network.c: normalize code
rename MEM_LIMIT_RAMDISK into MEM_LIMIT_DRAKX
normalize code
use IMAGE_LOCATION_DIR where it should be
compile less things when MANDRAKE_MOVE is defined
(needed so that future commits can restrict define's in config-stage1.h)
2004/11/02 rstandtke
* share/po/de.po: some fixes
2004/11/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
* detect_devices.pm: perl_checker cleanups
(dmidecode) provide more fields
(computer_info) simplify
(dmidecode) handle multiple devices with same name
(computer_info) split it out of dmidecode()
* standalone/harddrake2, harddrake/data.pm: display more information
* install_steps.pm (setupBootloaderBefore) dmidecode() was renamed as
computer_info()
2004/10/29 Stew Benedict <sbenedict at mandrakesoft.com>
* standalone/drakbackup: Anthill #1134 - advise user about anacron.
2004/10/28 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
* pkgs.pm: IA-64 and X86-64 are full 64-bit arches thus don't need
kernel-enterprise
IA-64 and X86-64 are full 64-bit arches and thus don't need
kernel-enterprise
2004/10/28 Keld Jørn Simonsen <keld at dkuug.dk>
* share/po/da.po: corrections of errors
gi/perl-install/share/po/da.po
2004/10/28 Olivier Blin <oblin at mandrakesoft.com>
* network/isdn_consts.pm: support Philips Semiconductors DSL card
2004/10/28 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: bump buildrequires on ldetect and requires on
ldetect-lst so that
we've working support for freebox with USB link
10.1-27mdk
2004/10/28 Vincent Guardiola <vguardiola at mandrakesoft.com>
* authentication.pm: remove idmap from winbind AD
change description for Active directory
Remove sasl entry
Add check button for tls
2004/10/27 Pixel <pixel at mandrakesoft.com>
* raid.pm: since we need mdadm, ensure we have it (bugzilla #12146)
* diskdrake/interactive.pm: warn about created partition with a given
mount point but not formatted
since we need mdadm, ensure we have it (bugzilla #12146)
* any.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)
split {get,set}_append() into {get,set}_append_with_key() and
{get,set}_append_simple()
remove dead code
modifying $e->{append} is useless since we override it with $append
* 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)
split {get,set}_append() into {get,set}_append_with_key() and
{get,set}_append_simple()
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)
* install_steps.pm: split {get,set}_append() into
{get,set}_append_with_key() and {get,set}_append_simple()
nicer
* diskdrake/hd_gtk.pm: use ToggleButton instead of Button so that selected
partition is visually toggled
2004/10/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
* detect_devices.pm (getUPS) fix again MGE USB UPSes
(getUPS) fix again MGE USB UPSes
(getUPS) fix again MGE USB UPSes
* standalone/drakups: backport working drakups
* 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 Warly <warly at mandrakesoft.com>
* install_any.pm: add more log into find_root_part
2004/10/26 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
* share/list.x86_64: add 'synaptics' module so that testing works
add 'synaptics' module so that testing works
* fs/type.pm: older partition types (ntfs) are also available to x86_64
older partition types (ntfs) are also available to x86_64
* bootloader.pm: run grub chrooted
run grub chrooted
2004/10/26 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/eu.po: updated Basque file
2004/10/26 Pixel <pixel at mandrakesoft.com>
* authentication.pm: configure sshd to use PAM when needed (sshd config
file is modified, but i did not test more)
* install_any.pm: help perl_checker
in upgrade, when we need to migrate device names, we must write the
fstab
in upgrade, when we need to migrate device names, we must write the
fstab
* run_program.pm: do not use die when forked, use log::l + c::_exit
instead
do not use die when forked, use log::l + c::_exit instead
* install_steps_interactive.pm: in upgrade, when we need to migrate device
names, we must write the fstab
in upgrade, when we need to migrate device names, we must write the
fstab
* raid.pm: newly created raids must have a fs_type (this was dropped in
rev 1.45, it was an error)
newly created raids must have a fs_type (this was dropped in rev 1.45,
it was an error)
* Xconfig/various.pm, standalone/drakboot, bootloader.pm,
standalone/bootloader-config: detectloader must handle specially
raid-extra-boot=mbr-only (bugzilla #12089)
* install_steps.pm: detectloader must handle specially
raid-extra-boot=mbr-only (bugzilla #12089)
in upgrade, when we need to migrate device names, we must write the
fstab
in upgrade, when we need to migrate device names, we must write the
fstab
2004/10/26 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* crypto.pm: Remove spurious "my"
2004/10/26 Vincent Guardiola <vguardiola at mandrakesoft.com>
* authentication.pm: Fix net join for winbind
Changer order dialog in AD
2004/10/26 Warly <warly at mandrakesoft.com>
* install_any.pm: include support of the oem configuration file to display
the correct product name
2004/10/25 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
* share/po/pl.po: Some fixed
2004/10/25 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/eu.po, share/po/gl.po: updated Basque and Galician files
2004/10/25 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* share/po/fr.po: Merge French translations from cooker
2004/10/21 Daouda Lo <daouda at mandrakesoft.com>
* standalone/harddrake2:
- backport patches to MDK-10-update branch for oem
* standalone/printerdrake:
- backport fixes to MDK-10-update
2004/10/21 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: remove trailing slashes
2004/10/20 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/gl.po: updated Galician file
2004/10/19 Daouda Lo <daouda at mandrakesoft.com>
* standalone/printerdrake:
- perl_checker fixes
- don't hardcore distroname
- don't trigger help system when mandrake-doc-common is not installed
- don't trigger bug report in oem mode
* standalone/harddrake2:
- don't trigger help system when mandrake-doc-common is not installed
- don't trigger bug report in oem mode
- don't hardcode distro name (usefull for oem to change the distro
name at only one place)
2004/10/19 Pixel <pixel at mandrakesoft.com>
* 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)
* standalone/net_monitor: really fix typo (ie revert gtknew() patch)
fix typo
simplify
2004/10/19 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Repair FTP supplementary media with overriding of
rpmsrate and compssUsers.pl
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.
* 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.
* install_steps_interactive.pm: This deserves an explanation
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.
* crypto.pm: There are mirrors in many new countries now. (and sort the
list)
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/18 Warly <warly at mandrakesoft.com>
* crypto.pm: update version checking code of crypto.pm
2004/10/17 Keld Jørn Simonsen <keld at dkuug.dk>
* share/po/da.po: updates
gi/perl-install/share/po/da.po
2004/10/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/br.po: update
2004/10/16 Olivier Blin <oblin at mandrakesoft.com>
* standalone/net_monitor (update) do not re-select the default interface
every 5 seconds
2004/10/16 rstandtke
* share/po/de.po: added some translations
2004/10/15 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/it.po, share/po/eu.po, share/po/es.po, share/po/am.po: updated
Basque and Amharic files
2004/10/15 Pixel <pixel at mandrakesoft.com>
* network/adsl.pm: cleanup
* network/tools.pm: cleanup thanks to perl_checker
* network/netconnect.pm: cleanup thanks to perl_checker
make perl_checker happy
2004/10/14 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2004/10/14 Pixel <pixel at mandrakesoft.com>
* lvm.pm: no need to run vgscan and vgchange in standalone
(nb: /etc/lvmtab is no more used, so i also dropped that check)
* network/tools.pm: simplify
cleanup thanks to perl_checker
* standalone/fileshareset: cleanup
perl_checker compliance
* rescue/devices.pl: create /dev/md* devices in rescue
* diskdrake/interactive.pm: document UUID md field
* standalone/drakups: perl_checker compliance
* standalone/harddrake2, standalone/service_harddrake: cleanup thanks to
perl_checker
* services.pm: simplify
simplify
* 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
* raid.pm: put UUID instead of devices in mdadm.conf to be more device
naming independant
(as requested by Luca Berra on cooker)
* rescue/list: add /sbin/lvm2 to the rescue
* share/compssUsers.pl: remove unneeded parentheses
2004/10/13 Antoine Ginies <aginies at mandrakesoft.com>
* mdk-stage1/tools.c, mdk-stage1/stage1.h, mdk-stage1/tools.h,
mdk-stage1/url.c, mdk-stage1/stage1.c, mdk-stage1/network.c,
mdk-stage1/network.h, mdk-stage1/url.h: add new installation method (ka)
* mdk-stage1/stage1-data/stage1-with-ka.tar.bz2: add stage1 with ka-tools
2004/10/13 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2004/10/13 Pixel <pixel at mandrakesoft.com>
* standalone/fileshareset: "portmap status" prints "portmap (pid XXXX) is
running..." which bothers progs calling fileshareset (eg: gnome)
* install_steps_interactive.pm: make perl_checker happy
don't ask the security level in firewire meta_class
don't ask the security level in firewire meta_class
2004/10/13 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/drakfont: remove TODO entry regarding configurnig programs
that uses fontconfig
2004/10/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
* network/ethernet.pm (get_eth_cards) workaround more buggy drivers that
returns a bogus driver name for the GDRVINFO command of the ETHTOOL
ioctl
* standalone/drakconnect (del_intf) fix crash introduced by trainee just
before the release :-(
* drakxtools.spec: 10.1-26mdk
* share/po/br.po: update
2004/10/11 Pixel <pixel at mandrakesoft.com>
* bootloader.pm: in grub menu.lst, keep previous "serial ..." and
"terminal ..." lines (bugzilla #12054)
2004/10/11 Reinout van Schouwen <reinout at cs.vu.nl>
* share/po/nl.po: Updated Dutch (nl) translation
by Reinout van Schouwen <reinout@cs.vu.nl>
* DrakX
2004/10/11 Thierry Vignaud <tvignaud at mandrakesoft.com>
* network/ethernet.pm (get_eth_cards) fix another lying module
* drakxtools.spec: 10.1-25mdk
2004/10/11 Warly <warly at mandrakesoft.com>
* share/rpmsrate: use k3b-dvd by default
2004/10/11 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.1-24mdk
2004/10/10 Keld Jørn Simonsen <keld at dkuug.dk>
* share/po/da.po: updates
gi/perl-install/share/po/da.po
2004/10/10 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/fa.po: updated Persian file
* share/po/uk.po: updated Ukrainian file
* share/po/uz.po, share/po/pl.po, share/po/zh_TW.po, share/po/pt.po,
share/po/fr.po, share/po/hu.po, share/po/uz@Latn.po: updated Uzbek
files; checked various po files against latest *.pot
* share/po/ja.po: updated Japanese file
* share/po/nb.po, share/po/es.po: updated Spanish and Bokmål files
* share/po/it.po: updated Italian file
2004/10/10 vljubovic
* share/po/bs.po: Fixing Bosnian translation
2004/10/09 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
* share/po/pl.po: Updated
2004/10/09 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2004/10/09 Olivier Blin <oblin at mandrakesoft.com>
* network/adsl.pm (adsl_conf_backend) don't write ifcfg-ppp0 for
static/dhcp connections
* network/network.pm (configureNetwork2) remove
/etc/sysconfig/network-scripts/ethX files
that may have been created by sagem scripts
* standalone/drakconnect: remove /etc/sysconfig/network-scripts/ethX files
2004/10/08 (Hilbert) <h at mandrake.org>
* share/po/zh_TW.po: 1660:Welcome to the Printer Setup Wizard
2004/10/08 José JORGE <jjorge at free.fr>
* share/po/pt.po: jorge
2004/10/08 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/et.po, share/po/fr.po: updated Estonian po file
2004/10/08 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* share/po/fr.po: Missing French translations
2004/10/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
* network/adsl_consts.pm: fix encapsulation for chinese ISPs (Funda Wang,
#10965)
* share/rpmsrate:
- install ppp for RTC modems
- install kppp too if KDE is selected
- install drivers for HSF and HCF modems
* .perl_checker: perl_checker cannot currently parse the "encoding" and
the "utf8" modules
* 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)
start slmodemd when installing it (thus preventing the average user to
have to restart his machine in order to get a working connection)
fix H[CS]F modems configuration (kernel packages were renamed)
* drakxtools.spec: one more change for 10.1-23mdk
10.1-23mdk
10.1-22mdk
2004/10/08 Warly <warly at mandrakesoft.com>
* share/rpmsrate: Simplify complicated Flags for ppp and kdenetwork-ppp
add shareutils installed by default in SYSTEM
2004/10/08 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/et.po, share/po/fr.po: updated Estonian po file
2004/10/08 Pixel <pixel at mandrakesoft.com>
* bootloader.pm: on a recent kernel, we remove any existing devfs= kernel
option to enable udev
2004/10/08 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* share/po/fr.po: Missing French translations
Fixes
2004/10/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.1-22mdk
2004/10/08 Pixel <pixel at mandrakesoft.com>
* bootloader.pm: on a recent kernel, we remove any existing devfs= kernel
option to enable udev
2004/10/08 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* share/po/fr.po: Fixes
2004/10/07 Funda Wang <fundawang at linux.net.cn>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/sr@Latn.po, share/po/sq.po,
share/po/it.po, share/po/eu.po, share/po/es.po, share/po/lv.po,
share/po/hu.po, share/po/fa.po, share/po/id.po, share/po/ru.po,
share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
share/po/fr.po, share/po/ta.po, share/po/vi.po, share/po/nl.po,
share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: Updated POT
* share/po/zh_CN.po: Updated POT
Updated Simplified Chinese translation
2004/10/07 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
share/po/el.po, share/po/uz@Latn.po: updated pot file
* network/adsl_consts.pm: corrected "Morocco" name; converted to UTF-8
2004/10/07 Thomas Backlund <tmb at mandrake.org>
* share/po/fi.po: update translations, 100% translated, was 22 fuzzy, 2
untranslated.
* share/po/sv.po: Updated translations, 100% translated, was 193 fuzzy,
138 untranslated.
Whopee.... Swedish translations are now also at 100% ....
2004/10/07 Thierry Vignaud <tvignaud at mandrakesoft.com>
* network/adsl_consts.pm: add chinese ISPs (fundawang@yeah.net, #10965)
* network/modem.pm (first_modem) fix crash at install time
* harddrake/data.pm: explain
2004/10/07 Pixel <pixel at mandrakesoft.com>
* Xconfig/various.pm, install_steps.pm, Xconfig/default.pm,
Xconfig/main.pm, 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
* Xconfig/parse.pm: fix parsing fully commented Section. eg:
#Section "Extensions"
# Option "Composite" "Enable"
# Option "RENDER" "Enable"
#Endsection
2004/10/07 Thierry Vignaud <tvignaud at mandrakesoft.com>
* network/modem.pm (first_modem) fix crash at install time
2004/10/07 Pixel <pixel at mandrakesoft.com>
* Xconfig/various.pm, install_steps.pm, Xconfig/default.pm,
Xconfig/main.pm, 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
* Xconfig/parse.pm: fix parsing fully commented Section. eg:
#Section "Extensions"
# Option "Composite" "Enable"
# Option "RENDER" "Enable"
#Endsection
2004/10/06 José JORGE <jjorge at free.fr>
* share/po/pt.po: jorge
2004/10/06 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/am.po: updated Amharic file
* share/po/nb.po: updated Bokmål file
updated Bokmål file
2004/10/06 Thomas Backlund <tmb at mandrake.org>
* 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 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/nb.po: updated Bokmål file
2004/10/06 Pixel <pixel at mandrakesoft.com>
* bootloader.pm: fix regexp decompose_vmlinuz_name (broke with kernel
vmlinuz-2.6.8.1-12.1mdk)
2004/10/06 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_steps_auto_install.pm: Unneccessary in cooker
2004/10/06 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: log one more change in 10.1-21mdk
10.1-21mdk
* detect_devices.pm (getUPS) fix detecting UPS devices
2004/10/05 Pablo Saratxaga <pablo at mandrakesoft.com>
* 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 Pixel <pixel at mandrakesoft.com>
* install_gtk.pm: no special theme for meta_class firewall
no special theme for meta_class firewall
* install_steps_interactive.pm: for meta_class firewall, call the general
netconnect function
don't warnAboutNaughtyServers if meta_class is firewall
for meta_class firewall, call the general netconnect function
don't warnAboutNaughtyServers if meta_class is firewall
* Makefile: remove bad uniq now unneeded
use TMPDIR
* Makefile.config: add TMPDIR
* install2.pm: don't install updates when meta_class is firewall
don't install updates when meta_class is firewall
* partition_table.pm: don't use devices::part_number(), otherwise it fails
with c0d0p* devices
* network/netconnect.pm: don't configure firewall after configuring
network during install
(in summary you can configure firewall directly)
2004/10/05 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_steps_auto_install.pm: Add a dummy ask_yesorno for autoinstalls
* crypto.pm: Further normalization of updates directories.
New mirror structure for official updates
2004/10/05 Tibor Pittich <Tibor.Pittich at phuture.sk>
* share/po/sk.po: updated slovak translation
2004/10/05 Thierry Vignaud <tvignaud at mandrakesoft.com>
* detect_devices.pm (getUPS) add proper support for "American Power
Conversion|Back-UPS"
(getUPS) fix port for MGE's USB UPSes
(getUPS) fix drivers
(getUPS) typo fix
(getUPS) detect "American Power Conversion" UPS too
* drakxtools.spec: 10.1-20mdk
10.1-19mdk
* standalone/drakups: in manual adding:
- let's have unique UPS names in the list
- fix reading driver from the list
write config in pure wizard mode
(writeconf) restart upsd daemon
install nut earlier
fix installing nut
* standalone/drakfont (font_choice) remove debug message
fix closing import dialog (#11052)
* ugtk2.pm (Gtk2::ComboBox->set_text) do not die in official release
* pkgs.pm (supplCDMountPoint) perl_checker cleanup
* 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
* network/adsl_consts.pm: add a few new ADSL ISP : Argentina (Speedy),
Austria (AON), Morrocco
(Maroc Telecom) and Thailand (Asianet) (baud)
fix wrong VCI which wasn't in hexa for brazililan Velox/Telemar ISP
(baud)
2004/10/05 Warly <warly at mandrakesoft.com>
* share/rpmsrate: fix madwifi_kernel in madwifi-kernel
2004/10/05 Pixel <pixel at mandrakesoft.com>
* Makefile: remove bad uniq now unneeded
remove unused specific_arch
* partition_table.pm: don't use devices::part_number(), otherwise it fails
with c0d0p* devices
* 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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.1-19mdk
* ugtk2.pm (Gtk2::ComboBox->set_text) do not die in official release
* network/adsl_consts.pm: add a few new ADSL ISP : Argentina (Speedy),
Austria (AON), Morrocco
(Maroc Telecom) and Thailand (Asianet) (baud)
fix wrong VCI which wasn't in hexa for brazililan Velox/Telemar ISP
(baud)
2004/10/04 Olivier Blin <oblin at mandrakesoft.com>
* standalone/drakconnect (apply) recompute NETWORK and BROADCAST fiels in
manage interface
(manage) use both type and device name in non-ethernet interfaces list
(build_notebook) do not crash if BOOTPROTO is empty, use 'none' by
default (#11899)
* 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 rcasha
* share/po/mt.po: var
2004/10/04 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.1-18mdk
typo fix in 10.1-17mdk's changelog
* standalone/service_harddrake: remove what should had never been commited
2004/10/04 David Baudens <baudens at mandrakesoft.com>
* share/po/fr.po: Fix "Corporate Desktop" advertisment
2004/10/04 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
* mdk-stage1/dietlibc/include/sys/io.h: allow ioports on x86_64 too for
pcmcia support
* c/smp.c: 64-bit fixes for x86_64
* share/symlinks.x86_64: extra links on x86_64
* rescue/list.x86_64: add grub files
* Makefile: handle lib64 dirs, build pcmcia stuff on x86_64 too, handle
arch-specific
symlinks additions.
* fs/type.pm: re-enable xfs on x86_64, for testing
* Xconfig/card.pm: make perl_checker happy
x86_64 is a lib64 platform, so handle nvidia glx here too (and ati in
the future)
* share/list.x86_64: updates for xorg
* share/list: lib64 fixes, add im-cedilla
* mdk-stage1/rescue-gui.c: allow recovery of MS bootloader on x86 too
2004/10/04 (Hilbert) <h at mandrake.org>
* 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 Olivier Blin <oblin at mandrakesoft.com>
* network/netconnect.pm: do not lose GATEWAYDEV if it is a non wireless
one and a static
wireless card is configured (and vice versa)
write wlan-ng config files for prism2 drivers
2004/10/04 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/it.po: updated Italian file
2004/10/04 rcasha
* share/po/mt.po: var
2004/10/04 rstandtke
* share/po/de.po: some additions
2004/10/04 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/service_harddrake: remove what should had never been commited
do not disable glx when switching from nvidia driver to nv (indirect
support, #11285)
do not failled when hw db is corrupted
* share/po/br.po: fix inverted translation for autologin
* drakxtools.spec: 10.1-18mdk
typo fix in 10.1-17mdk's changelog
10.1-17mdk
10.1-16mdk
2004/10/04 Warly <warly at mandrakesoft.com>
* share/rpmsrate: mdkkdm is now the default again
2004/10/03 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2004/10/03 Keld Jørn Simonsen <keld at dkuug.dk>
* 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/03 Olivier Blin <oblin at mandrakesoft.com>
* network/adsl.pm: fix typo
(sagem_set_parameters, adsl_conf_backend): write static ip in
eagle-usb.conf if needed for sagem modems, else erase it
* 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)
* network/netconnect.pm: remove TYPE field in ifcfg files if connection
type isn't ADSL
perl_checker fix
do not lose ONBOOT setting for manual/dhcp dsl connections
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
do not break the "IP %s address is usually reserved" warning
2004/10/03 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/fa.po, share/po/pt.po: updated Persian file; put back current
version of Portuguese file
2004/10/03 rcasha
* share/po/mt.po: var
2004/10/03 tsdgeos
* share/po/ca.po: Small updates for ca
2004/10/02 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/cs.po: updated Czech file
2004/10/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/br.po: fix keyboard names
2004/10/01 Daouda Lo <daouda at mandrakesoft.com>
* tools/cvslog2changelog.pl:
- added Romain
2004/10/01 Frederic Lepied <flepied at mandrakesoft.com>
* 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 Olivier Blin <oblin at mandrakesoft.com>
* network/netconnect.pm: create $intf->{sagem} when needed before checking
it exists ...
(make sagem usable again with dhcp/static connections)
* mouse.pm (detect) fix synaptics auto-detection
2004/10/01 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/et.po: updated Estonian file
* share/po/uk.po: updated Ukrainian file
2004/10/01 Pixel <pixel at mandrakesoft.com>
* share/compssUsers.pl, share/compssUsers-powerpack.pl,
share/compssUsers-discovery.pl, share/compssUsers-powerpackplus.pl:
dynamically choose the compssUsers based on meta_class, so now we have
only one compssUsers.pl
* share/rpmsrate: revert part of the commit that was not done on purpose
(nb: don't modify rpmsrate *after* running clean-rpmsrate)
* pkgs.pm: fix logging rpmsrate_flags_chosen
* install2.pm:
- prosuite is now named powerpackplus
- simplify the code searching for the meta_class
fix logging rpmsrate_flags_chosen
2004/10/01 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/drakups: add --wizard option in order to directly run the
wizard
do not show banner when embedded
* standalone/service_harddrake.sh: run harddrake service on stop
* share/rpmsrate: try harder to include IMs on CDs
* standalone/service_harddrake: on stop blacklist snd-usb-audio
* standalone/man/C/man8/drakconnect.8: typo fixes
* drakxtools.spec: 10.1-15mdk
10.1-14mdk
10.1-13mdk
* detect_devices.pm: perl_checker cleanup
2004/10/01 Pixel <pixel at mandrakesoft.com>
* share/rpmsrate: revert part of the commit that was not done on purpose
(nb: don't modify rpmsrate *after* running clean-rpmsrate)
* pkgs.pm: fix logging rpmsrate_flags_chosen
* share/compssUsers.pl, share/compssUsers-powerpack.pl,
share/compssUsers-discovery.pl, share/compssUsers-powerpackplus.pl:
dynamically choose the compssUsers based on meta_class, so now we have
only one compssUsers.pl
* install2.pm:
- prosuite is now named powerpackplus
- simplify the code searching for the meta_class
fix logging rpmsrate_flags_chosen
2004/09/30 (Hilbert) <h at mandrake.org>
* share/po/zh_TW.po: 1612: Edit selected server
2004/09/30 marco
* share/po/it.po: fix
2004/09/30 Thomas Backlund <tmb at mandrake.org>
* share/po/fi.po: Updated translations, 100% translated, was 17 fuzzy, 78
untranslated.
2004/09/30 David Baudens <baudens at mandrakesoft.com>
* share/compssUsers.powerpack, share/rpmsrate, share/compssUsers.pl,
share/compssUsers-discovery.pl, share/compssUsers.server,
share/compssUsers.desktop, share/compssUsers-powerpack.pl,
share/compssUsers-powerpackplus.pl: Update
2004/09/30 Daouda Lo <daouda at mandrakesoft.com>
* standalone/net_applet:
- Numeric comparisons
2004/09/30 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation
2004/09/30 (Hilbert) <h at mandrake.org>
* share/po/zh_TW.po: 1425:WARNING: this device
2004/09/30 Pablo Saratxaga <pablo at mandrakesoft.com>
* authentication.pm: removed "\t" and "\n" out of translatable strings to
avoid useless
duplication; fixed English typographic errors (don't put spaces
before colons!).
* share/po/hr.po, share/po/sv.po: updated pot file
updated pot file
updated Croatian and Swedish files
* share/po/ja.po: updated po file
updated pot file
updated pot file
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/be.po,
share/po/ko.po, share/po/DrakX.pot, share/po/sr.po, share/po/pl.po,
share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
share/po/el.po, share/po/uz@Latn.po: updated pot file
updated pot file
2004/09/30 Pixel <pixel at mandrakesoft.com>
* lvm.pm: don't die when device-mapper is missing (occurs on 2.4 kernel)
(bugzilla #11834)
* authentication.pm: kinds() must return all kinds
only allow Active Directory for the corporate product
revert enhancement commit since we are in deep freeze
* standalone/drakauth, install_steps_interactive.pm: only allow Active
Directory for the corporate product
2004/09/30 Thierry Vignaud <tvignaud at mandrakesoft.com>
* harddrake/data.pm: typo fix
list tablets too with mice
use a distinct icon for UPS devices in harddrake GUI
fix UPS devices listed in both "UPS" and "unknown" classes
list all mice and keyboards (thus lowering unknown hardware in
hwdb-clients)
* lang.pm (configure_kdeglobals) set KDE in m17n emvironment if needed
* drakxtools.spec: split localedrake menu entry in two ones:
- one for user config
- one for system (embedded in mcc)
add one missing log in 10.1-12mdk
10.1-12mdk
* share/po/br.po: translate reverted messages so that they got smoothly
uncommented once
drakauth changes are merged back after mdk10.1 release
update
* standalone/icons/harddrake2/ups.png: use a distinct icon for UPS devices
in harddrake GUI
* detect_devices.pm (getUPS) provide more data on UPS (arnaud quette)
(getInputDevices) introduce it in order to list input devices
2004/09/30 Vincent Guardiola <vguardiola at mandrakesoft.com>
* authentication.pm: Remove ssl config in ldap
Add pam_mkhomedir for ldap
2004/09/29 Olivier Blin <oblin at mandrakesoft.com>
* standalone/net_monitor: check every 5 seconds (instead of 20) for new or
disconnected interfaces (#11780)
2004/09/29 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/es.po: corrected typo
2004/09/29 Pixel <pixel at mandrakesoft.com>
* 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 rcasha
* share/po/mt.po: var
2004/09/29 Tibor Pittich <Tibor.Pittich at phuture.sk>
* share/po/sk.po: updated slovak translation
2004/09/29 Vincent Guardiola <vguardiola at mandrakesoft.com>
* authentication.pm: Add more new entry for LDAP
2004/09/29 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/es.po: corrected typo
2004/09/29 Pixel <pixel at mandrakesoft.com>
* partition_table/raw.pm, fsedit.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)
* 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)
* any.pm: add raid-extra-boot=mbr when installing on mdX (bugzilla #11699)
* modules.pm: fix titi sux
* install_steps.pm: ensure gdk loaders, gtk immodules and pango modules
lists are correct
2004/09/29 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: install_urpmi now writes a names file for each media
2004/09/29 Thierry Vignaud <tvignaud at mandrakesoft.com>
* lang.pm (write) fix setting fonts at install time
* modules.pm (write_preload_conf) simplify
(write_preload_conf) preload nvram on laptops
* standalone.pm (version) print translated usage message (#5657)
* share/po/br.po: update
2004/09/28 Olivier Blin <oblin at mandrakesoft.com>
* 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 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: More logs on install_urpmi
2004/09/28 Tibor Pittich <Tibor.Pittich at phuture.sk>
* share/po/sk.po: updated slovak translation
2004/09/28 Frederic Lepied <flepied at mandrakesoft.com>
* share/rpmsrate: madwifi_pci => ath_pci
2004/09/28 Pixel <pixel at mandrakesoft.com>
* rescue/install_bootloader: handle /etc/mandrakelinux-release
* Xconfig/xfree.pm: use Driver "keyboard" instead of "Keyboard" (for Xorg
6.8)
* install_steps.pm, printer/main.pm, standalone/printerdrake,
printer/printerdrake.pm, install_steps_interactive.pm:
- 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/28 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: More logs on install_urpmi
2004/09/28 Pixel <pixel at mandrakesoft.com>
* install_steps.pm, printer/main.pm, standalone/printerdrake,
printer/printerdrake.pm, install_steps_interactive.pm:
- 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 Olivier Blin <oblin at mandrakesoft.com>
* network/tools.pm: I sux, fix priority
(bg_command_as_root) use kdesu in kde
(get_default_gateway_interface) try to detect default connection in
this order : adsl > isdn > modem > ethernet
* 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)
* network/netconnect.pm: ask to connect for isdn_external too
don't scramble $netcnx->{type}
ask to connect for modem/isdn connections too (crappy fix, this needs
to be redesigned once 10.1 is out)
we really support all linmodems (including Hsf and Hcf ones) with 2.6
kernels
2004/09/27 Pixel <pixel at mandrakesoft.com>
* partition_table/lvm_PV.pm: fix typos
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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* lang.pm: fix last commit
* standalone/drakperm (get_user_or_group) list users rather than groups
when requested for
(anthill #1161)
2004/09/27 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
* share/rpmsrate.corpo-server: mandrakegalaxy
* share/rpmsrate.corpo-desktop: clean-ups (factor out) + fixes for lib64
packages
2004/09/27 Olivier Blin <oblin at mandrakesoft.com>
* network/netconnect.pm: we really support all linmodems (including Hsf
and Hcf ones) with 2.6 kernels
2004/09/27 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/cs.po: updated Czech file
* share/po/bn.po: updated Bengali and Ukrainian files
* share/po/uk.po: updated Ukrainian file
updated Bengali and Ukrainian files
* lang.pm: fixed KDE font names to match currently shiped Xfs font names
2004/09/27 Pixel <pixel at mandrakesoft.com>
* partition_table/lvm_PV.pm: fix typos
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
* fs.pm: fix typo
* partition_table/dos.pm: fail if legacy_sectors_per_track or
legacy_max_head doesn't exist instead of returning garbage (bugzilla
#11738)
perl_checker compliance
don't call compute_nb_cylinders() before checking {sectors} and {heads}
are valid
* pkgs.pm, install2.pm: better logging
* Makefile: remove from perl-Gtk2 directories from /tmp/list to have less
warnings
2004/09/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
* lang.pm: fix last commit
* standalone/drakperm (get_user_or_group) list users rather than groups
when requested for
(anthill #1161)
2004/09/27 Warly <warly at mandrakesoft.com>
* share/rpmsrate.corpo-server, share/rpmsrate.corpo-desktop: add ximian
connector with evolution and change mdkonline to mdkonline-backend
2004/09/26 (Hilbert) <h at mandrake.org>
* share/po/zh_TW.po: perl-install:1310
Manual choice
2004/09/26 Olivier Blin <oblin at mandrakesoft.com>
* standalone/net_monitor: I am stupid, start when asked to start, stop
when asked to stop
* standalone/net_applet: fix again running processes detection
(go2state) do not destroy/re-create menu if state hasn't changed, or
else the menu may disappear without any reason
* standalone/drakroam (ConnectNow) specify device to iwconfig when
applying settings (partial fix for #11279)
2004/09/26 rcasha
* share/po/mt.po: var
2004/09/25 (Hilbert) <h at mandrake.org>
* share/po/zh_TW.po: DrakX-zh_TW: 1283
The most common
2004/09/24 Frederic Lepied <flepied at mandrakesoft.com>
* install_steps.pm: Mandrakelinux
* share/rpmsrate: slmodem-kernel and bluez-utils
2004/09/24 Pixel <pixel at mandrakesoft.com>
* printer/printerdrake.pm: don't ask when $in is not set in
security_check()
* install_steps_interactive.pm: oops, i missed a ->cleanupPrinter here.
inline it here too
install_steps must not call a method only defined in
install_steps_interactive, inline it
* standalone/bootloader-config: fix typos in usage
* install_steps.pm: install_steps must not call a method only defined in
install_steps_interactive, inline it
* fsedit.pm: increase the max size of the swap
2004/09/24 Reinout van Schouwen <reinout at cs.vu.nl>
* share/po/nl.po: Updated Dutch (nl) translation
by Reinout van Schouwen <reinout@cs.vu.nl>
* DrakX
2004/09/24 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Fix field name
Remove dead code
Better handling of relative paths
Ask only once for a supplementary CD
Fix 10.0-style paths
* pkgs.pm: Save hdlists and synthesis as user root
Remove unused code
2004/09/24 tsdgeos
* share/po/ca.po: Small catalan updates
2004/09/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
* network/netconnect.pm: do not disable ifplugd support for wireless cards
* standalone/drakups (add_device_wizard) refix list refreshing on UPS
adding
* drakxtools.spec: fix 10.1-11mdk's changelog
10.1-11mdk
2004/09/23 Olivier Blin <oblin at mandrakesoft.com>
* standalone/drakupdate_fstab: allow SYNC=no option in
/etc/sysconfig/dynamic
* 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)
* network/netconnect.pm: install kernel packages for winmodems
* network/adsl.pm (adsl_probe_info) fix old typo, do not reset vpi and vci
if vpi is
zero
2004/09/23 Pixel <pixel at mandrakesoft.com>
* install_interactive.pm: call fsedit::auto_allocate() with
$o->{partitions} so be able to fix a partitioning scheme in a defcfg
2004/09/23 rcasha
* share/po/mt.po: var
2004/09/23 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* Makefile.config, Makefile: Introducing TMPDIR
* install_any.pm: Missing bit from the trunk
2004/09/23 rstandtke
* share/po/de.po: some additions and fixes
2004/09/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/rpmsrate: do not install scim for hindic (native keyboards're
availlable)
gives a change to be on CDs to skim
* share/po/br.po: update
* lang.pm: add support for SKIM IM
install x-unikey for vietnamese (aka sync with share/rpmsrate)
use Sazanami Gothic for everything in japanese (Yukiko Bando)
2004/09/22 Olivier Blin <oblin at mandrakesoft.com>
* standalone/net_monitor: simplify
* 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
* network/netconnect.pm: use ttySL0 for slmodem, so that a symlink to
/dev/modem is done (#8947
again)
2004/09/22 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/et.po: updated Estonian file
* share/po/ja.po: updated Japanese file
2004/09/22 Pixel <pixel at mandrakesoft.com>
* partition_table/dos.pm: remove the backtrace
more logging
* install2.pm: don't set {meta_class} from file VERSION when it is already
given on cmdline
* fsedit.pm: fix an old ugly typo
* partition_table.pm: better logging
* devices.pm: module aes is now named aes-i586 (bugzilla #11588)
* lvm.pm: call pvremove on every PVs when destroying a VG (to clear the
LVM2 magic) (bugzilla #11579)
* fs.pm: silently ignore encrypted filesystems with no encrypt_key
don't add /dev/pts line in fstab anymore (it's done in initrd and udev)
2004/09/22 rcasha
* share/po/mt.po: var
2004/09/22 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_steps.pm, install_steps_interactive.pm: New method
selectSupplMedia
* Makefile: Separate mdkinst_stage2 step in makefile
* pkgs.pm: Don't read packages twice
Fix variable name
Handle reading multiple "hdlists" files (for supplementary media)
More CDrom mountpoint flexibility
Better error reporting with rpm installation failures
Always return a hashref from pkgs::packageMedium()
* install_any.pm: A trimmed-down version of the supplementary media
handling routine of
10.1 community. It handles only supplementary CDs.
Selection of supplementary media is now a method.
Backport utility functions from 10.1
Cope with different cd-rom mountpoints
2004/09/22 Tibor Pittich <Tibor.Pittich at phuture.sk>
* share/po/sk.po: updated slovak translation
2004/09/22 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/br.po: before exclamation marks, ellipsises, question marks and
colons:
- replace spaces by non breaking spaces where appropriate
- add missing spaces
* share/po/fr.po: fix badly phrased translation
before exclamation marks, ellipsises, question marks and colons:
- replace spaces by non breaking spaces where appropriate
- add missing spaces
fix a translation
2004/09/21 David Baudens <baudens at mandrakesoft.com>
* share/advertising/lpi.png, share/advertising/list-pwp,
share/advertising/lpi.pl, share/advertising/list-dwd,
share/advertising/list-dis, share/advertising/list-ppp: Add LPI
advertisement
2004/09/21 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation
2004/09/21 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
* mdk-stage1/pcmcia_/cs.h, mdk-stage1/pcmcia_/cardmgr.c,
mdk-stage1/pcmcia_/ds.h, mdk-stage1/pcmcia_/yacc_config.h,
mdk-stage1/pcmcia_/cs_types.h, mdk-stage1/pcmcia_/vg468.h,
mdk-stage1/pcmcia_/yacc_config.c, mdk-stage1/pcmcia_/i82365.h,
mdk-stage1/pcmcia_/driver_ops.h, mdk-stage1/pcmcia_/cirrus.h: clean-up,
merge, fix pcmcia subsystem to make it work on x86_64
* mdk-stage1/init.c: dirty little hack from pixel/gc to let mdk stage1
work with newer kernels
("testing" variable is supposedly obsolete btw)
* mdk-stage1/rescue-gui.c: make it possible to restore windows boot loader
on x86_64 too
* share/rpmsrate: rebreakify, tv likes it
- use correct name for mandrakegalaxy
- install cxoffice if available
- move rp-pppoe to appropriate location
* rescue/list.x86_64: add grub stuff to rescue
* bootloader.pm: run grub installation program in chroot so that to avoid
weird pbs at times
* mdk-stage1/stage1.c: same dirtly little hack (a cleanup actually)
* share/list: add missing gtk module (im-cedilla), arrangements for new
pango
* mdk-stage1/Makefile: pcmcia works on x86_64 too, update stage1 build for
10.0
* mdk-stage1/dietlibc/include/sys/io.h: define io ports on x86_64 too for
pcmcia stuff
2004/09/21 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/eu.po: updated Basque file
2004/09/21 Pixel <pixel at mandrakesoft.com>
* Xconfig/main.pm: allow ignoring X config file when it contains errors
* mouse.pm: don't allow a broken X configuration to break mouse
configuration
2004/09/21 Tibor Pittich <Tibor.Pittich at phuture.sk>
* share/po/sk.po: updated slovak translation
2004/09/21 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/br.po: update
typo fix
2004/09/21 Warly <warly at mandrakesoft.com>
* pkgs.pm: temporary workarround to fix extra CD
* install_steps_gtk.pm: do not display workstation entries in corporate
server
* share/rpmsrate, share/compssUsers.corpo-server,
share/rpmsrate.corpo-server, share/po/DrakX.pot,
share/rpmsrate.corpo-desktop, share/advertising/dwd-01.pl,
share/themes-corporate.rc, share/list, share/po/fr.po: Added some
corporate specific changes
* install_steps_interactive.pm: Display group selection in corporate
* any.pm: do not use default autologin in corporate
* Makefile: revert wrongly uploaded Makefile
Added some corporate specific changes
* install_gtk.pm: use corporate gtk theme in corporate
2004/09/21 Youcef Rabah Rahal <rahal at arabeyes.org>
* share/po/ar.po: Arabic translation
Arabic translation
2004/09/20 Olivier Blin <oblin at mandrakesoft.com>
* network/adsl.pm (adsl_conf_backend) do not let speedtouch-start launch
connection
* 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)
* network/netconnect.pm: do not write config two times for lan connections
2004/09/20 Pixel <pixel at mandrakesoft.com>
* diskdrake/interactive.pm, devices.pm, fs/type.pm, fs/mount_options.pm,
install_steps.pm, standalone/drakupdate_fstab, install_any.pm,
install_steps_interactive.pm, partition_table.pm:
- 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
* fs.pm: perl_checker compliance
- 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 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* pkgs.pm: Fix supplementary CDs with any kind of media
2004/09/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
* 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 Olivier Blin <oblin at mandrakesoft.com>
* standalone/net_monitor: remove connection time timer if connection fails
(fix #11590)
* network/adsl.pm (adsl_conf_backend) use avmadsl option for capi cards to
use settings
generated by drdsl
* network/netconnect.pm: do not write config two times for lan connections
move "Start at boot" step for lan-like adsl/cable connections
* 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 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/da.po: merged with current pot file
2004/09/20 Pixel <pixel at mandrakesoft.com>
* diskdrake/interactive.pm, devices.pm, fs/type.pm, fs/mount_options.pm,
install_steps.pm, standalone/drakupdate_fstab,
install_steps_interactive.pm, partition_table.pm:
- 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
* fs.pm: perl_checker compliance
- 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
- 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
* install_any.pm:
- 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
- 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
* standalone/drakboot, network/tools.pm, standalone/diskdrake,
standalone/bootloader-config:
- 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 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* share/po/fr.po: Fix typo
* pkgs.pm: Fix supplementary CDs with any kind of media
* install_any.pm: Remove no longer necessary hack.
2004/09/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/drakups (add_device_wizard) default to automatic detection
* share/po/br.po: update
2004/09/19 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation
2004/09/19 (Hilbert) <h at mandrake.org>
* share/po/zh_TW.po: DrakX-zh_TW: 1210
Circular mounts
2004/09/19 Keld Jørn Simonsen <keld at dkuug.dk>
* share/po/da.po: updates (ugh!)
gi/perl-install/share/po/da.po
Updates
gi/perl-install/share/po/da.po
updates
gi/perl-install/share/po/da.po
2004/09/18 Keld Jørn Simonsen <keld at dkuug.dk>
* share/po/da.po: updates
gi/perl-install/share/po/da.po
updates
gi/perl-install/share/po/da.po
updates
gi/perl-install/share/po/da.po
2004/09/17 Keld Jørn Simonsen <keld at dkuug.dk>
* share/po/da.po: updates
gi/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 Olivier Blin <oblin at mandrakesoft.com>
* standalone/service_harddrake: update iftab when new ethernet devices are
detected
probe firewire and pcmcia network devices too
* 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 ...)
(configure_eth_aliases) kill code that can't do anything good
(remove_alias isn't intended to be used with the module name)
* network/adsl.pm (adsl_conf_backend) make sure the speedtch kernel module
won't be hidden
* network/network.pm (configureNetwork2) really enable zeroconf if
zeroconf is requested
(configureNetwork2) write blank zeroconf hostname if zeroconf is
disabled, else drakconnect will assume it is enabled
(configureNetwork2) use services do disable zeroconf, do not disable
if it doesn't exist (to avoid warnings in console)
2004/09/17 Pixel <pixel at mandrakesoft.com>
* partition_table/dos.pm, partition_table/raw.pm, fsedit.pm: try to get
geometry from EDD
2004/09/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/drakups: perl_checker cleanup
remove debug message :-)
refresh UPS list when adding a new UPS though the add wizard
(add_device_wizard) fix automatically detect/add an UPS
* share/rpmsrate: install NUT for "American Power Conversion|Back-UPS Pro
500" too
* drakxtools.spec: 10.1-10mdk
2004/09/16 José JORGE <jjorge at free.fr>
* share/po/pt.po: jorge
2004/09/16 Olivier Blin <oblin at mandrakesoft.com>
* network/adsl.pm: stop capi service before new config is written so that
capiinit can unload the old driver
* network/isdn.pm: stop capi service before new config is written so that
capiinit can unload the old driver
make isdn over capi work again
* network/netconnect.pm: don't support all slmodem cards, our agreement
forbid it :-/
do not ask "capidrv or capidrv ?" ...
make isdn over capi work again
* share/rpmsrate: do not install isdn-light, it's unused, unsupported, and
breaks
isdn4net
* network/network.pm (read_all_conf) use network::tools to probe
connection type
2004/09/16 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
share/po/az.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
share/po/ta.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
share/po/uz@Latn.po: updated pot file
* share/po/es.po: fixed typo
updated pot file
* network/netconnect.pm: fixed typo (no spaces before question marks in
English)
2004/09/16 Pixel <pixel at mandrakesoft.com>
* standalone/draksplash2: add as a comment the "convert" command
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)
display the stepping effect
* detect_devices.pm: C3 has "cpu family" == 6, so now also checking that
cmov flag is available to say we have a i686
* 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 rcasha
* share/po/mt.po: var
2004/09/16 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* 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.
* install_any.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.
Better retry on error handling for supplementary media
* share/list: Include locale.pm in the install, since ugtk2 now uses it.
2004/09/16 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/br.po: update
update
* standalone/drakups (add_device_wizard) fix device list in wizard
perl_checker cleanups
2004/09/15 Olivier Blin <oblin at mandrakesoft.com>
* network/adsl.pm: do not add prefix in path given to ensure_is_installed
! (i.e. replace untested code with untested code), fix #11547 and more
add comment
(adsl_conf_backend) don't create empty pppoe.conf if the package isn't
installed
load modules and run start programs in standalone too, so that it will
work even if the packages have just been installed
* network/netconnect.pm: install unicorn-kernel package if available
add "Unlisted - edit manually" entry in modem provider list (fix #11549)
do not add prefix in path given to ensure_is_installed ! (i.e. replace
untested code with untested code), fix #11547 and more
* detect_devices.pm (getBewan) use more permissive regexp for PCI modem,
description in
pcitable may change
* network/isdn.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 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/uz.po, share/po/uz@Latn.po: updated Uzbek files
* share/po/it.po: updated Italian file
* 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 Pixel <pixel at mandrakesoft.com>
* fsedit.pm: explicit scalar false value (otherwise it gives () in list
context)
* bootloader.pm: no need to require pkgs (and it makes bootloader-config
some break when removing entries)
2004/09/15 Stew Benedict <sbenedict at mandrakesoft.com>
* standalone/drakbackup: Use radio buttons in media selection (wildman).
perl_checker compliance.
2004/09/15 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/drakbackup (interactive_mode_box) better make parameter
optionnal
* share/po/bn.po, share/po/ms.po, share/po/gl.po, share/po/th.po,
share/po/et.po, share/po/hr.po, network/netconnect.pm, share/po/be.po,
share/po/ko.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
share/po/ca.po, share/po/ar.po, share/po/ltg.po, share/po/nb.po,
share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/it.po, share/po/eu.po, share/po/es.po, network/adsl.pm,
share/po/lv.po, share/po/hu.po, share/po/ru.po, share/po/sl.po,
share/po/nn.po, share/po/mt.po, share/po/ga.po, share/po/uk.po,
share/po/mn.po, share/po/am.po, share/po/lt.po, share/po/tg.po,
share/po/bs.po, share/po/fur.po, share/po/wa.po, share/po/hi.po,
share/po/pt.po, share/po/vi.po, share/po/fr.po, share/po/ta.po,
share/po/nl.po, share/po/de.po, share/po/eo.po, share/po/cs.po,
share/po/uz@Latn.po: fix PPPoA case
* modules/interactive.pm (load_category__prompt) fix spacing in module
list
* share/po/br.po: update
update
update
update
* drakxtools.spec: last minute changes in 10.1-9mdk
10.1-9mdk
fix typo in 10.1-6mdk's and 10.1-7mdk's changelog
* share/po/sk.po, share/po/pt_BR.po, share/po/ja.po, share/po/sv.po,
share/po/sr.po, share/po/da.po, share/po/ky.po, share/po/sr@Latn.po,
share/po/sq.po, share/po/fa.po, share/po/id.po, share/po/tr.po,
share/po/mk.po, share/po/is.po, share/po/af.po, share/po/az.po,
share/po/tl.po, share/po/el.po, share/po/bg.po: unfuzzy a few sagem
strings
fix PPPoA case
* share/po/cy.po: update (note that my welsh needs to be reviewed as well
as my 2004/08/13 update)
fix PPPoA case
* ugtk2.pm (get_text_coord) fix wrapping for CJ when mixed with english
strings
(eg: cuted "Mandrakesoft" word)
(get_text_coord) kill unused character
* install_steps_gtk.pm (installPackages) kill unused variable
2004/09/15 vljubovic
* share/po/bs.po: A small fix
2004/09/15 Warly <warly at mandrakesoft.com>
* share/rpmsrate: add dkms-minimal in INSTALL
2004/09/15 Youcef Rabah Rahal <rahal at arabeyes.org>
* share/po/ar.po: Arabic translation
2004/09/15 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/uz.po, share/po/uz@Latn.po: updated Uzbek files
* share/po/it.po: updated Italian file
2004/09/14 Olivier Blin <oblin at mandrakesoft.com>
* install_steps.pm (configureNetwork) commit forgotten patch (I sux)
* detect_devices.pm (getModem) use network/slmodem category
* install_steps_interactive.pm (configureNetwork) load all network modules
before network
auto-configuration, so that all interfaces will be available and
written in iftab
* network/isdn.pm: adapt to kernel packages naming
* network/netconnect.pm: allow to configure slmodem
2004/09/14 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/cs.po: updated Czech file
* lang.pm: comment for default:LTR
comment on default:LTR
* share/po/it.po, share/po/ms.po, share/po/es.po, share/po/am.po,
share/po/fur.po, share/po/fi.po, share/po/pt.po: corrected default:LTR
entries
* share/po/ar.po: corrected "<control>X" strings
* share/po/bn.po: corrected "<control>X" strings
corrected default:LTR entries
2004/09/14 Pixel <pixel at mandrakesoft.com>
* diskdrake/interactive.pm, fsedit.pm, fs/mount_options.pm,
partition_table.pm:
- ensure {is_removable} field is there for created partitions, not
only existing partitions
- it breaks Create(), fixing
2004/09/14 Stew Benedict <sbenedict at mandrakesoft.com>
* authentication.pm: Fix net join syntax for winbind setup.
2004/09/14 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: fix typo in 10.1-7mdk's changelog
10.1-8mdk
10.1-7mdk
package man pages
* standalone/service_harddrake: adapt to new nvidia driver location
* any.pm (selectCountry) offer to select IM if language has one
preselected
(else option is only availlable in advanced mode)
* Makefile.drakxtools, Makefile: package man pages
* standalone/man/C/man8/drakconnect.8: remove reference to ipchains
add drakconnect man page
* network/ethernet.pm (get_eth_cards) document it somewhat
(get_eth_cards_names) let detect_devices->firewire_probe() set the
device description
(get_eth_cards) workaround buggy eth1394 that returs a bogus driver
name for the GDRVINFO command of the ETHTOOL ioctl returns
(get_eth_cards_names) set a sensible name for firewire network
adapters in order to make GUIes look more user friendly
2004/09/14 Olivier Blin <oblin at mandrakesoft.com>
* network/isdn.pm: adapt to kernel packages naming
(write_config) remove unused parameter
(setup_capi_conf) use capi4linux file to detect isdn4k-utils package
(setup_capi_conf) install firmware if needed
(setup_capi_conf) do not do dsl-specific stuff here
* network/netconnect.pm: allow to configure slmodem
(get_eth_cards_names) remove unused parameter
(configureNetwork2) configure eth aliases, needs modules_conf
cleanup, remove unused parameters and comments
support dsl over capi
* network/network.pm (configureNetwork2) configure eth aliases, needs
modules_conf
* standalone/drakconnect (get_eth_cards_names) remove unused parameter
(configureNetwork2) configure eth aliases, needs modules_conf
remove unused parameter
* network/adsl.pm (adsl_conf_backend) move isdn4k-utils installation here
(adsl_conf_backend) remove ifcfg-sagem
(adsl_conf_backend) support dsl over capi
* detect_devices.pm (getModem) use network/slmodem category
* network/shorewall.pm, standalone/drakgw (get_eth_cards_names) remove
unused parameter
* do_pkgs.pm (check_kernel_module_packages) make ext package optionnal
* network/ethernet.pm (get_eth_cards_names) remove unused parameter
(configureNetwork2) configure eth aliases, needs modules_conf
(configure_eth_aliases) errm, use modules_conf
do not configure eth aliases in various places, move aliases
configuration code from get_eth_cards_names to configure_eth_aliases
2004/09/14 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/es.po, share/po/ro.po, share/po/gl.po, share/po/fur.po,
share/po/wa.po, share/po/pt_BR.po, share/po/ca.po, share/po/eo.po,
share/po/fr.po: MandrakeSoft -> Mandrakesoft; Mandrake -> Mandrakelinux
* share/po/pt.po: MandrakeSoft -> Mandrakesoft; Mandrake -> Mandrakelinux
fixed typo
* share/po/ar.po: updated po file
* share/po/cs.po: updated Czech po file
2004/09/14 Pixel <pixel at mandrakesoft.com>
* diskdrake/interactive.pm, fsedit.pm, fs/mount_options.pm,
partition_table.pm:
- ensure {is_removable} field is there for created partitions, not
only existing partitions
- it breaks Create(), fixing
* detect_devices.pm: get the scsi driver name in field {driver}
2004/09/14 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Apparently perl_checker doesn't like my perfectly
sensible perl syntax.
2004/09/14 Stew Benedict <sbenedict at mandrakesoft.com>
* network/smb.pm: syntax changes in winbind smb.conf (errors in
/var/log/messages)
* authentication.pm: Fix net join syntax for winbind setup.
2004/09/14 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/man/C/man8/drakconnect.8: add drakconnect man page
* standalone/service_harddrake: space cleanup
* network/netconnect.pm: upcase acronyms
* Makefile, Makefile.drakxtools: package man pages
* 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
* harddrake/data.pm: detect scanners later so that we filter out bogus usb
devices detected
by sane_find_scanner
detect not yet supported ethernnet cards too
(unknown) blacklist more bridges (though f() should already take care
of that)
detect more bridges and the like
* network/ethernet.pm (get_eth_cards) document it somewhat
(get_eth_cards_names) let detect_devices->firewire_probe() set the
device description
(get_eth_cards) workaround buggy eth1394 that returs a bogus driver
name for the GDRVINFO command of the ETHTOOL ioctl returns
(get_eth_cards_names) set a sensible name for firewire network
adapters in order to make GUIes look more user friendly
* standalone/drakTermServ, standalone/drakfont, standalone/drakbackup:
sanitize capitale usage on buttons
* drakxtools.spec: 10.1-7mdk
package man pages
10.1-6mdk
10.1-5mdk
* 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 Warly <warly at mandrakesoft.com>
* share/logo-mandrake.png: Community 10.1 logo
2004/09/14 Youcef Rabah Rahal <rahal at arabeyes.org>
* share/po/ar.po: Arabic translation
2004/09/13 (Hilbert) <h at mandrake.org>
* share/po/zh_TW.po: DrakX-zh_TW: 711
Please insert the
locally modified
2004/09/13 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2004/09/13 Olivier Blin <oblin at mandrakesoft.com>
* network/isdn_consts.pm: fix typo
* network/netconnect.pm: do not auto-select static/dhcp if the provider
uses pppoe
only write ifcfg-sagem when needed
add isdn_driver step to be able to choose between hisax and capi drivers
* network/isdn.pm (setup_capi_conf) install isdn4k-utils
handle capi drivers
* network/tools.pm (get_default_ippp_interface) use interfaces with true
DIAL_ON_IFUP
2004/09/13 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_steps_interactive.pm: The "choose an update mirror" screen was
launched without notice when
a supplementary ftp media was selected.
* install_any.pm: redundant code
2004/09/13 Stew Benedict <sbenedict at mandrakesoft.com>
* standalone/drakbackup: Fix crashes in CD/Tape setup. Fix UI behavior in
wizard. (Nicolas Adenis-Lamarre)
2004/09/13 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation
2004/09/13 Pixel <pixel at mandrakesoft.com>
* share/rpmsrate: simplify
* Xconfig/card.pm: adapt to new proprietary package naming
* 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 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_steps.pm: Ability to choose from the mirror list when assing an
ftp supplementary
media. Fix download of hdlists file for ftp supplementary media.
* install_any.pm: redundant code
deselection of found media: don't display twice media from the same
installation CD
http supplementary media were borked
Ability to choose from the mirror list when assing an ftp supplementary
media. Fix download of hdlists file for ftp supplementary media.
* install_steps_interactive.pm: The "choose an update mirror" screen was
launched without notice when
a supplementary ftp media was selected.
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 Stew Benedict <sbenedict at mandrakesoft.com>
* standalone/drakbackup: Fix crashes in CD/Tape setup. Fix UI behavior in
wizard. (Nicolas Adenis-Lamarre)
2004/09/13 Till Kamppeter <till at mandrakesoft.com>
* Makefile.config: Reverted accidentally uploaded file.
Fixed "dynamic()" in scannerdrake to do not contain anything
interactive.
* standalone/scannerdrake: Fixed "dynamic()" in scannerdrake to do not
contain anything interactive.
2004/09/13 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/fr.po: another typo fix
typo fix
* drakxtools.spec: fix 10.1-3mdk's changelog
10.1-4mdk
* share/po/cy.po: fix draksec entries in welsh
* share/rpmsrate: fix regexpes
fix rpmsrate
ltmodem needs ltmodem package
2004/09/13 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation
2004/09/13 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/sv.po,
share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
share/po/uz@Latn.po: updated pot file
2004/09/13 Pixel <pixel at mandrakesoft.com>
* share/rpmsrate: simplify
* Xconfig/card.pm: adapt to new proprietary package naming
* 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 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: http supplementary media were borked
Ability to choose from the mirror list when assing an ftp supplementary
media. Fix download of hdlists file for ftp supplementary media.
* 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 Till Kamppeter <till at mandrakesoft.com>
* Makefile.config: Reverted accidentally uploaded file.
Fixed "dynamic()" in scannerdrake to do not contain anything
interactive.
* standalone/scannerdrake: Fixed "dynamic()" in scannerdrake to do not
contain anything interactive.
2004/09/13 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/fr.po: another typo fix
typo fix
* drakxtools.spec: fix 10.1-3mdk's changelog
10.1-4mdk
* share/po/cy.po: fix draksec entries in welsh
* share/rpmsrate: fix rpmsrate
ltmodem needs ltmodem package
2004/09/13 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation
2004/09/13 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/ja.po, share/po/hr.po,
share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
share/po/ca.po, share/po/da.po, share/po/ltg.po, share/po/nb.po,
share/po/ky.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
share/po/fr.po, share/po/ta.po, share/po/vi.po, share/po/nl.po,
share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: updated pot file
* share/po/ar.po: updated pot file
updated Arabic file
* share/po/et.po: updated pot file
updated Estonian po file
2004/09/13 Pixel <pixel at mandrakesoft.com>
* share/rpmsrate: simplify
* Xconfig/card.pm: adapt to new proprietary package naming
* 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 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_steps.pm, install_any.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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/cy.po: fix draksec entries in welsh
- 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
* share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
share/po/sl.po, share/po/et.po, share/po/hr.po, share/po/mt.po,
share/po/ga.po, share/po/be.po, share/po/uk.po, share/po/mn.po,
share/po/am.po, share/po/ko.po, share/po/sv.po, share/po/pl.po,
share/po/he.po, share/po/ca.po, share/po/ar.po, share/po/tg.po,
security/help.pm, share/po/ltg.po, share/po/uz.po, share/po/wa.po,
share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/pt.po,
share/po/fr.po, share/po/sr@Latn.po, share/po/it.po, share/po/nl.po,
share/po/tl.po, share/po/de.po, share/po/eo.po, share/po/bg.po,
share/po/lv.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
* standalone/draksec (set_help_tip) only use on tooltip group
* standalone/drakbug_report: fix crash
* share/rpmsrate: fix rpmsrate
ltmodem needs ltmodem package
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.
both diskdrake and initscripts now prefer mdadm over raidtools
* harddrake/data.pm: explain why some hw classes are not probed on
bootstrapping
move comment where appropriate
2004/09/13 vljubovic
* share/po/bs.po: Fixing
2004/09/12 (Hilbert) <h at mandrake.org>
* share/po/zh_TW.po: DrakX-zh_TW: 711
No floppy drive
2004/09/12 huftis
* share/po/nn.po: Fixed a few fuzzy strings.
2004/09/12 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/zh_TW.po, share/po/az.po, share/po/nl.po: updated Azeri file
updated pot file
* keyboard.pm: disambiguation of keyboard names, so they can be translated
differently
from language names
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po,
share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
share/po/hi.po, share/po/af.po, share/po/pt.po, share/po/vi.po,
share/po/fr.po, share/po/ta.po, share/po/de.po, share/po/tl.po,
share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
share/po/uz@Latn.po: updated pot file
* share/po/it.po: updated Italian file
updated pot file
2004/09/12 Reinout van Schouwen <reinout at cs.vu.nl>
* share/po/nl.po: Updated Dutch (nl) translation
by Reinout van Schouwen <reinout@cs.vu.nl>
* DrakX
2004/09/12 Youcef Rabah Rahal <rahal at arabeyes.org>
* share/po/ar.po: Arab ic translation
2004/09/11 (Hilbert) <h at mandrake.org>
* share/po/zh_TW.po: DrakX-zh_TW: 662
You have selected
2004/09/11 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po: updated Bengali file
* share/po/fa.po, share/po/ms.po, share/po/sv.po, share/po/he.po,
share/po/br.po, share/po/hi.po, share/po/et.po, share/po/zh_TW.po,
share/po/tr.po, share/po/pt.po, share/po/ar.po: updated Estonian file;
fixed error syntax in Hebrew file;
removed non-ascii version of the bootloader message
2004/09/10 (Hilbert) <h at mandrake.org>
* share/po/zh_TW.po: DrakX-zh_TW: 650
You must also
2004/09/10 Olivier Blin <oblin at mandrakesoft.com>
* network/netconnect.pm: do not ask if network should be started on boot
if it has already been
asked during pseudo-lan configuration
* standalone/net_applet: lower refresh timeout to 5 seconds
make connect/disconnect buttons useful
2004/09/10 Pablo Saratxaga <pablo at mandrakesoft.com>
* keyboard.pm: some more XKB keyboard names fixed to match xorg versions
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
fixed Russian phonetic keyboard layout on xorg
2004/09/10 Pixel <pixel at mandrakesoft.com>
* pkgs.pm: fix choosing bestKernelPackage
remove debug code
2004/09/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: one more change in 10.1-3mdk for lord blino
10.1-3mdk
typo fix in 10.1-0.19mdk's changelog
fix 10.1-0.25mdk's changelog
10.1-2mdk
- move tools description in proper packages (aka make -newt
description somewhat usefull)
- describe missing tools
- sanitize tool names
* share/po/fr.po: update (how did the drakvpn got fuzzy whereas this tool
was left
untouched for monthes???)
2004/09/10 Youcef Rabah Rahal <rahal at arabeyes.org>
* share/po/ar.po: Arabic translation from Arabeyes
2004/09/10 Olivier Blin <oblin at mandrakesoft.com>
* standalone/drakboot (enable_framebuffer) do not kill the whole wizard
when embedded
2004/09/10 Pablo Saratxaga <pablo at mandrakesoft.com>
* 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
fixed Russian phonetic keyboard layout on xorg
* share/po/it.po: updated Italian file
2004/09/10 Pixel <pixel at mandrakesoft.com>
* pkgs.pm: fix choosing bestKernelPackage
remove debug code
* resize_fat/c_rewritten.xs, c/stuff.xs.pl, xf86misc/main.xs,
Newt/Newt.xs: prototypes are dangerous
2004/09/10 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* 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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* harddrake/data.pm: autoconfigure mice on bootstrapping
* harddrake/autoconf.pm: cleanups
autoconfigure mice on bootstrapping
* drakxtools.spec: typo fix in 10.1-1mdk's changelog
10.1-1mdk
* share/po/br.po: update
* standalone/service_harddrake: cleanups
perl_checker cleanups
autoconfigure mice on bootstrapping
2004/09/10 Olivier Blin <oblin at mandrakesoft.com>
* standalone/drakboot (enable_framebuffer) do not kill the whole wizard
when embedded
* standalone/drakconnect (configure_net) use network::test to test
internet connection
* network/test.pm: fix stupid things
fix indentation and CVS Id
(update_status) handle decimal ping time with comma instead of dot
2004/09/10 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/it.po: updated Italian file
2004/09/10 Pixel <pixel at mandrakesoft.com>
* install_steps_gtk.pm: do not display release notes anymore (since it
hides advertising...)
* install_steps_interactive.pm: add button "Release Notes" in the
acceptLicense dialog box
* c/stuff.xs.pl, xf86misc/main.xs, Newt/Newt.xs,
resize_fat/c_rewritten.xs: prototypes are dangerous
* interactive/gtk.pm: for ask_warn with big text, create a bigger window
introduce {more_buttons} to allow the "Release Notes" button. ugly, but
it works :-(
* rescue/list: /bin/loadkeys is no more
* install2.pm: log the {meta_class}
* ugtk2.pm: create_box_with_title():
- introduce the ugly $o->{box_allow_grow}
- cleanup the usage
2004/09/10 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* 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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* harddrake/data.pm: autoconfigure mice on bootstrapping
* harddrake/autoconf.pm: cleanups
autoconfigure mice on bootstrapping
* drakxtools.spec: typo fix in 10.1-1mdk's changelog
10.1-1mdk
* share/po/br.po: update
* standalone/service_harddrake: cleanups
perl_checker cleanups
autoconfigure mice on bootstrapping
2004/09/09 Pixel <pixel at mandrakesoft.com>
* pkgs.pm:
- choose the good kernel for the box
- add recognition of i586-up-1GB
* c/smp-dmi.c: max() is not defined, inline it
* install_any.pm: BIGMEM now means >4GB
* detect_devices.pm: add is_i586() based on "cpu family", hopefully it
works for detecting K6 and C3
2004/09/09 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* share/compssUsers.pl: Fix typo in section title
* install_steps_interactive.pm: minor fix in last patch
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.
* pkgs.pm, install_any.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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.1-0.27mdk
10.1-0.26mdk
* 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.
(selectCountry) do not overwrite current IM (why does this only failed
with miniChinput???)
* standalone/localedrake: really reset IM on language switch
remove debug message
only default to per locale default IM when switching between locales
* lang.pm (write) fix ENC setting too (like thai IM, it got broken when
analyse_locale_name and the like were added it seems)
fix thai IM that was broken for ages (but it was disabled in 10.0
anyway so ...)
fix ENC and locale specific stuff even when IM is disabled (because of
thai)
simplify ENC setting
- sanitize some variable names
- add/update comments
(write) make it a little more readable
(write) kill unused variable
add a comment about font settings for installer
Singapore is en_SG not zh_SG !!!
(read) fix chinput identification
fix XIM_MODIFIER field for xcin and chinput IM
2004/09/09 Youcef Rabah Rahal <rahal at arabeyes.org>
* share/po/ar.po: Syn with Arabeyes CVS before a translation that should
hopefully happen soon...
2004/09/09 David Baudens <baudens at mandrakesoft.com>
* share/rpmsrate: Up kpilot
2004/09/09 Funda Wang <fundawang at linux.net.cn>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/sl.po, share/po/nn.po,
share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
share/po/uz@Latn.po: Updated POT file
2004/09/09 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
* tools/ddcprobe/int10/i10_v86.c: Nuke use of conditional expressions as
lvalues
* tools/ddcprobe/Makefile: Remake x86emu & int10 subdirs if sources have
changed
2004/09/09 Nicolas Planel <nplanel at mandrakesoft.com>
* c/smp-dmi.c: add dmi type 6 in detection memory size
2004/09/09 Olivier Blin <oblin at mandrakesoft.com>
* network/isdn_consts.pm: add @isdn_capi array of cards than can use capi
drivers
* lang.pm: reduce font size in japanese install
2004/09/09 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/be.po: cyrillic fixes
* share/po/bs.po, share/po/af.po, share/po/az.po, share/po/am.po,
share/po/ar.po: some Mandrake -> Mandrakelinux and MandrakeSoft ->
Mandrakesoft fixes
* share/po/tg.po, share/po/ltg.po, share/po/ru.po, share/po/ro.po,
share/po/mt.po, share/po/sr@Latn.po, share/po/it.po, share/po/tl.po,
share/po/sr.po, share/po/de.po, share/po/cy.po, share/po/ca.po,
share/po/da.po, share/po/el.po, share/po/lv.po: fixed media paths
* share/po/uk.po: cyrillic fixes
fixed media paths
* share/po/bg.po: some Mandrake -> Mandrakelinux and MandrakeSoft ->
Mandrakesoft fixes
fixed media paths
2004/09/09 Pixel <pixel at mandrakesoft.com>
* pkgs.pm:
- choose the good kernel for the box
- add recognition of i586-up-1GB
* share/rpmsrate: cleanup
remove tabulation
* any.pm: even "lilo -u" can prompt about the "Volume ID" fixing process
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
* c/smp-dmi.c: max() is not defined, inline it
* bootloader.pm: handle raid-extra-boot (bugzilla #11350)
remove unused variable
- 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
help emacs mode
fix regexp to work with "linux-2.6.8.1-10mdk"
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
* run_program.pm: don't check_prog when the prog is a complex command
(containing a pipe)
simplify
rename $str into $real_name
remove redundant code
* install_any.pm: BIGMEM now means >4GB
* detect_devices.pm: add is_i586() based on "cpu family", hopefully it
works for detecting K6 and C3
2004/09/09 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* share/po/fr.po: Grammar fixes
* install_steps_interactive.pm: minor fix in last patch
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.
* pkgs.pm, install_any.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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* 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.
(selectCountry) do not overwrite current IM (why does this only failed
with miniChinput???)
* lang.pm: fix thai IM that was broken for ages (but it was disabled in
10.0
anyway so ...)
fix ENC and locale specific stuff even when IM is disabled (because of
thai)
simplify ENC setting
- sanitize some variable names
- add/update comments
(write) make it a little more readable
(write) kill unused variable
add a comment about font settings for installer
Singapore is en_SG not zh_SG !!!
(read) fix chinput identification
fix XIM_MODIFIER field for xcin and chinput IM
(write) set proper XIM_PROGRAM depending on both encoding and locale
(fix chinput configuration that was broken for ages)
(set_default_im) really just set default IM and nothing more
(write) fix XIM_PROGRAM setting
(set_default_im) simplify
(IM packages list) when configuring chinput, we need miniChinput (a
evolution of chinput that replaced it)
* share/rpmsrate: install slmodem for ltmodem, slamr, slusb windmodem
drivers too
* standalone/localedrake: really reset IM on language switch
remove debug message
only default to per locale default IM when switching between locales
* network/network.pm (read_all_conf) remove spurous character from regexp
(read_all_conf) ignore rpm's backups (#10816)
* resize_fat/c_rewritten.xs, xf86misc/main.xs, Newt/Newt.xs: kill warnings
* drakxtools.spec: 10.1-0.27mdk
10.1-0.26mdk
10.1-0.25mdk
2004/09/09 Warly <warly at mandrakesoft.com>
* share/compssUsers.pl: Display Development group in the same way as other
groups.
2004/09/09 David Baudens <baudens at mandrakesoft.com>
* share/rpmsrate: Up kpilot
2004/09/09 Funda Wang <fundawang at linux.net.cn>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/sl.po, share/po/nn.po,
share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
share/po/uz@Latn.po: Updated POT file
2004/09/09 Nicolas Planel <nplanel at mandrakesoft.com>
* c/smp-dmi.c: add dmi type 6 in detection memory size
2004/09/09 Olivier Blin <oblin at mandrakesoft.com>
* network/isdn_consts.pm: add @isdn_capi array of cards than can use capi
drivers
* lang.pm: reduce font size in japanese install
2004/09/09 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/be.po: cyrillic fixes
* share/po/bs.po, share/po/af.po, share/po/az.po, share/po/am.po,
share/po/ar.po: some Mandrake -> Mandrakelinux and MandrakeSoft ->
Mandrakesoft fixes
* share/po/tg.po, share/po/ltg.po, share/po/ru.po, share/po/ro.po,
share/po/mt.po, share/po/sr@Latn.po, share/po/it.po, share/po/tl.po,
share/po/sr.po, share/po/de.po, share/po/cy.po, share/po/ca.po,
share/po/da.po, share/po/el.po, share/po/lv.po: fixed media paths
* share/po/uk.po: cyrillic fixes
fixed media paths
* share/po/bg.po: some Mandrake -> Mandrakelinux and MandrakeSoft ->
Mandrakesoft fixes
fixed media paths
2004/09/09 Pixel <pixel at mandrakesoft.com>
* pkgs.pm:
- choose the good kernel for the box
- add recognition of i586-up-1GB
* share/rpmsrate: cleanup
remove tabulation
* any.pm: even "lilo -u" can prompt about the "Volume ID" fixing process
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
* c/smp-dmi.c: max() is not defined, inline it
* bootloader.pm: handle raid-extra-boot (bugzilla #11350)
remove unused variable
- 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
help emacs mode
fix regexp to work with "linux-2.6.8.1-10mdk"
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
* run_program.pm: don't check_prog when the prog is a complex command
(containing a pipe)
simplify
rename $str into $real_name
remove redundant code
* install_any.pm: BIGMEM now means >4GB
* detect_devices.pm: add is_i586() based on "cpu family", hopefully it
works for detecting K6 and C3
2004/09/09 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* share/po/fr.po: Grammar fixes
* install_steps_interactive.pm: minor fix in last patch
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.
* pkgs.pm, install_any.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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* 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.
(selectCountry) do not overwrite current IM (why does this only failed
with miniChinput???)
* lang.pm: fix thai IM that was broken for ages (but it was disabled in
10.0
anyway so ...)
fix ENC and locale specific stuff even when IM is disabled (because of
thai)
simplify ENC setting
- sanitize some variable names
- add/update comments
(write) make it a little more readable
(write) kill unused variable
add a comment about font settings for installer
Singapore is en_SG not zh_SG !!!
(read) fix chinput identification
fix XIM_MODIFIER field for xcin and chinput IM
(write) set proper XIM_PROGRAM depending on both encoding and locale
(fix chinput configuration that was broken for ages)
(set_default_im) really just set default IM and nothing more
(write) fix XIM_PROGRAM setting
(set_default_im) simplify
(IM packages list) when configuring chinput, we need miniChinput (a
evolution of chinput that replaced it)
* share/rpmsrate: install slmodem for ltmodem, slamr, slusb windmodem
drivers too
* standalone/localedrake: really reset IM on language switch
remove debug message
only default to per locale default IM when switching between locales
* network/network.pm (read_all_conf) remove spurous character from regexp
(read_all_conf) ignore rpm's backups (#10816)
* resize_fat/c_rewritten.xs, xf86misc/main.xs, Newt/Newt.xs: kill warnings
* drakxtools.spec: 10.1-0.27mdk
10.1-0.26mdk
10.1-0.25mdk
2004/09/09 Warly <warly at mandrakesoft.com>
* share/compssUsers.pl: Display Development group in the same way as other
groups.
2004/09/09 David Baudens <baudens at mandrakesoft.com>
* share/rpmsrate: Up kpilot
compssUsers.pl and rpmsrate for 10.1 Community
* share/compssUsers.pl: compssUsers.pl and rpmsrate for 10.1 Community
2004/09/09 Nicolas Planel <nplanel at mandrakesoft.com>
* c/smp-dmi.c: add dmi type 6 in detection memory size
2004/09/09 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/be.po: cyrillic fixes
* share/po/tg.po, share/po/ltg.po, share/po/ru.po, share/po/ro.po,
share/po/mt.po, share/po/sr@Latn.po, share/po/it.po, share/po/tl.po,
share/po/de.po, share/po/sr.po, share/po/cy.po, share/po/da.po,
share/po/ca.po, share/po/el.po, share/po/bg.po, share/po/lv.po: fixed
media paths
* share/po/uk.po: cyrillic fixes
fixed media paths
2004/09/09 Pixel <pixel at mandrakesoft.com>
* 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
help emacs mode
fix regexp to work with "linux-2.6.8.1-10mdk"
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
* 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
* run_program.pm: don't check_prog when the prog is a complex command
(containing a pipe)
simplify
rename $str into $real_name
remove redundant code
2004/09/09 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_steps_interactive.pm: Fix regexp
* share/po/fr.po: Grammar fixes
2004/09/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
* network/network.pm (read_all_conf) remove spurous character from regexp
(read_all_conf) ignore rpm's backups (#10816)
2004/09/08 David Baudens <baudens at mandrakesoft.com>
* share/rpmsrate: Slow mdkkdm, up kdm, add accessibility softwares
2004/09/08 Frederic Lepied <flepied at mandrakesoft.com>
* detect_devices.pm: added slamr, slusb and ltmodem modules for getModem
2004/09/08 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2004/09/08 Olivier Blin <oblin at mandrakesoft.com>
* standalone/drakboot: update splash when removed too, use Mandrakelinux
theme by default,
don't give theme name to remove-theme
* network/network.pm (configureNetwork2) update iftab when config is
written
* standalone/drakconnect: fix #11287
* network/ethernet.pm: remove update_eth_card_iftab(), add update_iftab()
2004/09/08 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/de.po (tm) -> â„¢
updated po file
* share/po/it.po: updated Italian file
* keyboard.pm: added (commented) new keyboard for tibetan script, so I
remember it later
2004/09/08 Pixel <pixel at mandrakesoft.com>
* fs/get.pm: fix comment
* any.pm: replace "Cancel" with "Close" when prompting to launch userdrake
(as suggested by Fabian Mandelbaum)
disable "Ok" when neither NFS nor SMB is selected (as suggested by
Fabian Mandelbaum)
2004/09/08 Reinout van Schouwen <reinout at cs.vu.nl>
* share/po/nl.po: Updated Dutch (nl) translation
by Reinout van Schouwen <reinout@cs.vu.nl>
2004/09/08 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* http.pm, install_any.pm: Better version of the reload-IO::Socket patch
* install_steps_interactive.pm: Don't suggest lost+found as a user name
(bug #11298)
* install_steps.pm: Don't require installation of foomatic-db-engine when
installing from the
mini CD (bug #11292)
* pkgs.pm: Add a count of skipped packages after having read an hdlist
Always return a hashref from pkgs::packageMedium()
Remove debug logs
2004/09/08 Thomas Backlund <tmb at mandrake.org>
* share/po/fi.po: updated translations...
2004/09/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.1-0.24mdk
* standalone/drakupdate_fstab: handle options in any order
* harddrake/autoconf.pm (xconf) fix X11 autoconfiguration
* standalone/drakperm (get_user_or_group) fix freeze (#11274)
* standalone/service_harddrake: log which tools are runned
fix log message when we cannot run a configurator
* any.pm (set_window_manager) ensure ~/.dmrc is owned by user else GDM
complains about (spoted by frederic crozat)
* 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/07 David Baudens <baudens at mandrakesoft.com>
* share/rpmsrate: Add kphone
2004/09/07 Olivier Blin <oblin at mandrakesoft.com>
* mdk-stage1/adsl.c (perform_adsl) ppp module doesn't exist, don't try to
load it
2004/09/07 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* 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 David Baudens <baudens at mandrakesoft.com>
* share/rpmsrate: Add kphone
Down kdm
2004/09/07 Daouda Lo <daouda at mandrakesoft.com>
* standalone/drakbug:
- shift twice to get the correct function name
2004/09/07 Olivier Blin <oblin at mandrakesoft.com>
* mdk-stage1/adsl.c (perform_adsl) ppp module doesn't exist, don't try to
load it
* mouse.pm: more synaptics fixes
* 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 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/nb.po: updated Bokmål po file
2004/09/07 Pixel <pixel at mandrakesoft.com>
* standalone/bootloader-config: take care of symlink based bootloader
entries
* bootloader.pm: create get_kernels_and_labels_before_kernel_remove() used
by bootloader-config
* modules/modprobe_conf.pm, modules/modules_conf.pm: when installing on
kernel 2.4, do generate a valid modprobe.conf anyway
2004/09/07 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: install_urpmi() wasn't writing proper urls when having
read an hdlists
file for a networked supplementary media
Allow supplementary media for upgrades
* pkgs.pm: install_urpmi() wasn't writing proper urls when having read an
hdlists
file for a networked supplementary media
2004/09/07 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: one more change for 10.1-0.23mdk
last minute change for 10.1-0.23mdk
10.1-0.23mdk
* share/po/fr.po: typo fix
fix unclosed tag
* install_steps.pm (selectLanguage) set default IM (else IM was only set
if one click on
"Country / Region" in summary)
2004/09/07 David Baudens <baudens at mandrakesoft.com>
* share/rpmsrate: Down zapping rank
2004/09/07 Daouda Lo <daouda at mandrakesoft.com>
* standalone/drakbug:
- shift twice to get the correct function name
2004/09/07 Olivier Blin <oblin at mandrakesoft.com>
* network/tools.pm (get_interface_type) ethernet devices can be used as
adsl devices
* standalone/drakconnect (del_intf) use more detailled device names on
Fabrice Facorat suggestion
s/kind/name/
(manage) clean interface kind assignment
* network/adsl.pm: load modules for pppoe connections during install
(partial fix for #11189)
* mouse.pm: more synaptics fixes
* 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)
* network/netconnect.pm: I sux
pppoa shouldn't be selected by default for ethernet devices, fallback on
pppoe
use fctStartAdsl for eagle-usb in dhcp/static modes
2004/09/07 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/nb.po: updated Bokmål po file
2004/09/07 Pixel <pixel at mandrakesoft.com>
* standalone/bootloader-config: take care of symlink based bootloader
entries
* bootloader.pm: create get_kernels_and_labels_before_kernel_remove() used
by bootloader-config
* 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
* modules/modprobe_conf.pm, modules/modules_conf.pm: when installing on
kernel 2.4, do generate a valid modprobe.conf anyway
2004/09/07 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* share/po/fr.po: Iran != Irak
Typo fix
* pkgs.pm: Code factorization
Skip packages that are found on a supplementary media but that are
already provided by the main media.
* install_any.pm: Remove unused variable
2004/09/07 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: one more change for 10.1-0.23mdk
last minute change for 10.1-0.23mdk
10.1-0.23mdk
* standalone/service_harddrake: add/update a few comments
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)
* share/po/fr.po: typo fix
fix unclosed tag
update
2004/09/06 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation
Updated Simplified Chinese translation
* share/po/DrakX.pot: Updated Simplified Chinese translation
2004/09/06 Olivier Blin <oblin at mandrakesoft.com>
* network/adsl.pm (adsl_conf_backend) explode sagem specific stuff to
sagem_set_parameters()
* install2.pm: always load mouse modules at beginning of install (should
fix X test
not working with synaptics during install)
* standalone/drakconnect: perl_checker fixes
(del_intf) update for adsl/modem/isdn connections
(build_tree) avoid code duplication, use network::modem::ppp_read_conf
(build_notebook) Authentication is used for modems only (better fix for
#11142)
* network/modem.pm (ppp_read_conf) override Authentication if it does not
contain a digit character,
the empty string exists ...
(ppp_read_conf) try to read kppp config from user dir
(ppp_read_conf) return modem configuration
(ppp_read_conf) use /dev/modem if no modem was detected (do not crash
when we edit a connection whose modem is unplugged)
* detect_devices.pm (getNet) fix detection in 2.4 kernel for net devices
with high traffic
* network/netconnect.pm: fix stupid error
adjust tests, dhcp/static adsl connections can now use non-ethernet
devices
write sagem specific stuff for dhcp/static connections
always ask adsl provider
keep linmodem message for Hcf and Hsf
remove wrong message about linmodems (#11224)
* share/po/fr.po: translate Zeroconf message
2004/09/06 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/wa.po, share/po/fr.po: Mandrake --> Mandrakelinux
updated pot file
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/sr@Latn.po, share/po/sq.po,
share/po/it.po, share/po/eu.po, share/po/es.po, share/po/lv.po,
share/po/hu.po, share/po/fa.po, share/po/id.po, share/po/ru.po,
share/po/br.po, share/po/sl.po, share/po/nn.po, share/po/tr.po,
share/po/mt.po, share/po/ga.po, share/po/mn.po, share/po/uk.po,
share/po/am.po, share/po/lt.po, share/po/cy.po, share/po/tg.po,
share/po/bs.po, share/po/fur.po, share/po/mk.po, share/po/is.po,
share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
share/po/vi.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
share/po/tl.po, share/po/eo.po, share/po/el.po, share/po/bg.po,
share/po/cs.po, share/po/uz@Latn.po: updated pot file
* lang.pm: some more languages not supported on console
* any.pm: Changed "User name" to "Login name" (less ambiguous)
2004/09/06 Pixel <pixel at mandrakesoft.com>
* raid.pm: safer
fix typo
handle pt_type, not only fs_type
be more failsafe with half broken existing raids
* drakxtools.spec: need latest perl-MDK-Common
* detect_devices.pm: BIOS release date can have date DD/MM/YY (or maybe it
is MM/DD/YY), only YYYY was handled
* fs/type.pm:
- detect LVM2
- don't even check_md magic when we don't have the size of the device
detect linux software raid magic
* 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))
* 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
* fsedit.pm: some more logging
fix typo
detect linux software raid magic
* diskdrake/interactive.pm: fix displaying "mdmd0" instead of "md0"
2004/09/06 Reinout van Schouwen <reinout at cs.vu.nl>
* share/po/nl.po: Updated Dutch (nl) translation
by Reinout van Schouwen <reinout@cs.vu.nl>
2004/09/06 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Supplementary media: don't forget to check for a new
rpmsrate too
Make the network supplementary media probe able to find an hdlists file
Override rpmsrate and compssUsers.pl by the ones found on a
supplementary CD
* pkgs.pm: Make the network supplementary media probe able to find an
hdlists file
* share/list: consolechars has moved
2004/09/06 Thomas Backlund <tmb at mandrake.org>
* share/po/fi.po: Merge translations by Taisto Kuikka.
Update translations, not yet fully translated...
2004/09/06 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/harddrake2: better looking for alternative drivers
* ugtk2.pm (_create_window) do not set border for wizards
* drakxtools.spec: 10.1-0.22mdk
10.1-0.21mdk
* install_steps.pm, standalone/localedrake, install_steps_interactive.pm:
drop lang::write()'s prefix parameter in favor of $::prefix (which was
already partially done)
* share/rpmsrate: do not install uim-applet for japanese since SCIM
already provides its
own applet
* harddrake/data.pm:
- do not run drakconnect for ethernet & ADSL
- do not run diskdrake for hd
add module for storage controllers that are not compiled built-in in
kernel
add a few comments
add module for AGP controller
run drakconnect when an ADSL device is found (we should do so only when
device
is added, not when removed)
add module for TV cards (trainee sucks...)
* standalone/drakconnect: fix crashes
* log.pm (explanations) redirect log where appropriate at install time
* standalone/service_harddrake: typo fix
add module for storage controllers that are not compiled built-in in
kernel
* modules.pm: add module for storage controllers that are not compiled
built-in in kernel
* standalone/drakboot: ensure we do not enable autologin w/o any user
* lang.pm (write) fix log message when installing IM packages
drop lang::write()'s prefix parameter in favor of $::prefix (which was
already partially done)
(write, configure_kdeglobals) log quite more explanations
(write) really do nothing when no IM is set (harmfull but saner)
(write) package list was already computed
fix english name for breton
always set QT_IM_MODULE when setting GTK_IM_MODULE
remove uneeded quotes
- 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
add specific packages to install for japanese when using SCIM
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.
* share/po/fr.po: update
2004/09/06 vljubovic
* share/po/bs.po: Small fixes
2004/09/05 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po, share/po/DrakX.pot: Updated Simplified Chinese
translation
2004/09/05 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/et.po: updated Estonian file
updated pot file
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/ja.po, share/po/hr.po,
share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
share/po/da.po, share/po/ca.po, share/po/ar.po, share/po/ltg.po,
share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/uk.po,
share/po/mn.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
share/po/wa.po, share/po/is.po, share/po/af.po, share/po/hi.po,
share/po/az.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
share/po/fr.po, share/po/nl.po, share/po/tl.po, share/po/de.po,
share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
share/po/uz@Latn.po: updated pot file
* pixmaps/langs/lang-lb.png, pixmaps/langs/lang-km.png,
pixmaps/langs/lang-lo.png, pixmaps/langs/lang-ik.png,
pixmaps/langs/lang-ur.png, pixmaps/langs/lang-sc.png,
pixmaps/langs/lang-fy.png, pixmaps/langs/lang-ks.png,
pixmaps/langs/lang-lg.png, pixmaps/langs/lang-ug.png,
pixmaps/langs/lang-sw.png, pixmaps/langs/lang-ha.png,
pixmaps/langs/lang-tt@Cyrl.png, pixmaps/langs/lang-pa.png,
pixmaps/langs/lang-chr.png, pixmaps/langs/lang-csb.png,
pixmaps/langs/lang-fur.png, pixmaps/langs/lang-so.png,
pixmaps/langs/lang-ps.png, pixmaps/langs/lang-kl.png,
pixmaps/langs/lang-ks@Arab.png, pixmaps/langs/lang-kk.png: new lang
images
* 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)
* standalone/drakbackup: fixed typo
2004/09/05 Reinout van Schouwen <reinout at cs.vu.nl>
* share/po/nl.po: Updated Dutch (nl) translation
by Reinout van Schouwen <reinout@cs.vu.nl>
2004/09/05 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* share/po/fr.po: Replace a XFree86 by X11 in the French messages
2004/09/04 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/pt.po: fixed typo
* share/po/ja.po: updated Japanese file
2004/09/03 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
* share/po/pl.po: Updated
2004/09/03 José JORGE <jjorge at free.fr>
* share/po/pt.po: more
2004/09/03 Olivier Blin <oblin at mandrakesoft.com>
* Xconfig/xfree.pm (set_synaptics) remove spurious space
* mouse.pm: perl_checker fix
(set_xfree_conf) synaptics fixes
2004/09/03 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Umount supplementary CD immediately after having read
informations on it.
2004/09/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/ja.po: update (Yukiko Bando <ybando@k6.dion.ne.jp>)
* detect_devices.pm (getModem) handle new winmodem low level driver for
VIA in ALSA
2004/09/03 Olivier Blin <oblin at mandrakesoft.com>
* network/network.pm (findIntf, read_all_conf) use default DEVICE field
only at last
ressort, keep weird DEVICE fiels (i.e for sagem)
(write_interface_conf) remove quotes if DEVICE is the result of a
command
(configureNetwork2) use key from $intf hash to determine ifcfg
filename (to allow to use weird DEVICE fields, like
DEVICE=`/usr/sbin/eaglectrl -i`)
(write_interface_conf) allow TYPE field, will be used to recognize ADSL
interfaces
* mouse.pm (set_xfree_conf) synaptics fixes
* network/netconnect.pm: support DHCP and manual for sagem devices
* network/tools.pm: remove horrible and unneeded workaround
shut up perl_checker!
remove test_internet_connection(), use network::test instead
(get_interface_type) enhance detection for adsl devices
2004/09/03 Pixel <pixel at mandrakesoft.com>
* share/list, interactive/newt.pm:
- 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)
* Makefile: make dont_run_directly_stage2 keep runinstall2 as a symlink
(since mdkstage1 check it is a symlink)
- 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)
* lang.pm: always use utf8 strings during install since our locale is
always utf8
* Newt/Newt.xs:
- 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)
don't let slang call setlocale(), we do it ourselves
2004/09/03 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Umount supplementary CD immediately after having read
informations on it.
Make local copies of rpmsrate and compssUsers.pl from supplementary CD
Better handling of mounting/umounting supplementary CDs
Add a system error when no CD reader is found for a supplementary CD
Remove support for looking directly for a hdlist1s.cz file on
supplementary CDs.
* pkgs.pm: Better handling of mounting/umounting supplementary CDs
2004/09/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: log a few more commits from blino for 10.1-0.20mdk
10.1-0.20mdk
* share/po/ja.po: update (Yukiko Bando <ybando@k6.dion.ne.jp>)
* tools/cvslog2changelog.pl: add one more translator
* detect_devices.pm (getModem) handle new winmodem low level driver for
VIA in ALSA
2004/09/03 Damien Chaumette <dchaumette at mandrakesoft.com>
* standalone/drakconnect: don't exclude Gtk2::Entry filling
2004/09/03 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation
2004/09/03 Olivier Blin <oblin at mandrakesoft.com>
* network/network.pm (findIntf, read_all_conf) use default DEVICE field
only at last
ressort, keep weird DEVICE fiels (i.e for sagem)
(write_interface_conf) remove quotes if DEVICE is the result of a
command
(configureNetwork2) use key from $intf hash to determine ifcfg
filename (to allow to use weird DEVICE fields, like
DEVICE=`/usr/sbin/eaglectrl -i`)
(write_interface_conf) allow TYPE field, will be used to recognize ADSL
interfaces
* network/netconnect.pm: support DHCP and manual for sagem devices
* network/adsl.pm: adapt to new fctStartAdsl
* network/tools.pm: remove horrible and unneeded workaround
shut up perl_checker!
remove test_internet_connection(), use network::test instead
(get_interface_type) enhance detection for adsl devices
2004/09/03 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/ja.po: small fix in Japanese po files
* share/po/bs.po, share/po/et.po, share/po/pt.po, share/po/pl.po,
share/po/fr.po: updated Estonian file
2004/09/03 Pixel <pixel at mandrakesoft.com>
* 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)
stage1 terminfo is not available anymore, use our own terminfo
* interactive/newt.pm:
- 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)
* Makefile: make dont_run_directly_stage2 keep runinstall2 as a symlink
(since mdkstage1 check it is a symlink)
- 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)
* lang.pm: always use utf8 strings during install since our locale is
always utf8
* Newt/Newt.xs:
- 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)
don't let slang call setlocale(), we do it ourselves
* install2.pm: stage1 terminfo is not available anymore, use our own
terminfo
2004/09/03 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* pkgs.pm: Better handling of mounting/umounting supplementary CDs
* install_any.pm: Make local copies of rpmsrate and compssUsers.pl from
supplementary CD
Better handling of mounting/umounting supplementary CDs
Add a system error when no CD reader is found for a supplementary CD
Remove support for looking directly for a hdlist1s.cz file on
supplementary CDs.
Don't bypass errorOpeningFile, because it won't ask for further CDs
anymore... (/me sux)
* share/po/fr.po: Fix grammar.
2004/09/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: log a few more commits from blino for 10.1-0.20mdk
10.1-0.20mdk
* share/po/fr.po: update
* ugtk2.pm (create_hbox) do not set extra border since we've a generic fix
in _create_window
(_create_window) prevent inner widgets to stick the window
* tools/cvslog2changelog.pl: add one more translator
* install_steps.pm, install_steps_interactive.pm (setupSCSI) load
modularized PATA drivers too
2004/09/03 Warly <warly at mandrakesoft.com>
* share/rpmsrate: now kernel-i686-up-4GB and kernel-p3-smp-64GB are
deprecated
2004/09/03 Damien Chaumette <dchaumette at mandrakesoft.com>
* standalone/drakconnect: don't exclude Gtk2::Entry filling
2004/09/03 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2004/09/03 Pixel <pixel at mandrakesoft.com>
* share/list, install2.pm: stage1 terminfo is not available anymore, use
our own terminfo
2004/09/03 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Don't bypass errorOpeningFile, because it won't ask for
further CDs
anymore... (/me sux)
* share/po/fr.po: Fix grammar.
2004/09/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/fr.po: update
* ugtk2.pm (create_hbox) do not set extra border since we've a generic fix
in _create_window
(_create_window) prevent inner widgets to stick the window
2004/09/03 vljubovic
* share/po/bs.po: Improving Bosnian translation
2004/09/03 Warly <warly at mandrakesoft.com>
* share/rpmsrate: now kernel-i686-up-4GB and kernel-p3-smp-64GB are
deprecated
2004/09/02 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
* share/po/pl.po: Updated partially
2004/09/02 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated zh_CN translation
2004/09/02 hilbert
* share/po/zh_TW.po: DrakX-zh_TW: 626
DrakX will first
2004/09/02 Olivier Blin <oblin at mandrakesoft.com>
* mdk-stage1/disk.c: fix cancel in disk install
* standalone/drakupdate_fstab: do not use supermount by default for
removable devices
* share/rpmsrate: add synaptics in INSTALL section
* network/test.pm: initial import of connection test package
* fs/mount_options.pm: set_default: use sync for removable devices
* crypto.pm, install_any.pm: adapt to new mirror structure
2004/09/02 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/it.po: updated po file
updated pot file
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/eu.po, share/po/es.po,
share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
share/po/uz@Latn.po: updated pot file
* standalone/drakhelp: Mandrake -> Mandrakelinux
2004/09/02 Pixel <pixel at mandrakesoft.com>
* any.pm: replace /etc/udev/conf.d/xxx.conf shell scripts with
/etc/udev/rules.d/xxx.conf conf file
2004/09/02 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: If a supplementary media is incorrect, continue asking
Don't log too much
Don't start network for supplementary media if it is cdrom or disk
* install_steps.pm: Don't unselect all media in autoinstalls.
* pkgs.pm: If a supplementary media is incorrect, continue asking
Allow to deselect media only if the hdlists file contains a line
"askmedia"
2004/09/02 sharuzzaman
* share/po/ms.po: Updated Malay translation
2004/09/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.1-0.19mdk
* standalone/printerdrake, standalone/scannerdrake: reuse icon for windows
* standalone/localedrake: use proper window & banner icon
set banner title...
* standalone/drakhelp: reuse icon for windows
fix untraslated title
* standalone/drakfirewall, standalone/logdrake, standalone/draksec,
standalone/drakfloppy, standalone/drakedm, standalone/drakxservices,
standalone/drakproxy, standalone/drakperm, standalone/keyboarddrake,
standalone/net_monitor, standalone/diskdrake, standalone/mousedrake,
standalone/drakclock, standalone/drakxtv: reuse mcc icons (if
availlable) for windows
* printer/main.pm (write_client_conf) fix drakxtools build
* any.pm (selectLanguage) tag title as translatable
* ugtk2.pm (new) fallback on window'icon for wizards
2004/09/01 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/nb.po, share/po/es.po, share/po/fr.po, share/po/wa.po: updated
Norwegian file; small fixes on Spanish, French and Walloon files
2004/09/01 Pixel <pixel at mandrakesoft.com>
* share/rpmsrate: comply with the rpmsrate parser
2004/09/01 Till Kamppeter <till at mandrakesoft.com>
* printer/printerdrake.pm:
- Do not check for presence of "scanner-gui" during 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()".
- Restored wrong upload.
2004/09/01 Frederic Lepied <flepied at mandrakesoft.com>
* share/rpmsrate: fixed/added some laptop entries
2004/09/01 Funda Wang <fundawang at linux.net.cn>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/sl.po, share/po/nn.po,
share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
share/po/uz@Latn.po: Updated POT file
2004/09/01 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo melo
last rush
2004/09/01 Olivier Blin <oblin at mandrakesoft.com>
* share/rpmsrate: add xawtv in TV section, install ati.2 for ATI cards
only
2004/09/01 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/fonts.tar.bz2: fixed fonts.cache-1 file so that the tamil font no
longer claims it
support western languages.
2004/09/01 Pixel <pixel at mandrakesoft.com>
* share/rpmsrate: comply with the rpmsrate parser
2004/09/01 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: perl_checker cleanup
2004/09/01 Till Kamppeter <till at mandrakesoft.com>
* printer/printerdrake.pm:
- Do not check for presence of "scanner-gui" during install.
- Fixed bug of printerdrake trying to install the virtual package
"scanner-gui" during installation (when a multi-function device from HP
is present).
* 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).
* 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()".
- Restored wrong upload.
- 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 Frederic Lepied <flepied at mandrakesoft.com>
* share/rpmsrate: fixed/added some laptop entries
2004/09/01 Funda Wang <fundawang at linux.net.cn>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/sl.po, share/po/nn.po,
share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
share/po/uz@Latn.po: Updated POT file
2004/09/01 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2004/09/01 Olivier Blin <oblin at mandrakesoft.com>
* standalone/net_applet: add notconfigured state
* share/rpmsrate: add xawtv in TV section, install ati.2 for ATI cards
only
* standalone/drakboot: do not crash if default autologin or default
desktop doesn't exist
* standalone/service_harddrake: write modules conf files if a tv card is
detected
* mdk-stage1/init.c: drop non-standard tld (localdomain)
* standalone/net_monitor: fix stupid error
* network/network.pm: symlink resolv.conf in install root, so that it
works for dhcp too
write /etc/resolv.conf in install root
* network/tools.pm: revert titi fix, do not return random interface if
internet connection
is not configured
do not use find over grep, just find
2004/09/01 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/fonts.tar.bz2: fixed fonts.cache-1 file so that the tamil font no
longer claims it
support western languages.
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 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* lang.pm: Fix syntax error
* any.pm: Fix generation of urpmi.cfg when doing a disk install from a
live tree
* share/rpmsrate: remove duplicated entry for nut-server
* install_any.pm: perl_checker cleanup
ensure install_interactive is loaded
When adding a networked supplementary media, configure the network if
needed. Install basesystem for this purpose.
* Makefile: Split into a new target mdkinst_stage2
2004/09/01 Till Kamppeter <till at mandrakesoft.com>
* 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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/net_applet: perl_checker cleanups
* standalone/harddrake2: enable harddrake2 to properly adapt to theme
changes and the like
* share/rpmsrate: enable SCIM for Amharic language
* standalone/drakclock: unbreak drakclock
* network/tools.pm (get_internet_connection) if no default route exits,
take first route in order
to not have strange messages in net_appletb
* drakxtools.spec: 10.1-0.18mdk
* lang.pm: enable SCIM for Amharic language
typo fix
simplify
* detect_devices.pm (getBewan) reuse ematching_desc__regexp()
* standalone/drakautoinst (create_notebook) follow the same parameter
order as gtkappend_page() use and
as C/Gtk+ does
* ugtk2.pm (create_notebook) follow the same parameter order as
gtkappend_page() use and
as C/Gtk+ does
(create_notebook) give meaningfull name to variables
2004/09/01 Warly <warly at mandrakesoft.com>
* standalone/drakclock: initialize and so that motion_event correctly
handle the mouse moves
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
Do not perform a date command when ntpdate has just been called
2004/08/31 Alice Lafox <alice at lafox.com.ua>
* share/po/ru.po: updated a part of
2004/08/31 David Baudens <baudens at mandrakesoft.com>
* share/po/fr.po: ads #25: use translation from Marketing and not one
which come from nowhere
Close <b> in ads #28
2004/08/31 Frederic Lepied <flepied at mandrakesoft.com>
* harddrake/data.pm: added initial support for UPS
* detect_devices.pm: please perl_checker
simplify UPS detection and report the needed info for harddrake
* share/rpmsrate: added kuickshow and supertux
2004/08/31 Florin Grad <florin at mandrakesoft.com>
* network/shorewall.pm: use the loc zone in policy only if the loc
interface exists
2004/08/31 Funda Wang <fundawang at linux.net.cn>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/sl.po, share/po/nn.po,
share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
share/po/uz@Latn.po: Updated POT file
2004/08/31 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
* share/advertising/README, share/advertising/corpo-server-03.png,
share/advertising/corpo-desk-10.pl,
share/advertising/corpo-server-09.png, share/advertising/list-cpd,
share/advertising/corpo-server-06.pl,
share/advertising/corpo-server-01.pl,
share/advertising/corpo-desk-01.png,
share/advertising/corpo-desk-05-a.pl,
share/advertising/corpo-desk-09.png,
share/advertising/corpo-desk-05-a.png,
share/advertising/corpo-desk-06-a.pl,
share/advertising/corpo-desk-06.png, share/advertising/corpo-desk-02.pl,
share/advertising/corpo-desk-06-b.pl,
share/advertising/corpo-server-08.pl,
share/advertising/corpo-desk-05-b.png,
share/advertising/corpo-server-02.pl,
share/advertising/corpo-server-10.png,
share/advertising/corpo-server-10.pl,
share/advertising/corpo-server-05.pl,
share/advertising/corpo-server-08.png, share/advertising/list-cps,
share/advertising/corpo-desk-03.png,
share/advertising/corpo-server-06.png,
share/advertising/corpo-desk-07.pl,
share/advertising/corpo-server-07.pl,
share/advertising/corpo-desk-04.pl, share/advertising/corpo-desk-09.pl,
share/advertising/corpo-server-05.png,
share/advertising/corpo-server-02.png,
share/advertising/corpo-desk-05.png,
share/advertising/corpo-desk-02.png, share/advertising/corpo-desk-05.pl,
share/advertising/corpo-desk-06.pl, share/advertising/corpo-desk-08.png,
share/advertising/corpo-server-04.pl,
share/advertising/corpo-desk-07.png,
share/advertising/corpo-server-09.pl,
share/advertising/corpo-server-07.png,
share/advertising/corpo-desk-04.png,
share/advertising/corpo-server-01.png,
share/advertising/corpo-desk-03.pl,
share/advertising/corpo-desk-06-b.png,
share/advertising/corpo-desk-05-b.pl,
share/advertising/corpo-desk-10.png,
share/advertising/corpo-server-04.png,
share/advertising/corpo-desk-01.pl,
share/advertising/corpo-desk-06-a.png,
share/advertising/corpo-desk-08.pl,
share/advertising/corpo-server-03.pl: Corporate material
2004/08/31 José JORGE <jjorge at free.fr>
* share/po/pt.po: dia zero
melo
2004/08/31 Olivier Blin <oblin at mandrakesoft.com>
* standalone/net_applet (is_running) enhance regexp, use any
2004/08/31 Pablo Saratxaga <pablo at mandrakesoft.com>
* lang.pm: make CONSOLE_NOT_LOCALIZED written to i18n file
* share/po/nl.po, share/po/id.po, share/po/lt.po, share/po/cy.po,
share/po/et.po, share/po/da.po, share/po/mt.po, share/po/uz@Latn.po:
updated Welsh and Estonian files; fixed some errors due to automatic
replacements.
2004/08/31 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_steps.pm, install_any.pm, install_steps_interactive.pm: Support
for unselecting some media before the install (begin.)
* pkgs.pm: Remove dead code
Support for unselecting some media before the install (begin.)
* share/rpmsrate: Remove duplicate entries in rpmsrate
* share/po/fr.po: French grammar fix
2004/08/31 Till Kamppeter <till at mandrakesoft.com>
* printer/data.pm:
- Let xpp also be installed when in daemon-less CUPS client mode.
2004/08/31 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/drakconnect (build_notebook) fix crashes (#11100)
* share/rpmsrate: install nut-server for MGE's UPS
* standalone/net_applet (is_running) make it work
(is_running) try harder
(is_running) ignore our own process ... (brown paper bag bug)
2004/08/30 Alice Lafox <alice at lafox.com.ua>
* share/po/ru.po: part updated
2004/08/30 David Baudens <baudens at mandrakesoft.com>
* share/advertising/25.png: New image
2004/08/30 Daouda Lo <daouda at mandrakesoft.com>
* standalone/net_applet:
- no need to run net-monitor with '--testing'
- launch net_monitor in background
- typo
- avoid duplication
- s/and/or/ (oblin)
- launch net_monitor once (test if there's a running net_monitor
before)
2004/08/30 Frederic Lepied <flepied at mandrakesoft.com>
* share/rpmsrate: added smartmontools
2004/08/30 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation
2004/08/30 Olivier Blin <oblin at mandrakesoft.com>
* network/tools.pm, standalone/net_monitor: move start_interface and
stop_interface from net_monitor to network::tools, use it in net_monitor
and net_applet
* network/netconnect.pm: adsl_conf_backend needs $intf now
NET_DEVICE is the ethernet interface for pptp too
* standalone/net_applet: move start_interface and stop_interface from
net_monitor to network::tools, use it in net_monitor and net_applet
allow to connect/disconnect from net_applet
is_running returns a boolean which would never be > 1
* network/adsl.pm: write ifcfg files for NET_DEVICE if it's ethernet
(pptp, pppoe)
2004/08/30 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/eu.po, share/po/es.po,
share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
share/po/uz@Latn.po: updated pot file
updated pot file
* standalone/printerdrake: fixed use of N()
* share/po/it.po: updated Italian file
updated pot file
updated pot file
2004/08/30 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* pkgs.pm, install_any.pm: Fix support for suppl. CDs with hdlists file
2004/08/30 Till Kamppeter <till at mandrakesoft.com>
* printer/printerdrake.pm:
- Fixed duplicate translatable strings.
- 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.
* printer/cups.pm, printer/main.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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.1-0.17mdk
* share/po/br.po: update
typo fixes (Arpad Biro <biro_arpad@yahoo.com>)
* standalone/drakclock: fix layout so that NTP frame is not badly cut on
small resolution (#10971)
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, standalone/drakvpn, share/po/ko.po,
share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
standalone/drakconnect, share/po/zh_CN.po, share/po/sr@Latn.po,
share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
share/po/ru.po, share/po/sl.po, share/po/nn.po, share/po/tr.po,
share/po/mt.po, share/po/ga.po, share/po/mn.po, share/po/uk.po,
share/po/am.po, share/po/lt.po, share/po/cy.po, share/po/tg.po,
share/po/bs.po, share/po/fur.po, share/po/mk.po, share/po/wa.po,
share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/nl.po,
share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: typo fixes (Arpad
Biro <biro_arpad@yahoo.com>)
* share/po/fr.po: minor update
update
typo fixes (Arpad Biro <biro_arpad@yahoo.com>)
2004/08/30 Olivier Blin <oblin at mandrakesoft.com>
* standalone/drakupdate_fstab: do not restrict "many partitions" test to
SCSI devices
do not mount and add/delete in fstab when many partitions (#11005)
* mouse.pm: really make synaptics works at install (don't crash graphical
install)
2004/08/30 Thierry Vignaud <tvignaud at mandrakesoft.com>
* ugtk2.pm (Gtk2::ComboBox::set_text) explain which caller failled
* drakxtools.spec: 10.1-0.16mdk
* Xconfig/resolution_and_depth.pm (choose_gtk) fix crash
* share/po/fr.po: update
2004/08/29 Funda Wang <fundawang at linux.net.cn>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/sr@Latn.po, share/po/sq.po,
share/po/it.po, share/po/eu.po, share/po/es.po, share/po/lv.po,
share/po/hu.po, share/po/fa.po, share/po/id.po, share/po/ru.po,
share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
share/po/fr.po, share/po/ta.po, share/po/vi.po, share/po/nl.po,
share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: Updated POT file
* share/po/zh_CN.po: Updated Simplified Chinese translation
Updated POT file
2004/08/29 hilbert
* share/po/zh_TW.po: DrakX-zh_TW: 618
authentication
DrakX-zh_TW: 612
Espanol
2004/08/29 Till Kamppeter <till at mandrakesoft.com>
* printer/main.pm, standalone/printerdrake, printer/printerdrake.pm:
- 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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/drakroam: move DHCP column to left for better sizing (Austin
<aacton@yorku.ca>)
(UpdateAvailable) print ESSID too (Austin <aacton@yorku.ca>)
fix Add button behavior (Austin <aacton@yorku.ca>)
2004/08/29 vljubovic
* share/po/bs.po: Improving Bosnian translation
2004/08/27 hilbert
* share/po/zh_TW.po: DrakX-zh_TW: 604
done
2004/08/27 Olivier Blin <oblin at mandrakesoft.com>
* network/netconnect.pm, network/tools.pm, network/network.pm,
network/adsl.pm: write metric in ifcfg files according to connection
type
* standalone/drakconnect (manage) read settings from correct interface for
non ethernet interfaces
(manage) add metric text entry for all connections
* network/modem.pm: use same keys than manage interface for metrics
(ppp_read_conf) read metric if set
write metric in ifcfg files according to connection type
2004/08/27 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* share/rpmsrate: Remove duplicated entries with complex flags from the
rpmsrate
2004/08/27 Till Kamppeter <till at mandrakesoft.com>
* printer/default.pm, printer/cups.pm, printer/main.pm, printer/data.pm,
standalone/printerdrake, printer/printerdrake.pm:
- Made support for daemon-less CUPS client working.
- Fixed graying out of buttons/menu entries in the main window.
2004/08/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/localedrake: do not complain on wizcancel
* standalone/logdrake (insert_text_n_scroll) fix displaying only last
parsed file
* detect_devices.pm (matching_driver) introduce it in order to factorize
some tests
add __regexp suffix to matching_desc() and matching_driver()
(getModem) report modems supported by ALSA too
* lang.pm: space cleanup for lord perl_checker
(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)
* drakxtools.spec: 10.1-0.15mdk
* Xconfig/card.pm, pkgs.pm, common.pm, install_steps.pm, bootloader.pm,
install_any.pm: add __regexp suffix to matching_desc() and
matching_driver()
* share/rpmsrate: sort a few entries
2004/08/27 José JORGE <jjorge at free.fr>
* share/po/pt.po: melo
2004/08/27 Laurent Montel <lmontel at mandrakesoft.com>
* share/rpmsrate: Don't install kdeutils-klaptop all the time
just when we detect a laptop
2004/08/27 Olivier Blin <oblin at mandrakesoft.com>
* 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 Olivier Thauvin <thauvin at aerov.jussieu.fr>
* Xconfig/xfree.pm:
- add dell D800 specific modeline and resolution
2004/08/27 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/nb.po, share/po/cs.po: updated Czech and Bokmål po files
2004/08/27 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Support for multiple supplementary media
* share/rpmsrate: Remove duplicated entries with complex flags from the
rpmsrate
2004/08/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/drakboot (lilo_choice) fix canceling first step
* detect_devices.pm (matching_driver) introduce it in order to factorize
some tests
add __regexp suffix to matching_desc() and matching_driver()
(getModem) report modems supported by ALSA too
* standalone/localedrake: do not complain on wizcancel
no need to check first step return value since we're covered by both
Wizard_no_previous and die('wizcancel')
remove useless label "the_end"
inline select_language()
make it looks and behave like a wizard for GUI sanity (previously
cancel on second step resulted in step backward rather than exit...)
* share/rpmsrate: sort a few entries
* standalone/logdrake (insert_text_n_scroll) fix displaying only last
parsed file
* lang.pm: space cleanup for lord perl_checker
(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)
* Xconfig/card.pm, pkgs.pm, common.pm, install_steps.pm, bootloader.pm,
install_any.pm: add __regexp suffix to matching_desc() and
matching_driver()
* drakxtools.spec: 10.1-0.15mdk
2004/08/26 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
* share/po/pl.po: Updated 95%
Updated partially
2004/08/26 David Baudens <baudens at mandrakesoft.com>
* share/po/fr.po: Finish to add french translation from Marketing team
(DrakX ads)
2004/08/26 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
* tools/ddcprobe/vbe.c, tools/ddcprobe/Makefile: Some arrangements for
IA-64
PowerPC arrangements from Christiaan Welvaart
* tools/ddcprobe/of.c: PowerPC arrangements from Christiaan Welvaart
* tools/ddcprobe/ddcxinfos.c: Some arrangements for IA-64
2004/08/26 José JORGE <jjorge at free.fr>
* share/po/pt.po: josé melo
2004/08/26 Olivier Blin <oblin at mandrakesoft.com>
* install_steps_gtk.pm: define and use $o->{mouse}{alternate_install} if
detected mouse can't be used during install
* network/netconnect.pm: adsl devices need network restart if they're
*not* in the adsl devices list
* install_steps.pm (doPartitionDisksBefore) umount /sys and /proc/bus/usb
in chroot
* Xconfig/xfree.pm (set_synaptics) quote decimal values so that
write_XF86Config doesn't
write commas instead of dots
* mouse.pm: i sux
define and use $o->{mouse}{alternate_install} if detected mouse can't be
used during install
(set_xfree_conf) don't create crappy auxmouse if there is none
(detect) do not return unusable synaptics driver at beginning of install
2004/08/26 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/tg.po, share/po/fa.po, share/po/nb.po, share/po/bn.po,
share/po/uz.po, share/po/ru.po, share/po/wa.po, share/po/pt_BR.po,
share/po/sl.po, share/po/hi.po, share/po/af.po, share/po/et.po,
share/po/pt.po, share/po/vi.po, share/po/fr.po, share/po/nl.po,
share/po/it.po, share/po/uk.po, share/po/eu.po, share/po/es.po,
share/po/tl.po, share/po/pl.po, share/po/de.po, share/po/fi.po,
share/po/cy.po, share/po/da.po, share/po/ca.po, share/po/ar.po,
share/po/uz@Latn.po: updated Estonian and Spanish files; retrieved some
more old strings
2004/08/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: complete 10.1-0.14mdk's changelog
add bug reference in 10.1-0.11mdk's changelog
10.1-0.9mdk
* share/po/fr.po: minor update
typo fix
update
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/advertising/18.pl, share/po/zh_TW.po,
share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
share/po/vi.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
share/po/tl.po, share/po/eo.po, share/po/el.po, share/po/bg.po,
share/po/cs.po, share/po/uz@Latn.po: typo fix
2004/08/25 David Baudens <baudens at mandrakesoft.com>
* share/po/fr.po: DrakX ads: begin to add french translations from
Marketing team
* share/advertising/24.png, share/advertising/07.png,
share/advertising/26.png, share/advertising/16.png,
share/advertising/11.png, share/advertising/02.png,
share/advertising/23.png, share/advertising/15.png,
share/advertising/03.png, share/advertising/14.png,
share/advertising/25.png, share/advertising/19.png,
share/advertising/13-a.png, share/advertising/10.png,
share/advertising/04.png, share/advertising/27.png,
share/advertising/18.png, share/advertising/28.png,
share/advertising/13-b.png, share/advertising/22.png,
share/advertising/09.png, share/advertising/29.png,
share/advertising/30.png, share/advertising/06.png,
share/advertising/17.png, share/advertising/05.png,
share/advertising/21.png, share/advertising/20.png,
share/advertising/08.png, share/advertising/12.png: Images for 10.1
2004/08/25 Funda Wang <fundawang at linux.net.cn>
* standalone/drakedm: Mandrake -> Mandrakelinux. Mark DM entries as
translatable.
2004/08/25 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
* tools/ddcprobe/vbe.c, tools/ddcprobe/vbe.h: Extensive rewrite and
cleanups to use the new int10 interface. Plus add
some 64-bit fixes and a last-resort means to get VBE/EDID information
from special -BOOT kernel during early boot.
* Xconfig/monitor.pm: Parse XFree86.log in last resort in case we have not
got any valuable
information at this stage from ddcxinfos.
* crypto.pm: Always prefer 64-bit packages for updates on biarch
platforms.
* tools/ddcprobe/ddcxinfos.c: Some cleanups
Extensive rewrite and cleanups to use the new int10 interface. Plus add
some 64-bit fixes and a last-resort means to get VBE/EDID information
from special -BOOT kernel during early boot.
* share/list.x86_64: i18n stuff at install time, probably make it common
with /LIB/
* tools/ddcprobe/x86emu/include/x86emu.h,
tools/ddcprobe/x86emu/include/x86emu/fpu_regs.h,
tools/ddcprobe/x86emu/include/x86emu/regs.h,
tools/ddcprobe/x86emu/include/x86emu/types.h: Add remaining x86 CPU
emulator bits
* partition_table.pm: add XFS to x86_64 known FS
* Xconfig/card.pm: handle lib64 drivers on x86-64
* install_steps_gtk.pm: default to 75dpi in order to get anti-aliased
fonts
* drakxtools.spec: update changelog dates to please rpm + add some
highlights to please titi
enough amd64 changes merged
* tools/ddcprobe/x86emu/x86emu/prim_asm.h, tools/ddcprobe/x86emu/sys.c,
tools/ddcprobe/x86emu/x86emu/fpu.h, tools/ddcprobe/x86emu/prim_ops.c,
tools/ddcprobe/x86emu/ops.c, tools/ddcprobe/x86emu/debug.c,
tools/ddcprobe/x86emu/x86emu/x86emui.h,
tools/ddcprobe/x86emu/x86emu/decode.h, tools/ddcprobe/x86emu/validate.c,
tools/ddcprobe/x86emu/x86emu/prim_ops.h, tools/ddcprobe/x86emu/decode.c,
tools/ddcprobe/x86emu/x86emu/debug.h, tools/ddcprobe/x86emu/fpu.c,
tools/ddcprobe/x86emu/LICENSE, tools/ddcprobe/x86emu/Makefile,
tools/ddcprobe/x86emu/x86emu/ops.h, tools/ddcprobe/x86emu/ops2.c: Add
x86 CPU emulator for BIOS int10 emulation on non x86 arches.
* tools/ddcprobe/minifind.h, tools/ddcprobe/of.c,
tools/ddcprobe/minifind.c: Get EDID block from OF (kudzu)
* c/smp.c: fix smp detection on x86_64
* Makefile: Handle PCMCIA on x86-64 too. Fix libs glob for live tree.
Don't ship with
"cdcom" modules archives in netinstallable trees.
* tools/ddcprobe/int10/vbios.h, tools/ddcprobe/int10/pci.h,
tools/ddcprobe/int10/Makefile, tools/ddcprobe/int10/i10_v86.c,
tools/ddcprobe/int10/i10_int.c, tools/ddcprobe/int10/i10_vbios.c,
tools/ddcprobe/int10/v86bios.h, tools/ddcprobe/int10/emu_vm86.c,
tools/ddcprobe/int10/i10_pci.c, tools/ddcprobe/int10/i10_io.c,
tools/ddcprobe/int10/vm86_struct.h, tools/ddcprobe/int10/README,
tools/ddcprobe/int10/AsmMacros.h: VGA softbootloader for Linux, uses an
x86 CPU emulator on non x86 arches.
* tools/ddcprobe/Makefile: Some cleanups
Raw merge from Kudzu for PPC. Christian, can you get something of it?
Only use VBE parsing code on x86 and x86_64.
Extensive rewrite and cleanups to use the new int10 interface. Plus add
some 64-bit fixes and a last-resort means to get VBE/EDID information
from special -BOOT kernel during early boot.
* install_steps.pm: handle nolapic, idle=poll, ide=nodma boot options
2004/08/25 Olivier Blin <oblin at mandrakesoft.com>
* network/adsl_consts.pm: fix Titi sux hard (add missing comma and spaces,
remove spurious
nameserver word)
* network/tools.pm: add missing spaces
add get_interface_type to guess interface type
* standalone/net_applet: avoid grep to grep itself, use perl
* install_any.pm: set TV flag when a TV card is detected to install
appropriate packages
* any.pm (selectCountry) fix Pixel broke country selection (bug 10938)
* standalone/service_harddrake: killer feature: restore bootsplash mode
don't abort miserably if configurator is code
fix typo
* standalone/drakconnect: use exists
(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)
* tools/i386/netboot/davicom/stage2, tools/i386/netboot/grub,
tools/i386/netboot/via_rhine/pxegrub, tools/i386/netboot/natsemi/nbgrub,
tools/i386/netboot/davicom/nbgrub, tools/i386/netboot/cs89x0/stage2,
tools/i386/netboot/cs89x0/pxegrub, tools/i386/netboot/via_rhine/stage2,
tools/i386/netboot/davicom/pxegrub, tools/i386/netboot/natsemi/stage2,
tools/i386/netboot/via_rhine/nbgrub, tools/i386/netboot/davicom/stage1,
tools/i386/netboot/cs89x0/nbgrub, tools/i386/netboot/cs89x0/stage1,
tools/i386/netboot/via_rhine/stage1, tools/i386/netboot/natsemi/pxegrub,
tools/i386/netboot/natsemi/stage1: add new drivers, upgrade to grub-0.95
* tools/i386/netboot/ni5010/stage1, tools/i386/netboot/tiara/pxegrub,
tools/i386/netboot/3c507/pxegrub, tools/i386/netboot/lance/nbgrub,
tools/i386/netboot/otulip/nbgrub, tools/i386/netboot/tulip/pxegrub,
tools/i386/netboot/ni5210/pxegrub, tools/i386/netboot/sis900/stage1,
tools/i386/netboot/otulip/stage1, tools/i386/netboot/ni6510/stage2,
tools/i386/netboot/eepro100/stage2, tools/i386/netboot/3c503/stage1,
tools/i386/netboot/w89c840/stage1, tools/i386/netboot/ni5010/nbgrub,
tools/i386/netboot/smc9000/stage2, tools/i386/netboot/ns8390/pxegrub,
tools/i386/netboot/lance/stage1, tools/i386/netboot/tulip/stage2,
tools/i386/netboot/ni5210/stage1, tools/i386/netboot/rtl8139/stage2,
tools/i386/netboot/ne/stage1, tools/i386/netboot/rtl8139/nbgrub,
tools/i386/netboot/sis900/nbgrub, tools/i386/netboot/3c509/nbgrub,
tools/i386/netboot/eepro/stage1, tools/i386/netboot/lance/stage2,
tools/i386/netboot/otulip/stage2, tools/i386/netboot/ni5010/pxegrub,
tools/i386/netboot/ns8390/stage2, tools/i386/netboot/wd/nbgrub,
tools/i386/netboot/ne/pxegrub, tools/i386/netboot/depca/stage2,
tools/i386/netboot/tulip/nbgrub, tools/i386/netboot/lance/pxegrub,
tools/i386/netboot/tiara/stage1, tools/i386/netboot/epic100/pxegrub,
tools/i386/netboot/ni6510/pxegrub, tools/i386/netboot/3c90x/stage1,
tools/i386/netboot/3c507/nbgrub, tools/i386/netboot/3c529/stage2,
tools/i386/netboot/epic100/nbgrub, tools/i386/netboot/wd/stage2,
tools/i386/netboot/3c507/stage1, tools/i386/netboot/3c595/stage2,
tools/i386/netboot/3c529/stage1, tools/i386/netboot/depca/pxegrub,
tools/i386/netboot/ne2100/stage2, tools/i386/netboot/exos205/stage1,
tools/i386/netboot/w89c840/pxegrub, tools/i386/netboot/sk_g16/pxegrub,
tools/i386/netboot/3c509/stage1, tools/i386/netboot/eepro/stage2,
tools/i386/netboot/rtl8139/pxegrub, tools/i386/netboot/3c595/pxegrub,
tools/i386/netboot/smc9000/stage1, tools/i386/netboot/w89c840/nbgrub,
tools/i386/netboot/3c503/nbgrub, tools/i386/netboot/ne/stage2,
tools/i386/netboot/sk_g16/stage2, tools/i386/netboot/exos205/nbgrub,
tools/i386/netboot/tulip/stage1, tools/i386/netboot/wd/stage1,
tools/i386/netboot/3c503/pxegrub, tools/i386/netboot/3c529/nbgrub,
tools/i386/netboot/ni6510/stage1, tools/i386/netboot/depca/nbgrub,
tools/i386/netboot/3c503/stage2, tools/i386/netboot/ni5010/stage2,
tools/i386/netboot/sis900/stage2, tools/i386/netboot/eepro/pxegrub,
tools/i386/netboot/3c90x/nbgrub, tools/i386/netboot/ni6510/nbgrub,
tools/i386/netboot/epic100/stage1, tools/i386/netboot/ne2100/pxegrub,
tools/i386/netboot/rtl8139/stage1, tools/i386/netboot/tiara/nbgrub,
tools/i386/netboot/ns8390/stage1, tools/i386/netboot/3c90x/pxegrub,
tools/i386/netboot/3c595/stage1, tools/i386/netboot/ni5210/nbgrub,
tools/i386/netboot/depca/stage1, tools/i386/netboot/3c509/pxegrub,
tools/i386/netboot/ne2100/stage1, tools/i386/netboot/sk_g16/stage1,
tools/i386/netboot/eepro100/nbgrub, tools/i386/netboot/tiara/stage2,
tools/i386/netboot/eepro100/stage1, tools/i386/netboot/ns8390/nbgrub,
tools/i386/netboot/ni5210/stage2, tools/i386/netboot/eepro100/pxegrub,
tools/i386/netboot/3c507/stage2, tools/i386/netboot/3c509/stage2,
tools/i386/netboot/3c90x/stage2, tools/i386/netboot/3c595/nbgrub,
tools/i386/netboot/epic100/stage2, tools/i386/netboot/otulip/pxegrub,
tools/i386/netboot/eepro/nbgrub, tools/i386/netboot/3c529/pxegrub,
tools/i386/netboot/exos205/pxegrub, tools/i386/netboot/ne2100/nbgrub,
tools/i386/netboot/w89c840/stage2, tools/i386/netboot/smc9000/pxegrub,
tools/i386/netboot/wd/pxegrub, tools/i386/netboot/sis900/pxegrub,
tools/i386/netboot/exos205/stage2, tools/i386/netboot/sk_g16/nbgrub,
tools/i386/netboot/ne/nbgrub, tools/i386/netboot/smc9000/nbgrub: upgrade
to grub-0.95
* tools/i386/netboot/make_boot_network: warn if driver not available,
print available drivers
* tools/i386/netboot/makeImages: use grub-0.95
don't be a bastard, keep CVS directory
* tools/i386/netboot/stage1.via-rhine, tools/i386/netboot/stage1.3c59x,
tools/i386/netboot/stage2.3c59x, tools/i386/netboot/stage2.tulip,
tools/i386/netboot/stage1.tulip, tools/i386/netboot/stage2.rtl8139,
tools/i386/netboot/stage2.3c90x, tools/i386/netboot/stage1.eepro100,
tools/i386/netboot/stage2.via-rhine, tools/i386/netboot/stage1.rtl8139,
tools/i386/netboot/stage1.3c90x, tools/i386/netboot/stage2.eepro100:
delete obsolete files
2004/08/25 Till Kamppeter <till at mandrakesoft.com>
* printer/data.pm, printer/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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.1-0.13mdk
merge in lost 10-34.3.100mdk's changelog
* ugtk2.pm (create_packtable) fix cuted ads at install time
* network/adsl_consts.pm: fix siol's vci (hexa formated)
* Makefile.config: add listsupportedprinters
* standalone/service_harddrake: rename loop variable in order to prevent
trainee to be confused
support inline configuators
run proper program :-)
just go on if --force is passed
2004/08/25 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
* tools/ddcprobe/vbe.c, tools/ddcprobe/vbe.h, tools/ddcprobe/Makefile,
tools/ddcprobe/ddcxinfos.c: Extensive rewrite and cleanups to use the
new int10 interface. Plus add
some 64-bit fixes and a last-resort means to get VBE/EDID information
from special -BOOT kernel during early boot.
* Xconfig/monitor.pm: Parse XFree86.log in last resort in case we have not
got any valuable
information at this stage from ddcxinfos.
* crypto.pm: Always prefer 64-bit packages for updates on biarch
platforms.
* share/list.x86_64: i18n stuff at install time, probably make it common
with /LIB/
* tools/ddcprobe/x86emu/include/x86emu.h,
tools/ddcprobe/x86emu/include/x86emu/fpu_regs.h,
tools/ddcprobe/x86emu/include/x86emu/regs.h,
tools/ddcprobe/x86emu/include/x86emu/types.h: Add remaining x86 CPU
emulator bits
* partition_table.pm: add XFS to x86_64 known FS
* Xconfig/card.pm: handle lib64 drivers on x86-64
* install_steps_gtk.pm: default to 75dpi in order to get anti-aliased
fonts
* tools/ddcprobe/x86emu/x86emu/prim_asm.h, tools/ddcprobe/x86emu/sys.c,
tools/ddcprobe/x86emu/x86emu/fpu.h, tools/ddcprobe/x86emu/prim_ops.c,
tools/ddcprobe/x86emu/ops.c, tools/ddcprobe/x86emu/debug.c,
tools/ddcprobe/x86emu/x86emu/x86emui.h,
tools/ddcprobe/x86emu/x86emu/decode.h, tools/ddcprobe/x86emu/validate.c,
tools/ddcprobe/x86emu/x86emu/prim_ops.h, tools/ddcprobe/x86emu/decode.c,
tools/ddcprobe/x86emu/x86emu/debug.h, tools/ddcprobe/x86emu/fpu.c,
tools/ddcprobe/x86emu/LICENSE, tools/ddcprobe/x86emu/Makefile,
tools/ddcprobe/x86emu/x86emu/ops.h, tools/ddcprobe/x86emu/ops2.c: Add
x86 CPU emulator for BIOS int10 emulation on non x86 arches.
* drakxtools.spec: update changelog dates to please rpm + add some
highlights to please titi
enough amd64 changes merged
* c/smp.c: fix smp detection on x86_64
* tools/ddcprobe/int10/vbios.h, tools/ddcprobe/int10/pci.h,
tools/ddcprobe/int10/Makefile, tools/ddcprobe/int10/i10_v86.c,
tools/ddcprobe/int10/i10_int.c, tools/ddcprobe/int10/i10_vbios.c,
tools/ddcprobe/int10/v86bios.h, tools/ddcprobe/int10/emu_vm86.c,
tools/ddcprobe/int10/i10_pci.c, tools/ddcprobe/int10/i10_io.c,
tools/ddcprobe/int10/vm86_struct.h, tools/ddcprobe/int10/README,
tools/ddcprobe/int10/AsmMacros.h: VGA softbootloader for Linux, uses an
x86 CPU emulator on non x86 arches.
* Makefile: Handle PCMCIA on x86-64 too. Fix libs glob for live tree.
Don't ship with
"cdcom" modules archives in netinstallable trees.
* install_steps.pm: handle nolapic, idle=poll, ide=nodma boot options
2004/08/25 hilbert
* share/po/zh_TW.po: DrakX-zh_TW: 604
(not finished)
2004/08/25 Olivier Blin <oblin at mandrakesoft.com>
* network/adsl_consts.pm: fix Titi sux hard (add missing comma and spaces,
remove spurious
nameserver word)
* network/tools.pm: add missing spaces
add get_interface_type to guess interface type
* any.pm (selectCountry) fix Pixel broke country selection (bug 10938)
* standalone/drakconnect: use exists
(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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.1-0.13mdk
merge in lost 10-34.3.100mdk's changelog
* network/adsl_consts.pm: fix siol's vci (hexa formated)
* Makefile.config: add listsupportedprinters
2004/08/24 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation
Updated Simplified Chinese translation
2004/08/24 José JORGE <jjorge at free.fr>
* share/po/pt.po: mmodem
2004/08/24 Olivier Blin <oblin at mandrakesoft.com>
* modules/modprobe_conf.pm, modules/any_conf.pm, modules/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)
* printer/detect.pm (local_detect) fix modules conf parsing
* install_steps.pm: drop non-standard tld (localdomain)
* network/network.pm (add2hosts) use difference2
(add2hosts) make it more readable
(add2hosts) rework parsing
i sux
(configureNetwork2) always add an hostname alias and add it on the
loopback device (bug 10345)
(add2hosts) allow multiple aliases per host
(add2hosts) regexp fixes
* standalone/drakconnect (configure_net) do not ask the user to do an
inifinite looping in MCC ...
* detect_devices.pm (usbMice, usbWacom) wacom devices can have 'wacom' as
driver
* mouse.pm, Xconfig/xfree.pm: synaptics touchpad support
2004/08/24 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/sv.po,
share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
share/po/ky.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
share/po/af.po, share/po/az.po, share/po/pt.po, share/po/fr.po,
share/po/ta.po, share/po/vi.po, share/po/nl.po, share/po/de.po,
share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
share/po/el.po, share/po/uz@Latn.po: updated Japanese file; retrieved
some old translation strings
* share/po/nb.po: updated Bokmål file
updated Japanese file; retrieved some old translation strings
2004/08/24 Till Kamppeter <till at mandrakesoft.com>
* 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.
Fixed "ask_from_()" calls in "config_cups()" (Thanks Olivier for
breaking it in your perl-checker clean-up in 1.119 --> 1.120).
* 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).
* standalone/printerdrake: Version number.
2004/08/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
* lang.pm (write) use newly introduced IM2packages() in order to install
proper
packages depending on (locale, input method) tuple
(IM2packages) introduce it in order to know which packages need to be
installed for a (locale, input method) tuple
* standalone/drakroam: fix crash when config directory does not exist
(#10935)
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
share/po/cy.po, standalone/drakups, share/po/tg.po, share/po/bs.po,
share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/el.po,
share/po/bg.po, share/po/cs.po, share/po/uz@Latn.po: typo fix
* network/adsl_consts.pm: add Siol (the bigest ADSL provider in Slovenia)
in ADSL providers DB
(Gregor Pirnaver <gregor.pirnaver@mandrakeprinas.org>)
2004/08/23 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation
2004/08/23 hilbert
* share/po/zh_TW.po: DrakX-zh_TW: 598
If you chose
2004/08/23 Olivier Blin <oblin at mandrakesoft.com>
* crypto.pm (getPackages) use new mirror structure filepaths
* standalone/net_monitor: watch connection time, not disconnection time
:-)
* commands.pm (modprobe) use load_with_options instead of load_raw to take
care of
module dependencies
* network/network.pm (add2hosts) make it work with sub hostnames
2004/08/23 Pablo Saratxaga <pablo at mandrakesoft.com>
* standalone/drakvpn, standalone/drakclock: no space before question marks
in English
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
share/po/tl.po, share/po/eo.po, share/po/el.po, share/po/bg.po,
share/po/cs.po, share/po/uz@Latn.po: updated pot file
* install_steps_interactive.pm: no space before a question mark in English
* network/netconnect.pm: no space before question marks in English
no space before a question mark in English
2004/08/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.1-0.12mdk
* printer/printerdrake.pm: language names are upcase in english
aspell's typo fixes
* Xconfig/card.pm (to_raw_X) do not set DRI mode anymore; this is not
needed anymore
with PAM
* Makefile.config: add autosetupprintqueues
* network/netconnect.pm, standalone/drakvpn, standalone/drakTermServ,
standalone/drakbackup, standalone/drakconnect: protocol names, trademark
and acronyms should be upcase
aspell's typo fixes
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/da.po, share/po/ca.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/uk.po, share/po/mn.po, share/po/am.po, share/po/lt.po,
share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/af.po,
share/po/hi.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
share/po/ta.po, share/po/fr.po, share/po/nl.po, share/po/tl.po,
share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
share/po/bg.po, share/po/uz@Latn.po: language names are upcase in
english
protocol names, trademark and acronyms should be upcase
aspell's typo fixes
* standalone/drakpxe, network/adsl.pm, network/adsl_consts.pm: protocol
names, trademark and acronyms should be upcase
* standalone/logdrake, standalone.pm, standalone/draksound,
install_any.pm, standalone/drakxtv, standalone/draksec,
standalone/harddrake2, install_interactive.pm, any.pm,
harddrake/sound.pm, services.pm, install_messages.pm,
standalone/drakfont: aspell's typo fixes
2004/08/22 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation
* share/po/Makefile: adjust Makefile to fit doc module zh_cn
2004/08/22 Reinout van Schouwen <reinout at cs.vu.nl>
* share/po/nl.po: Updated Dutch (nl) translation
by Reinout van Schouwen <reinout@cs.vu.nl>
2004/08/21 Funda Wang <fundawang at linux.net.cn>
* share/po/zh_CN.po: Updated Simplified Chinese translation
2004/08/21 Till Kamppeter <till at mandrakesoft.com>
* standalone/autosetupprintqueues, printer/main.pm,
printer/printerdrake.pm:
- 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 Olivier Blin <oblin at mandrakesoft.com>
* network/network.pm: add a fixme comment
update mac address in network::ethernet::get_eth_cards to be sure iftab
is always up-to-date
* share/rpmsrate: install kdeutils-klaptop on laptops
* standalone/net_monitor: do not assume internet isn't configured if
connect scripts do not
exist (they're obsolete), fix connect button sensitivity
* pkgs.pm (read_rpmsrate) support the TYPE keyword, using
detect_devices::matching_type()
* install_steps.pm (configureNetwork) net_cnx_* scripts are dead
* share/po/fr.po: update adsl message (partial fix of bug 5778)
* network/ethernet.pm: update mac address in
network::ethernet::get_eth_cards to be sure iftab is always up-to-date
* network/netconnect.pm (network_on_boot step) do not create ifcfg-ippp0
quite randomly
($after_start_on_boot_step) remove obsolete call to write_cnx_script
fix nonsense in reconfigure message (#10827)
* detect_devices.pm: add matching_type() to introduce the TYPE keyword in
rpmsrate
(supports only laptop type for now)
(firewire_probe) use sysfs to detect firewire devices (eth1394 should be
detected now)
fix nasty typo
2004/08/20 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
share/po/el.po, share/po/uz@Latn.po: updated pot file
* standalone/drakvpn: Fixed English typos
fixed English typos (no space before colon)
* standalone/drakups: fixed English typo
* share/advertising/05.pl: standardized on using the asterisk as bullet
list for all advertisings
2004/08/20 Stew Benedict <sbenedict at mandrakesoft.com>
* standalone/drakTermServ: Use standard mouse wait/normal. Make $cmd_line
a global. perl_checker fixes.
2004/08/20 Till Kamppeter <till at mandrakesoft.com>
* printer/printerdrake.pm:
- Fixed problem of Brother laser printer on parallel port not showing
its name in auto-detection result.
2004/08/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: add BuildRequires: rpm-devel b/c of c/stuff.xs
(Christiaan Welvaart)
* share/po/Makefile: fix drakxtools build
* network/netconnect.pm: rollback (a string was removed so translators
still have to
investigate anyway...)
rollback 'n split in order to reduce pressure on translators
2004/08/19 Olivier Blin <oblin at mandrakesoft.com>
* standalone/printerdrake: perl_checker fixes
* printer/printerdrake.pm: always close the wizard_window, die when an
exception has been raised
perl_checker fixes
perl_checker fixes
2004/08/19 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/am.po: updated Amharic file
* share/po/eu.po: updated Basque file
* share/po/sr.po: fixed cyrillic encoding mess with Serbian translations
* share/po/tg.po, share/po/uk.po, share/po/uz.po, share/po/ru.po,
share/po/mk.po, share/po/bg.po: fixed wrong cyrillic encoding chars
2004/08/19 Till Kamppeter <till at mandrakesoft.com>
* 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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.1-0.11mdk
2004/08/19 Erwan Velu <erwan at mandrakesoft.com>
* share/rpmsrate: removing OpenIPMI as default
2004/08/19 Olivier Blin <oblin at mandrakesoft.com>
* printer/printerdrake.pm: always close the wizard_window, die when an
exception has been raised
perl_checker fixes
perl_checker fixes
workaround not to call c::upgrade_utf8 on read-only variables
* standalone/printerdrake: perl_checker fixes
* printer/main.pm: workaround not to call c::upgrade_utf8 on read-only
variables
perl_checker fixes
2004/08/19 Pixel <pixel at mandrakesoft.com>
* Xconfig/xfree.pm: fix keyboarddrake not modifying xkb
2004/08/19 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Move code in another function
* install2: Wrong comment
2004/08/19 Till Kamppeter <till at mandrakesoft.com>
* printer/detect.pm: Fix problem of the "usblp" kernel module not loaded
before local printer auto-detection.
* printer/main.pm, printer/printerdrake.pm, printer/office.pm,
printer/gimp.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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* printer/main.pm (connectionstr) workaround perl bug
* standalone/draksplash, share/po/bn.po, share/po/ms.po, share/po/sk.po,
share/po/gl.po, share/po/pt_BR.po, share/po/th.po, share/po/et.po,
share/po/ja.po, share/po/hr.po, network/netconnect.pm, share/po/be.po,
standalone/drakvpn, standalone/drakboot, share/po/ko.po,
share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
share/po/fi.po, share/po/he.po, share/po/da.po, share/po/ca.po,
share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
share/po/uz.po, standalone/drakedm, share/po/ro.po, share/po/zh_TW.po,
share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po,
standalone/drakbug, share/po/it.po, share/po/eu.po, share/po/es.po,
network/adsl.pm, share/po/lv.po, share/po/hu.po,
printer/printerdrake.pm, standalone/drakxtv, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/br.po,
standalone/service_harddrake_confirm, share/po/sl.po, share/po/nn.po,
share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/uk.po,
share/po/mn.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
share/po/tg.po, security/help.pm, share/po/bs.po, share/po/fur.po,
share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/af.po,
share/po/hi.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
share/po/ta.po, share/po/fr.po, standalone/drakperm, share/po/nl.po,
share/po/tl.po, share/po/de.po, share/po/eo.po, share/po/el.po,
share/po/cs.po, share/po/bg.po, standalone/scannerdrake,
share/po/uz@Latn.po: typo fixes
* Makefile.drakxtools: fix drakxtools build (do not include
../Makefile.config)
* drakxtools.spec: 10.1-0.11mdk
* share/rpmsrate: reduce non default (aka old default ones) IM priority
2004/08/19 Youcef Rabah Rahal <rahal at arabeyes.org>
* share/po/ar.po: Sync with Arabeyes CVS
2004/08/18 Olivier Blin <oblin at mandrakesoft.com>
* network/network.pm (write_interface_conf) use mac_ieee1394 descriptor in
iftab for firewire links
* standalone/service_harddrake, harddrake/data.pm: check usb controllers
on boot
2004/08/18 Pixel <pixel at mandrakesoft.com>
* any.pm: restrict the wait message (so that it's dead when an error
message is displayed)
fix typo
fix typos
- 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())
* standalone/drakboot, install_steps_interactive.pm:
- 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())
* install_steps_gtk.pm: hide $release_notes_scroll by default, it's
visually cleaner
* ugtk2.pm: fix blino sucks
* detect_devices.pm: perl_checker compliance
2004/08/18 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* ugtk2.pm: Make the status field optional in treeviews
2004/08/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
* lang.pm, any.pm: fix default IM setting when switching language
* drakxtools.spec: add bug reference
10.1-0.10mdk
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/sv.po,
share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
share/po/az.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
share/po/ta.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
share/po/eo.po, share/po/el.po, share/po/bg.po, share/po/cs.po,
share/po/uz@Latn.po: merge in s/%d/%s/ fix in net_applet's message
2004/08/18 Pixel <pixel at mandrakesoft.com>
* any.pm: restrict the wait message (so that it's dead when an error
message is displayed)
fix typo
fix typos
- 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())
create install_acpi_pkgs() and use it for auto_installs
* standalone/drakboot, install_steps_interactive.pm:
- 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())
* install_steps_gtk.pm: hide $release_notes_scroll by default, it's
visually cleaner
* ugtk2.pm: fix blino sucks
* detect_devices.pm: perl_checker compliance
* install_steps.pm: force ACPI on a laptop with recent bios
create install_acpi_pkgs() and use it for auto_installs
2004/08/18 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* ugtk2.pm: Make the status field optional in treeviews
2004/08/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
* lang.pm, any.pm: fix default IM setting when switching language
* harddrake/data.pm: add PCMCIA controllers class
* drakxtools.spec: 10.1-0.10mdk
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/sv.po,
share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/uk.po,
share/po/mn.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
share/po/az.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
share/po/ta.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
share/po/eo.po, share/po/el.po, share/po/bg.po, share/po/cs.po,
share/po/uz@Latn.po: merge in s/%d/%s/ fix in net_applet's message
2004/08/18 Olivier Blin <oblin at mandrakesoft.com>
* harddrake/data.pm: use network::ethernet::get_eth_categories in ethernet
detector
2004/08/18 Pixel <pixel at mandrakesoft.com>
* any.pm: restrict the wait message (so that it's dead when an error
message is displayed)
fix typo
fix typos
- 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())
create install_acpi_pkgs() and use it for auto_installs
* standalone/drakboot, install_steps_interactive.pm:
- 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())
* install_steps_gtk.pm: hide $release_notes_scroll by default, it's
visually cleaner
* ugtk2.pm: fix blino sucks
* detect_devices.pm: perl_checker compliance
use dmidecode to detect isLaptop()
* .perl_checker: Getopt::Long is now faked
* install_steps.pm: force ACPI on a laptop with recent bios
create install_acpi_pkgs() and use it for auto_installs
2004/08/18 Reinout van Schouwen <reinout at cs.vu.nl>
* share/po/nl.po: Updated Dutch (nl) translation
by Reinout van Schouwen <reinout@cs.vu.nl>
2004/08/18 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* ugtk2.pm: Make the status field optional in treeviews
2004/08/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
* harddrake/data.pm: add PCMCIA controllers class
2004/08/17 Nicolas Planel <nplanel at mandrakesoft.com>
* c/smp-dmi.c: rework smp-dmi, add dmi memory detection suppport
* c/stuff.xs.pl: revert my last bad commit
rework smp-dmi, add dmi memory detection suppport
2004/08/17 Olivier Blin <oblin at mandrakesoft.com>
* network/netconnect.pm: get rid off the 'ifcfg-Manually load a driver'
file ...
use network::ethernet::get_eth_categories() when needed
* standalone/net_applet: fix titi sux, fix I sux
use network::tools::get_internet_connection
* network/adsl.pm: fix sagem pty quoting
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)
* network/tools.pm: add new functions to make internet connection tests
easier
drop network::tools::reread_net_conf
* network/ethernet.pm: use network::ethernet::get_eth_categories() when
needed
add network::ethernet::get_eth_categories
drop network::ethernet::conf_network_card_backend
(conf_network_card_backend) set NET_INTERFACE too
* network/network.pm: use network::ethernet::get_eth_categories() when
needed
(easy_dhcp) probe all network sub categories
(easy_dhcp) don't use network::ethernet::conf_network_card_backend
(easy_dhcp) sort devices and keep only eth[0-9]+ devices
(easy_dhcp) allow configured interface not to be eth0 and make sure it
uses ethernet
(write_interface_conf) use unspec descriptor in iftab if link isn't
ether
fix suckiness (write proper iftab)
2004/08/17 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bs.po, share/po/cs.po: updated Bosnian and Czech files
2004/08/17 Pixel <pixel at mandrakesoft.com>
* standalone/bootloader-config: better error handling
* install2.pm, install_steps_interactive.pm: $::corporate is dead
get release_notes at beginning of
install_steps_interactive::acceptLicense(), even when
useless_thing_accepted
* tools/make_mdkinst_stage2: don't remove /usr/share/locale anymore, we
use the same locale for all langs
* bootloader.pm:
- fix short label with extension. eg: have "linux-smp" instead of
"linuxsmp"
- this fixes choosing the default specialised kernel
* fs/type.pm: cleanly handle the case when {pt_type} is 0
* share/gen_locales.sh, share/gen_locales.pl, share/list, share/Makefile,
Makefile:
- 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
* crypto.pm: $::corporate is dead
* lang.pm: lang::list() is unused, dropping it
- 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
* install_steps_gtk.pm: add release notes during install of packages
remove dead code
2004/08/17 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Display the list of media already taken into accounts
when asking for
supplementary media
perl_checker fix
Supplementary cd-roms don't need to have a rpmsrate / compssUsers.pl
* pkgs.pm: Log the reason why the rpms aren't installed
2004/08/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.1-0.9mdk
* network/network.pm (easy_dhcp) handle pcmci card too
* share/rpmsrate: fix rpmsrate regarding s2u
* share/po/fr.po: update
2004/08/16 Olivier Blin <oblin at mandrakesoft.com>
* install_steps_interactive.pm: alsaconf is in alsa-utils package (bug
10358)
* mdk-stage1/probing.c (probe_that_type) do not prompt in
discovered_device() before loading usb controllers (they're not network
devices)
* network/netconnect.pm: NET_INTERFACE should be ppp0 for pppoe too
add reminder about external ISDN modems (special init string)
* network/adsl.pm: do not write noipdefault in /etc/ppp/peers/ppp0 for
pptp connections
* standalone/drakroam: merge with waproamd version
add comments from waproamd version
2004/08/16 Pixel <pixel at mandrakesoft.com>
* Xconfig/xfree.pm: handle /etc/X11/xorg.conf
* Xconfig/various.pm: we don't use XF86Config-4 anymore
2004/08/16 Olivier Blin <oblin at mandrakesoft.com>
* network/adsl.pm (adsl_probe_info) net_cnx_up is obsolete, pptp info is
available in
ppp config files
(adsl_conf_backend) don't write net cnx scripts, internet service
should be dead
remove useless assignment (already done in adsl_protocol step)
fix pppoe with sagem (write ETH=`/usr/sbin/eaglectrl -i` instead of
ETH=sagem)
2004/08/16 Pablo Saratxaga <pablo at mandrakesoft.com>
* keyboard.pm: changed a keyboard name
2004/08/16 Pixel <pixel at mandrakesoft.com>
* Xconfig/card.pm: replace freeDriver with freedriver (stage2 para are
lower cased)
fix pixel sucks
replace freeDriver with freedriver (stage2 para are lower cased)
* install2.pm: replace freeDriver with freedriver (stage2 para are lower
cased)
modules::load doesn't accept options anymore, use
modules::load_with_options() (bugzilla #10778)
replace freeDriver with freedriver (stage2 para are lower cased)
* bootloader.pm: help debugging detectloader
* install_any.pm: better URLPREFIX parsing regexp (handle URLPREFIX =
"http://leia")
replace freeDriver with freedriver (stage2 para are lower cased)
replace freeDriver with freedriver (stage2 para are lower cased)
* share/compssUsers.pl: field is {default_selected}, not {selected}
* modules.pm: add load_with_options()
* network/netconnect.pm: don't configure firewall after configuring
network during install
(in summary you can configure firewall directly)
2004/08/15 José JORGE <jjorge at free.fr>
* share/po/pt.po: beta rush
2004/08/15 Keld Jørn Simonsen <keld at dkuug.dk>
* 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 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/vi.po: updated Vietnamese file
* share/po/et.po: updated Estonian file
* share/po/it.po, share/po/help-it.pot: updated Italian file
2004/08/14 Funda Wang <fundawang at linux.net.cn>
* share/po/help_xml2pm.pl: zh_CN -> zh_cn to fit CVS module
2004/08/14 hilbert
* share/po/zh_TW.po: DrakX-zh_TW: 591
Generate auto
2004/08/14 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/ky.po, share/po/ms.po, share/po/id.po, share/po/mk.po,
share/po/fur.po, share/po/th.po, share/po/is.po, share/po/sl.po,
share/po/hi.po, share/po/zh_TW.po, share/po/hr.po, share/po/fr.po,
share/po/sr@Latn.po, share/po/ga.po, share/po/be.po, share/po/mn.po,
share/po/am.po, share/po/ko.po, share/po/sr.po, share/po/he.po,
share/po/lt.po, share/po/eo.po, share/po/lv.po, share/po/el.po: fixed
special "<control>" entries;
included translations for various standard menu entries (File, Edit,
Help,...)
* share/po/ta.po: small fix
fixed special "<control>" entries;
included translations for various standard menu entries (File, Edit,
Help,...)
* share/po/nb.po, share/po/uz.po, share/po/uz@Latn.po: fixed shortcut
entries ("<control>...")
* share/po/tg.po: fixed shortcut entries ("<control>...")
fixed special "<control>" entries;
included translations for various standard menu entries (File, Edit,
Help,...)
* share/po/bn.po: fixed special "<control>" entries;
included translations for various standard menu entries (File, Edit,
Help,...)
updated Bengali file
2004/08/13 Olivier Blin <oblin at mandrakesoft.com>
* standalone/drakboot: misc cleanups
make perl_checker happy
perl_checker fix
(drakboot --splash) add enable_framebuffer to allow to choose a video
mode if boot isn't graphical
* any.pm: add and use bootloader::set_append_netprofile() and
bootloader::get_append_netprofile()
remove old linuxconf profile code
(setupBootloader__entries) allow to choose net profile in advanced mode
* bootloader.pm: add and use bootloader::set_append_netprofile() and
bootloader::get_append_netprofile()
remove old linuxconf profile code
add remove_append_dict
2004/08/13 Pablo Saratxaga <pablo at mandrakesoft.com>
* 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))
* 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 Pixel <pixel at mandrakesoft.com>
* 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
* any.pm: perl_checker compliance
- 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
* install_steps_gtk.pm: perl_checker compliance
- 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
* share/compssUsers.pl, Makefile.config, share/compssUsers, pkgs.pm,
install2.pm, share/po/Makefile, install_steps.pm,
share/po/i18n_compssUsers, install_any.pm, Makefile,
install_steps_interactive.pm:
- 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 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: One further step towards the ftp supplementary media
2004/08/13 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/cy.po: update
update
* any.pm (set_autologin) parameters are optionnal, writing empty variables
in
kdmrc and the like means disabled autologin
* share/po/fr.po: update
* standalone/drakboot (updateAutologin) clean any::set_autologin() call
2004/08/13 David Baudens <baudens at mandrakesoft.com>
* share/advertising/dis-06.pl, share/advertising/dis-05.png,
share/advertising/25.pl, share/advertising/dwd-08.pl,
share/advertising/pwp-02.pl, share/advertising/dwd-04.pl,
share/advertising/03.png, share/advertising/25.png,
share/advertising/13-b.png, share/advertising/pwp-05.png,
share/advertising/dis-11.pl, share/advertising/dwd-04.png,
share/advertising/30.png, share/advertising/dis-10.pl,
share/advertising/ppp-11.pl, share/advertising/27.pl,
share/advertising/14.pl, share/advertising/dwd-03.png,
share/advertising/08.pl, share/advertising/dis-05.pl,
share/advertising/22.pl, share/advertising/dis-03.png,
share/advertising/10.pl, share/advertising/dwd-01.pl,
share/advertising/18.pl, share/advertising/dwd-08.png,
share/advertising/dis-01.pl, share/advertising/pwp-02.png,
share/advertising/28.png, share/advertising/09.png,
share/advertising/ppp-06.pl, share/advertising/29.png,
share/advertising/ppp-07.png, share/advertising/list-dwd,
share/advertising/06.png, share/advertising/pwp-09.png,
share/advertising/dis-03.pl, share/advertising/dwd-09.png,
share/advertising/01.png, share/advertising/list-dis,
share/advertising/pwp-01.png, share/advertising/02.png,
share/advertising/15.png, share/advertising/23.png,
share/advertising/29.pl, share/advertising/ppp-03.pl,
share/advertising/07.pl, share/advertising/04.png,
share/advertising/13-a.png, share/advertising/09.pl,
share/advertising/17.pl, share/advertising/13-b.pl,
share/advertising/ppp-01.png, share/advertising/04.pl,
share/advertising/ppp-08.pl, share/advertising/dwd-06.pl,
share/advertising/ppp-05.png, share/advertising/ppp-02.pl,
share/advertising/12.png, share/advertising/24.pl,
share/advertising/12.pl, share/advertising/26.pl,
share/advertising/dis-09.png, share/advertising/16.png,
share/advertising/ppp-11.png, share/advertising/14.png,
share/advertising/list-pwp, share/advertising/ppp-09.png,
share/advertising/dis-06.png, share/advertising/dis-11.png,
share/advertising/10.png, share/advertising/dis-04.png,
share/advertising/19.pl, share/advertising/pwp-10.png,
share/advertising/05.pl, share/advertising/ppp-05.pl,
share/advertising/ppp-01.pl, share/advertising/dis-09.pl,
share/advertising/pwp-03.pl, share/advertising/dwd-05.png,
share/advertising/pwp-04.pl, share/advertising/20.png,
share/advertising/dis-10.png, share/advertising/dis-02.pl,
share/advertising/dwd-07.png, share/advertising/dis-04.pl,
share/advertising/ppp-06.png, share/advertising/20.pl,
share/advertising/02.pl, share/advertising/list-ppp,
share/advertising/21.png, share/advertising/pwp-07.pl,
share/advertising/pwp-08.png, share/advertising/07.png,
share/advertising/26.png, share/advertising/dwd-02.pl,
share/advertising/30.pl, share/advertising/ppp-09.pl,
share/advertising/16.pl, share/advertising/pwp-06.png,
share/advertising/dis-07.pl, share/advertising/01.pl,
share/advertising/drweb.pl, share/advertising/dwd-05.pl,
share/advertising/drweb.png, share/advertising/ppp-10.pl,
share/advertising/pwp-07.png, share/advertising/pwp-09.pl,
share/advertising/pwp-04.png, share/advertising/pwp-05.pl,
share/advertising/dis-01.png, share/advertising/23.pl,
share/advertising/dwd-06.png, share/advertising/dis-08.png,
share/advertising/ppp-08.png, share/advertising/19.png,
share/advertising/dis-08.pl, share/advertising/dwd-02.png,
share/advertising/pwp-06.pl, share/advertising/27.png,
share/advertising/dis-07.png, share/advertising/22.png,
share/advertising/ppp-03.png, share/advertising/dwd-03.pl,
share/advertising/28.pl, share/advertising/dis-02.png,
share/advertising/pwp-03.png, share/advertising/dwd-07.pl,
share/advertising/24.png, share/advertising/03.pl,
share/advertising/06.pl, share/advertising/ppp-07.pl,
share/advertising/13-a.pl, share/advertising/11.png,
share/advertising/ppp-04.png, share/advertising/pwp-10.pl,
share/advertising/ppp-10.png, share/advertising/18.png,
share/advertising/11.pl, share/advertising/15.pl,
share/advertising/21.pl, share/advertising/17.png,
share/advertising/05.png, share/advertising/dwd-01.png,
share/advertising/ppp-04.pl, share/advertising/pwp-01.pl,
share/advertising/ppp-02.png, share/advertising/pwp-08.pl,
share/advertising/08.png, share/advertising/dwd-09.pl: New ad's for 10.1
2004/08/13 Olivier Blin <oblin at mandrakesoft.com>
* share/rpmsrate: add list of providers for modem connexions in INSTALL
section
* network/network.pm (write_interface_conf) do not write undefined MAC
address in iftab
* any.pm: add and use bootloader::set_append_netprofile() and
bootloader::get_append_netprofile()
remove old linuxconf profile code
(setupBootloader__entries) allow to choose net profile in advanced mode
* standalone/drakvpn: perl_checker fix (add missing spaces)
do not assume drakvpn is already configured if the tunnels file is
made of comments only
* ugtk2.pm: ctrl-alt-delete allows to restart install
* bootloader.pm: add and use bootloader::set_append_netprofile() and
bootloader::get_append_netprofile()
remove old linuxconf profile code
add remove_append_dict
* standalone/drakupdate_fstab: drakupdate_fstab: add debug mode that dumps
argv, device list and fstab
to make bug reports easier
(device_name_to_entry) remove unused $variable
(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)
(device_name_to_entry) remove useless assignment
(device_name_to_entry) in non devfs case, $e->{device} always equals
to $name, move this test in devfs case
(device_name_to_entry) don't do brain twisted things
($e->{prefix} || $e->{device}) equals $prefix
$prefix . $nb equals $name
(device_name_to_entry) fix indentation
(device_name_to_entry) define $nb locally
(device_name_to_entry) recompute $e->{device} only when needed
(device_name_to_entry) do devfs things where they should be done
(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 Pablo Saratxaga <pablo at mandrakesoft.com>
* 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 Pixel <pixel at mandrakesoft.com>
* 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
* install_steps.pm:
- 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
- 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)
* install_steps_gtk.pm: perl_checker compliance
- 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
* share/compssUsers.pl, Makefile.config, share/compssUsers, pkgs.pm,
install2.pm, share/po/Makefile, share/po/i18n_compssUsers,
install_any.pm, Makefile, install_steps_interactive.pm:
- 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
* any.pm: perl_checker compliance
- 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
- 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 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* pkgs.pm: perl_checker fix
Concision, good (says perl_checker)
Try to copy associated synthesis when a custom hdlist path is given
* standalone.pm: Remove a perl compilation warning
* install_steps.pm, install_steps_interactive.pm: Don't ask for the
selection of supplementary media in non-interactive
installs.
* install_any.pm: One further step towards the ftp supplementary media
Don't ask for the selection of supplementary media in non-interactive
installs.
2004/08/12 Funda Wang <fundawang at linux.net.cn>
* lang.pm: Hong Kong -> Hong Kong SAR
2004/08/12 Olivier Blin <oblin at mandrakesoft.com>
* 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
* network/netconnect.pm: kill unused variables
kill deprecated parts
set both NET_DEVICE and NET_INTERFACE in automatic lan configuration
(network install)
set NET_DEVICE and NET_INTERFACE for lan and adsl dhcp/manual
connections
* 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
* network/network.pm: write interface MAC address in iftab
errm, don't commit crappy gnome proxy handling for now
(write_interface_conf) simplify HWADDR assignment and define
$mac_address (will be used later for /etc/iftab)
* 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)
reorder else if blocks, it's useless to do two times the same test
(WEXITSTATUS(wait_status) == exit_value_proceed)
use a do while loop to wait for forked process
2004/08/12 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/fonts.tar.bz2: fixed tamil font (removed wrong unicode values for
some glyphs);
improved fonts.conf
* share/po/help-zh_CN.pot, share/po/bn.po, share/po/ms.po, share/po/sk.po,
share/po/gl.po, share/po/pt_BR.po, share/po/th.po, share/po/et.po,
share/po/ja.po, share/po/hr.po, share/po/be.po, share/po/ko.po,
share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
share/po/uz.po, share/po/help-ru.pot, share/po/ro.po, share/po/zh_TW.po,
share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
share/po/ga.po, share/po/uk.po, share/po/help-de.pot, share/po/mn.po,
share/po/am.po, share/po/lt.po, share/po/cy.po, share/po/help-it.pot,
share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
share/po/wa.po, share/po/is.po, share/po/af.po, share/po/hi.po,
share/po/az.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
share/po/fr.po, share/po/nl.po, share/po/help-fr.pot, share/po/tl.po,
share/po/de.po, share/po/help-es.pot, share/po/eo.po, share/po/bg.po,
share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: updated pot file
* standalone/drakbug: fixed English string
2004/08/12 Pixel <pixel at mandrakesoft.com>
* fs.pm: enhance based on perl_checker suggestion, but not using it :)
* .perl_checker: standalone doesn't need to be blacklisted
* resize_fat/io.pm: remove check_mounted(), it is done by diskdrake
* share/po/help-zh_CN.pot, share/po/help-fr.pot, share/po/help-de.pot,
share/po/help-ru.pot, share/po/help-es.pot, share/po/help-it.pot: update
from doc (/cooker/doc/manualB)
* help.pm: fix bad %%
update from doc (/cooker/doc/manualB)
* share/po/help_xml2pm.pl:
- nicer error message for help.pm N parameters error
- handle <sect3> (and also <option>)
2004/08/12 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* pkgs.pm, install_any.pm: First stab at supporting several hdlists on a
supplementary CD
2004/08/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/nn.po: update (Karl Ove Hufthammer <karl@huftis.org>)
* 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
* standalone/net_monitor: let's be more l10n-friendly
fix default connection time (Fabrice FACORAT)
* tools/cvslog2changelog.pl: sync with soft/common/username
* standalone/draksec (basic_seclevel_explanations) explain
(basic_seclevel_explanations)
- handle "bold" value for "weight"
- display labels as bold
* share/po/br.po, share/po/fr.po: update
* share/rpmsrate: install driver and firmware for madwifi cards
* share/po/sv.po: typo fix (#10713, Robin Rosenberg
<robin.rosenberg@dewire.com>)
fix missing translations (#10711, Robin Rosenberg
<robin.rosenberg@dewire.com>)
big swedish update thanks to Robin Rosenberg
<robin.rosenberg@dewire.com>
2004/08/12 Pixel <pixel at mandrakesoft.com>
* .perl_checker: standalone doesn't need to be blacklisted
* resize_fat/io.pm: remove check_mounted(), it is done by diskdrake
perl_checker compliance
* security/msec.pm: use difference2() as suggested by new perl_checker
warning
cleanup
perl_checker compliance
* lang.pm: cleanup
2004/08/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/sv.po: big swedish update thanks to Robin Rosenberg
<robin.rosenberg@dewire.com>
* share/rpmsrate: install driver and firmware for madwifi cards
2004/08/11 Daouda Lo <daouda at mandrakesoft.com>
* standalone/drakhelp:
- perl_checker fixes
- use webclient-kde instead of konqueror
- add epiphany browser
2004/08/11 Olivier Blin <oblin at mandrakesoft.com>
* standalone/drakroam: rewrite write_config for wlandetect to use output()
regexp cleanup (bis)
regexp cleanups
remove unused variable
use each_index
introduce and use isRoamingRunning to detect if the roaming daemon is
running (woah, sector clear, titi is gone home, no more cvs conflicts)
prepare for multiple roaming daemons support
run UpdateStatus after a timeout in case 'ps' output isn't updated
immediately
make titi enhancement actually work
use standalone
only one item can be selected in the known list
use a lower scan interval, as requested by Austin
use cat_, remove unneeded local $_, try to fix ConnectNow
* share/gen_locales.pl: unused since locale links are done by the
installer
* share/gen_locales.sh: do not run gen_locales.pl anymore
(locale links are done by the installer)
* lang.pm: main charset is now en_US.UTF-8
* standalone/drakbug: comment unused variable
update product list and fix case (bugzilla is case sensitive)
fix product, component and version for bugzilla
reorganize to use the same upload info message for Anthill and Bugzilla
fix bugzilla url
2004/08/11 Pablo Saratxaga <pablo at mandrakesoft.com>
* lang.pm: rewrite handling of defautl locale
* share/po/es.po: updated Spanish file
s/XFree/Xorg/
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
share/po/az.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
share/po/ta.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
share/po/uz@Latn.po: s/XFree/Xorg/
2004/08/11 Pixel <pixel at mandrakesoft.com>
* .perl_checker: new perl_checker fake those packages
* any.pm, standalone/harddrake2, interactive/stdio.pm, standalone.pm,
pkgs.pm, lang.pm, standalone/service_harddrake, install_steps.pm,
install_any.pm, ugtk2.pm: perl_checker compliance
2004/08/11 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Support for ftp supplementary media
Restore ability to have supplementary http media.
Fix http installs.
Misleading comment
2004/08/11 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10.1-0.8mdk
* bootloader.pm (mkinitrd) log failled command
* standalone/drakroam: perl_checker hints
typo fix
(Dialog) according to mandrake guidelines we should not use stock icon
(AddNet) help perl_checker in checking callers
(UpdateStatus) simplify
simplify through run_program::get_stdout()
expand parenthesises
(UpdateAvailable) probably better
(UpdateAvailable) localize variable
(Dialog) indent
(Dialog) enable checking call signature
(Dialog) simplify: reuse create_scrolled_window()
(Dialog) fix it (got broken on ugtk2 port)
perl_checker fixes
* Makefile.config: install drakroam
* standalone.pm: perl_checker cleanups
* share/rpmsrate: install firmware for centrino if needed
* .perl_checker: blacklist Gtk2::SimpleList for drakroam
2004/08/10 Alice Lafox <alice at lafox.com.ua>
* share/po/ru.po: update
2004/08/10 Olivier Blin <oblin at mandrakesoft.com>
* network/netconnect.pm: remove unused variable in network::netconnect,
thanks perl_checker
add some FIXME comments in network::netconnect
network::tools::connect_prog shouldn't be used/written anymore now
kill some more connect/disconnect_file
* standalone/drakroam: perl_checker compliance
ugtk2 port
fix roaming detection
initial import of wlandetect version, from Austin Action
* standalone/drakconnect: network::tools::connect_prog is really dead now
2004/08/10 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/locales-skeleton.tar.bz2: updated use UTF-8 locales for everything
* share/gen_locales.pl, share/gen_locales.sh: using "en_US.UTF-8" instead
of "UTF-8" as model
updated use UTF-8 locales for everything
2004/08/10 Pixel <pixel at mandrakesoft.com>
* tools/make_mdkinst_stage2, rescue/make_rescue_img: umount mount point
instead of umounting the loopback file
(works better when /etc/mtab is /proc/mounts)
* share/rpmsrate: don't install devfsd by default, use udev instead
* Xconfig/various.pm, Xconfig/card.pm: s/XFree/Xorg/
* any.pm: create /etc/udev/conf.d/xxx.conf
* diskdrake/interactive.pm: no {fs_type} doesn't mean the type invalid
no {pt_type} doesn't mean Empty
* network/adsl.pm, pkgs.pm, install2.pm, bootloader.pm: mount /proc, /sys
and /proc/usb/usb in $prefix ASAP instead of doing it at various places
* fs/type.pm: when there is no {pt_type}, favour the one fs_type2pt_type
favours
* raid.pm: remove dead code
2004/08/10 reinouts
* share/po/nl.po: Updated Dutch (nl) translation
by Reinout van Schouwen <reinout@cs.vu.nl>
2004/08/10 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* pkgs.pm, install_any.pm: URLPREFIX is not set if the main media isn't
http, so the prefix must be
passed manually.
2004/08/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/net_monitor: add a horizontal separator in stats to prevent
visual disguts between
supposed non aligned labels
fix looking aka vertical alignment of labels (Fabrice FACORAT
<f.faber-pro@ifrance.com>, #10300)
fix packing (Fabrice FACORAT <f.faber-pro@ifrance.com>, #10300)
* tools/cvslog2changelog.pl: list a few more contributors
* share/rpmsrate: add s2u so that hostname changes do not fsck the desktop
install udev by default
* standalone/drakroam (AddNet, WriteConfig) do not bother accessing arrays
like in C
perl_checker cleanups (GUI code actually wasn't touched in order to
help olivier merge his ugtk2 porting work)
2004/08/10 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/fonts.tar.bz2: updated fonts (added devanagari and tamil)
2004/08/10 Pixel <pixel at mandrakesoft.com>
* any.pm: more logs
* network/adsl.pm: mounting device "none" is cleaner
* share/rpmsrate: don't install devfsd by default, use udev instead
* modules/modprobe_conf.pm, modules/modules_conf.pm: perl_checker
compliance
internally keep module names according to what we configure (and our
kernel, 2.4 or 2.6)
* modules.pm, modules/any_conf.pm: internally keep module names according
to what we configure (and our kernel, 2.4 or 2.6)
* Xconfig/various.pm, Xconfig/card.pm: s/XFree/Xorg/
2004/08/10 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: install_urpmi(): set up the right with_hdlist for
urpmi.cfg
Back to first medium after having added a supplementary one.
Set prefix for http supplementary media, since $URLPREFIX is not
defined.
* crypto.pm: Adapt to the new mirror structure: RPMs are no longer in a
RPMS subdirectory
2004/08/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/rpmsrate: install udev by default
2004/08/09 Fabian Mandelbaum <fabman at 2vias.com.ar>
* share/po/es.po: Updated Spanish translations
2004/08/09 fwang
* share/advertising/dis-11.pl, share/advertising/pwp-10.pl,
share/advertising/dwd-08.pl, share/advertising/ppp-11.pl:
s/MandrakeExpert/Mandrakeexpert
* share/po/zh_CN.po: Updated Simplified Chinese translation
2004/08/09 hilbert
* share/po/zh_TW.po: DrakX-zh_TW: 556
The Mandrakelinux
2004/08/09 jjorge
* share/po/pt.po: saraiva corrected
saraiva
2004/08/09 Olivier Blin <oblin at mandrakesoft.com>
* network/netconnect.pm: in netconnect::(start|stop)_internet, use
(connect|disconnect)_backend
* install_any.pm: use new ISO images volume name (#10543)
fix regexp (do not strip paths ending in .*iso)
* mdk-stage1/directory.c: typo fix (from Olivier Borowski)
2004/08/09 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/eu.po: updated Basque file
updated pot file
* share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
share/po/ca.po, share/po/da.po, share/po/ltg.po, share/po/nb.po,
share/po/ky.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
share/po/el.po, share/po/uz@Latn.po: updated pot file
* share/fonts.tar.bz2: replaced arabic and bengali fonts
* share/po/ar.po: updated Arabic file
updated pot file
* share/po/bn.po: updated Bengali file
updated pot file
2004/08/09 Pixel <pixel at mandrakesoft.com>
* interactive/http.pm: use $F instead of *F
prototype perl_checker compliance
* network/network.pm: perl_checker prototype compliance
perl_checker compliance + cleanup
* 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
* 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
* share/rpmsrate: remove awesfx from "SYSTEM 2" otherwise it gives a fatal
error
* diskdrake/interactive.pm: help perl_checker know the $all_hds *is* used
* install_steps_auto_install.pm, install2.pm: correctly call errorInStep()
* fsedit.pm: flags is optional
* lang.pm: prototype compliance with perl_checker
we never pass a prefix to lang::read() which is always use in
standalone,
so use $::prefix and don't pass a prefix anymore
* Xconfig/various.pm:
- adapt prototype of runlevel() to its use
- bootloader::read() needs fstab
* install_steps.pm: correctly call errorInStep()
fix call to bootloader::read()
* install_any.pm: fix typo
- fix unlockCdrom()
- ejectCdrom() prototype compliance with perl_checker
* fs.pm: allow 192.168.1.1:/export
2004/08/09 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* install_any.pm: Select supplementary medium
Begin the support for installations over multiple media.
* share/po/pt.po: Remove conflict marker and duplicate entries
2004/08/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/drakperm: prefer obj->new rather than new obj for gtk+
widgets
- perl_checker cleanups
- reuse cat_() where opencoded
* share/po/fr.po: update
update
* standalone/logdrake, standalone/drakfloppy,
Xconfig/resolution_and_depth.pm, standalone/drakconnect,
standalone/drakbug, standalone/drakTermServ, standalone/net_monitor:
prefer obj->new rather than new obj for gtk+ widgets
* ugtk2.pm (gtkappend_page) title is optonnal and perl_checker is loudly
complaining outdoor...
* standalone/drakautoinst: prefer obj->new rather than new obj for gtk+
widgets
perl_checker cleanup
* standalone/net_applet: developers should always run their stuff with the
strict pragma
prefer obj->new rather than new obj for gtk+ widgets
(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.
(setState) fix status toolip
allow multiple instances, but only one per user (Joe Bolin
<sopwithcamel@charter.net>)
* standalone/draksec (basic_seclevel_explanation) handle any tags ala
label
add hint about ala LaTeX strings for translators
prefer obj->new rather than new obj for gtk+ widgets
* standalone/drakbackup: prefer obj->new rather than new obj for gtk+
widgets
(find_files_to_restore) cleanups
* harddrake/sound.pm, install_messages.pm, standalone/drakfont,
standalone/draksound, install_interactive.pm, install_any.pm,
standalone/drakxtv: add hint about ala LaTeX strings for translators
* share/po/br.po: update
* drakxtools.spec: 10.1-0.7mdk
2004/08/09 yrahal
* share/po/ar.po: Arabic (from Arabeyes.org) translation
Arabic translation
2004/08/08 fwang
* network/netconnect.pm: s/iwpconfig/iwconfig
* share/advertising/dwd-04.pl, share/advertising/ppp-09.pl,
share/advertising/dis-08.pl, share/advertising/dis-10.pl,
share/advertising/ppp-05.pl, share/advertising/ppp-08.pl,
share/advertising/ppp-10.pl, share/advertising/dwd-06.pl,
share/advertising/dis-09.pl, share/advertising/ppp-04.pl,
share/advertising/pwp-04.pl, share/advertising/pwp-08.pl,
share/advertising/dwd-07.pl, share/advertising/pwp-07.pl,
share/advertising/pwp-09.pl: Some string fixes
* standalone/logdrake: typo fix
s/Mandrake/Mandrakelinux
* authentication.pm, share/po/zh_CN.po: typo fix
* lang.pm: Revised comments to make non-utf-8 editor happier
changed default font for gb2312
* standalone/drakconnect, standalone/drakbug, standalone/harddrake2,
standalone.pm, standalone/net_monitor: s/Mandrake/Mandrakelinux
2004/08/08 hilbert
* share/po/zh_TW.po: DrakX-zh_TW: 401
Volume label:
2004/08/08 Pixel <pixel at mandrakesoft.com>
* share/aliases: remove raidstop
* diskdrake/hd_gtk.pm, share/list.i386, diskdrake/interactive.pm,
fs/get.pm, install2.pm, fsedit.pm, detect_devices.pm, raid.pm,
bootloader.pm, install_any.pm:
- 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
* install_steps.pm: don't set toFormat if we don't have a {fs_type} (eg:
pt_type 0xfd, ie raw raid)
* share/rpmsrate: many authentication packages where missing (bugzilla
#10644)
many authentication packages where missing (bugzilla #10644)
2004/08/08 tsdgeos
* share/po/ca.po: small updates to catalan translation
2004/08/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/drakperm (row_setting_dialog) add hints for translators
(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)
(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
simplify code through Gtk2::ComboBox->new_with_strings()
* standalone/drakTermServ, standalone/drakbackup, standalone/draksec,
standalone/drakfloppy: simplify code through
Gtk2::ComboBox->new_with_strings()
* drakxtools.spec: fix 10.1-0.6mdk's changelog
* standalone/drakboot: sort theme list
simplify code through Gtk2::ComboBox->new_with_strings()
sort WMs list
use proper widget (aka GtkTable)
sort user list
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/sv.po,
share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
share/po/az.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
share/po/ta.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
share/po/uz@Latn.po: merge in typo fixes
* ugtk2.pm (Gtk2::ComboBox->new_with_strings) make it working
2004/08/08 yrahal
* share/po/ar.po: Arabic translation
2004/08/08 hilbert
* share/po/zh_TW.po: DrakX-zh_TW: 205
Local file:
2004/08/08 Pixel <pixel at mandrakesoft.com>
* install_steps.pm: don't set toFormat if we don't have a {fs_type} (eg:
pt_type 0xfd, ie raw raid)
* detect_devices.pm:
- 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
only load floppy module explictly during install (otherwise it causes
ugly messages in bootloader-config)
* any.pm: replace "More" with a more descriptive button name
* share/rpmsrate: many authentication packages where missing (bugzilla
#10644)
many authentication packages where missing (bugzilla #10644)
* diskdrake/hd_gtk.pm, share/list.i386, diskdrake/interactive.pm,
fs/get.pm, install2.pm, fsedit.pm, raid.pm, bootloader.pm,
install_any.pm:
- 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/07 hilbert
* share/po/zh_TW.po: DrakX-zh_TW: 130
2004/08/07 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/nb.po: updated Norwegian file
* share/po/wa.po: updated Walloon file
2004/08/07 reinouts
* share/po/nl.po: Updated Dutch (nl) translation
by Reinout van Schouwen <reinout@cs.vu.nl>
2004/08/06 hilbert
* share/po/zh_TW.po: DrakX-zh_TW: 100
What norm is your...
2004/08/06 Olivier Blin <oblin at mandrakesoft.com>
* network/adsl.pm (network::adsl::adsl_conf_backend) add ppp_async alias
for sagem
devices (so that they work during install)
fix titypo
try to load all modules that may be needed to establish connexion
try to mount proc fs too, in case it wasn't done earlier
* 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/06 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/de.po: updated German file
updated pot file
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/tl.po,
share/po/eo.po, share/po/el.po, share/po/bg.po, share/po/cs.po,
share/po/uz@Latn.po: updated pot file
* fsedit.pm: reverted an unneeded string change
2004/08/06 Pixel <pixel at mandrakesoft.com>
* install_steps.pm: fix typo
don't try to remove non existing should_be_dirs
2004/08/06 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* share/rpmsrate: If totem is to be avoided for KDE, avoid it in audio as
well as in video.
* pkgs.pm: Allow multiple complicate flags in rpmsrate, if they're exactly
the same.
2004/08/06 Thierry Vignaud <tvignaud at mandrakesoft.com>
* share/po/fr.po: update
push typo fixes in order to reduce pressure on translators
* drakxtools.spec: 10.1-0.6mdk
10.1-0.5mdk
* any.pm (selectCountry) fix IM sorting
* share/rpmsrate:
- install awesfx too if neded
- add a note b/c we cannot install it :-)
always install all arabic fonts since farsi oness contains nice arabic
glyphs but not urdu (by way of arabayes feedback)
* network/adsl.pm (adsl_conf_backend) let's have a better looking mesage
(adsl_conf_backend) only try to mount /proc if it wasn't (eg if we
didn't intall any packages)
* lang.pm: fix x-unikey support (Larry Nguyen)
(write) fix configuring IM
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/sv.po,
share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
share/po/da.po, share/po/ca.po, share/po/ar.po, share/po/ltg.po,
share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/uk.po,
share/po/mn.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
share/po/az.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
share/po/nl.po, share/po/tl.po, share/po/de.po, share/po/eo.po,
share/po/el.po, share/po/bg.po, share/po/cs.po, share/po/uz@Latn.po:
push typo fixes in order to reduce pressure on translators
* ugtk2.pm (Gtk2::ComboBox->set_text) better error message
(create_scrolled_window) adding 6px as left margin for TextView in
scrolled Window
* standalone/drakbackup: typo fix
cleanups for lord perl_checker
(advanced_when) quiet runtime warnings
(advanced_when) fix crash when selecting an entry in pull down menus
2004/08/06 yrahal
* share/po/ar.po: Arabeyes' Arabic translation
2004/08/05 David Baudens <baudens at mandrakesoft.com>
* share/rpmsrate: Update
Update for discovery
2004/08/05 Olivier Blin <oblin at mandrakesoft.com>
* standalone/drakclock: if ntp is used, get the new time before updating
the hwclock
(fix from Emmanuel Blindauer, #10537)
* mdk-stage1/directory.c: do not go back to the beginning if no
distribution is found in the
directory (second fix)
do not go back to the beginning if no distribution is found in the
directory
* network/adsl.pm: try to mount usbdevfs in $::prefix before attempting to
run adsl start
programs
* network/netconnect.pm: set netcnx type when an external isdn modem is
selected, or else
modem::ppp_read_conf will crash (Anthill #1033)
set netcnx type when an external isdn modem is selected, or else
modem::ppp_read_conf will crash (Anthill #1033)
2004/08/05 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/uk.po, share/po/et.po: updated Estonian file
2004/08/05 Pixel <pixel at mandrakesoft.com>
* Xconfig/various.pm, diskdrake/interactive.pm,
standalone/bootloader-config: adapt to bootloader functions now using
all_hds instead of hds
* bootloader.pm: update yaboot code (based on Christiaan Welvaart patch)
/usr/sbin/ofpath seems to need /mnt/sys mounted, and the device must
exist (Christiaan Welvaart)
fix typos (Christiaan Welvaart)
* install_steps_interactive.pm: basic code for upgrading from a redhat
distribution
* install_steps_gtk.pm: drop Xpmac support
* detect_devices.pm: isLaptop() special code for ppc
* any.pm, install_steps.pm: basic code for upgrading from a redhat
distribution
adapt to bootloader functions now using all_hds instead of hds
* install_any.pm: basic code for upgrading from a redhat distribution
write auto_inst.cfg after making room on the floppy image
make room on replay/auto_install floppy image before doing anything
when replaying, overwrite boot.msg with an empty message to win some
space
(it was only done in non-replay mode)
adapt to bootloader functions now using all_hds instead of hds
make room on replay/auto_install floppy image before doing anything
2004/08/05 Thierry Vignaud <tvignaud at mandrakesoft.com>
* harddrake/sound.pm: make it clearer by factorizing arch() call
fix PPC entries
* install_messages.pm (install_completed) bump errata page (though it does
not yet exists)
* share/rpmsrate: use new arabic font packages
install sg usefull when there's a bluetooth device connected to the
system
install gimp's help along it
2004/08/05 Olivier Blin <oblin at mandrakesoft.com>
* standalone/drakclock: if ntp is used, get the new time before updating
the hwclock
(fix from Emmanuel Blindauer, #10537)
2004/08/05 Pixel <pixel at mandrakesoft.com>
* diskdrake/interactive.pm, standalone/bootloader-config: adapt to
bootloader functions now using all_hds instead of hds
* install_steps.pm: adapt to bootloader functions now using all_hds
instead of hds
pass around $all_hds instead of $hds
* harddrake/sound.pm: add dmasound_pmac <=> snd-powermac (for ppc,
Christiaan Welvaart)
* keyboard.pm: ppc doesn't use dumpkeys (?) (Christiaan Welvaart)
* install_steps_gtk.pm: drop Xpmac support
* detect_devices.pm: isLaptop() special code for ppc
* bootloader.pm: update yaboot code (based on Christiaan Welvaart patch)
/usr/sbin/ofpath seems to need /mnt/sys mounted, and the device must
exist (Christiaan Welvaart)
fix typos (Christiaan Welvaart)
pass around $all_hds instead of $hds
create bootloader::allowed_boot_parts() and use it,
it allows installing on md0 if using lilo and md0 is raid1
* Xconfig/various.pm: adapt to bootloader functions now using all_hds
instead of hds
replaced XFree86 and XFree with Xorg (bugzilla #10531)
* any.pm: adapt to bootloader functions now using all_hds instead of hds
create bootloader::allowed_boot_parts() and use it,
it allows installing on md0 if using lilo and md0 is raid1
* rescue/list.ppc, tools/ppc/mkINSTALLCD, share/list.ppc: update
(Christiaan Welvaart)
* fs/type.pm: "PPC PReP Boot" is an "important" type on ppc
* Xconfig/card.pm, services.pm, standalone/XFdrake: replaced XFree86 and
XFree with Xorg (bugzilla #10531)
* share/list, share/list.x86_64, share/list.i386: ntfsresize and dmidecode
are not needed on ppc (Christiaan Welvaart)
* install_any.pm: make room on replay/auto_install floppy image before
doing anything
when replaying, overwrite boot.msg with an empty message to win some
space
(it was only done in non-replay mode)
adapt to bootloader functions now using all_hds instead of hds
fix backward compatibility {type} field in partitions and manualFstab
2004/08/05 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/draksec: looks like patch -l did wrong things :-(
* network/adsl.pm: quiet perl_checker
(adsl_conf_backend) fix error message
* share/rpmsrate: install needed alsa tools depending on present sound
cards
* harddrake/sound.pm: make it clearer by factorizing arch() call
fix PPC entries
add support for ALSA on PPC and SPARC
align sound driver entries
update sound drivers list
2004/08/04 Daouda Lo <daouda at mandrakesoft.com>
* share/net_applet.xinit:
- added net_applet xinit file to automate launch of net_applet in KDE,
GNOME and IceWM
* drakxtools.spec:
- do not expand shell vars
- do not forget to package xinit.d net_applet file
- automatically launch net_applet for KDE, GNOME and IceWM
2004/08/04 Olivier Blin <oblin at mandrakesoft.com>
* 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)
* mdk-stage1/directory.c: prefer to use a ramdisk for disk installs
* network/tools.pm, network/ethernet.pm, standalone/drakconnect: kill
set_cnx_script usage, replace cnx_scripts with ifup/ifdown
* network/adsl.pm: catch die from modules::load
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)
* network/netconnect.pm: fix wording
do not force kppp installation, it will be installed by
modem::ppp_configure if kdebase is installed,
else ifup/ifdown scripts are enough
kill set_cnx_script usage, replace cnx_scripts with ifup/ifdown
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 Pixel <pixel at mandrakesoft.com>
* fs/get.pm, fs/mount_options.pm: return a true value for perl
* standalone/bootloader-config: don't allow unknown kernel names to mess
everything
* 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
try to keep the order of kernel options (to help same_entries())
handle win4lin kernels
* any.pm: .gnome2/wmrc and .wmrc are obsolete, it is now .dmrc
(nb: beware, one must write 07IceWM instead of IceWM, same for others)
don't set /etc/sysconfig/desktop anymore, configure ~/.wmrc,
~/.gnome2/gdm and ~/.desktop instead
* rescue/list: replace /sbin/mkraid with /sbin/mdadm (as told on cooker by
Luca Berra)
2004/08/04 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* http.pm: Verify that regexp matched
2004/08/04 Thierry Vignaud <tvignaud at mandrakesoft.com>
* Makefile.drakxtools: fix build
* ugtk2.pm (Gtk2::ComboBox->set_text) actually print a warning if we
failled
let's system wide config not override user's locale
* lang.pm: add x-unikey support for Vietnamese
switch korean to scim-hangul IM
(write) if one override default IM, remove any setting from default IM
(hint:
some IM configurations do not have all fields set...)
(read) fix IM reading
* share/rpmsrate: add x-unikey support for Vietnamese
include fcitx IM too
ensure alternative IMs get in in the isos
switch korean to scim-hangul IM
uim is already installed if needed depending on locale
install xvnkb IM for vietnamese
install ami IM only for korean
* network/adsl.pm: log module loading faillure
* drakxtools.spec: 10.1-0.4mdk
update 10.1-0.3mdk'log (thx to build issue...)
10.1-0.3mdk
* Makefile: fix build
remove unused net_applet.desktop
* interactive/gtk.pm (ask_fromW) actually honor default value
* standalone/draksec: perl_checker cleanup
- upcase fields values (and btw reduce the number of strings to
translate :-))
- simplify translating
2004/08/03 jjorge
* share/po/pt.po: error?
2004/08/03 Olivier Blin <oblin at mandrakesoft.com>
* share/fonts.tar.bz2: add missing fonts.conf (with Kacst-Qr entries)
2004/08/03 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/fonts.tar.bz2: oops, /etc/fonts.conf missing from tarball
updted fonts-cache file
2004/08/03 Pixel <pixel at mandrakesoft.com>
* install_steps_interactive.pm: 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()
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
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
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
* fs/format.pm: add CVS $Id:
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
* fs/mount_options.pm, network/smbnfs.pm, network/smb.pm: 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()
* tools/hd_grub.cgi: better description
* diskdrake/interactive.pm, install_steps.pm, fs.pm, fsedit.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()
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
* loopback.pm, any.pm, fs/get.pm, diskdrake/removable.pm, bootloader.pm,
network/netconnect.pm, diskdrake/dav.pm, diskdrake/hd_gtk.pm,
standalone/drakboot, lvm.pm, install2.pm, network/tools.pm,
diskdrake/smbnfs_gtk.pm, install_interactive.pm, install_any.pm,
standalone/bootloader-config, partition_table.pm: 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 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* pkgs.pm, install_any.pm: A small variable renaming: use $medium for
hashes and $medium_name for strings
* share/po/fr.po: Small typos
* share/po/pt.po: pt.po was corrupted
2004/08/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/draksplash2: help perl_checker
* ugtk2.pm (create_dialog) only add space between icon and text if there's
actually an icon
(create_notebook) reuse gtkappend_page()
(create_dialog) do not show separator by default
(_create_dialog) sanitize dialogs/popups:
- set a border around it
- add more space between the icon and the text
(gtkappend_page) name parameters, enabling perl_checker to check
callers' call
signature
(create_packtable) set a border around packtables
* standalone/draksec: reuse gtkappend_page()
* standalone/drakups (add_device_wizard) fix string (Joe Brower)
2004/08/03 Olivier Blin <oblin at mandrakesoft.com>
* share/fonts.tar.bz2: add missing fonts.conf (with Kacst-Qr entries)
2004/08/03 Pixel <pixel at mandrakesoft.com>
* 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
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/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/drakups (add_device_wizard) fix string (Joe Brower)
2004/08/02 Olivier Blin <oblin at mandrakesoft.com>
* Makefile: enable ar and fa locales since an arabic font is now available
in install
2004/08/02 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/fonts.tar.bz2: added arabic and bengali fonts
2004/08/02 Pixel <pixel at mandrakesoft.com>
* fs/format.pm: make perl_checker happy
2004/08/02 Olivier Blin <oblin at mandrakesoft.com>
* 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
in speedtouch start section, modprobe speedtch module and use
speedtouch-start instead of directly using modem_run
in install, run modem start scripts once config is written
* Makefile: enable ar and fa locales since an arabic font is now available
in install
2004/08/02 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/fonts.tar.bz2: added arabic and bengali fonts
2004/08/02 Pixel <pixel at mandrakesoft.com>
* .perl_checker: black list URPM::Build
* fs.pm: don't use supermount for {is_removable} devices when used for a
boot time partition (like /usr and /)
* share/rpmsrate: flag rosegarden4 KDE
* any.pm, network/network.pm, harddrake/sound.pm, diskdrake/dav.pm,
network/netconnect.pm, network/smb.pm, do_pkgs.pm, lvm.pm,
network/drakfirewall.pm, network/nfs.pm, standalone/drakups,
standalone/drakxtv: introduce ->ensure_binary_is_installed and use it
* fs/format.pm, install_any.pm:
- move package_needed_for_partition_type() from fsedit to fs::format
- create check_package_is_installed() in fs::format and use it
* diskdrake/interactive.pm: fsedit::check_fs_type() is now
fs::type::check()
use fs::format::check_package_is_installed() before formatting (bugzilla
#10435)
- move package_needed_for_partition_type() from fsedit to fs::format
- create check_package_is_installed() in fs::format and use it
* fsedit.pm: fsedit::check_fs_type() is now fs::type::check()
- move package_needed_for_partition_type() from fsedit to fs::format
- create check_package_is_installed() in fs::format and use it
* fs/type.pm: fsedit::check_fs_type() is now fs::type::check()
2004/08/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
* c/Makefile.PL: fix build
* standalone/drakups: clean spacing
(add_device_wizard) fix string
2004/08/02 Frederic Lepied <flepied at mandrakesoft.com>
* share/rpmsrate: updated installed packages for 10.1
2004/08/02 jjorge
* share/po/pt.po: install lover
2004/08/02 Olivier Blin <oblin at mandrakesoft.com>
* 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
in speedtouch start section, modprobe speedtch module and use
speedtouch-start instead of directly using modem_run
in install, run modem start scripts once config is written
2004/08/02 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/fa.po, share/po/uk.po, share/po/wa.po: updated Farsi file
* share/po/ar.po: updated Arabic file
* share/po/zh_TW.po: updated Chinese file
2004/08/02 Pixel <pixel at mandrakesoft.com>
* share/rpmsrate: flag rosegarden4 KDE
* diskdrake/interactive.pm: use fs::format::check_package_is_installed()
before formatting (bugzilla #10435)
- move package_needed_for_partition_type() from fsedit to fs::format
- create check_package_is_installed() in fs::format and use it
don't call will_tell_kernel() when we have lvm (anthill #994)
* any.pm, network/network.pm, harddrake/sound.pm, diskdrake/dav.pm,
network/netconnect.pm, do_pkgs.pm, network/smb.pm, lvm.pm,
network/drakfirewall.pm, network/nfs.pm, standalone/drakups,
standalone/drakxtv: introduce ->ensure_binary_is_installed and use it
* fsedit.pm, fs/format.pm, install_any.pm:
- move package_needed_for_partition_type() from fsedit to fs::format
- create check_package_is_installed() in fs::format and use it
* 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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* c/Makefile.PL: fix build
* ugtk2.pm: fix inverted comments
(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
* standalone/logdrake: perl_checker cleanup
(log_output__real) rename it as insert_text_n_scroll() in order to
better
reflect what it does
reuse new ugtk2 infrastructure
(log_output) fix tag name (was harmfull but it's just saner anyway)
* harddrake/autoconf.pm (network_conf) rename o as obj so that pixel isn't
confused
* standalone/drakups (add_device_wizard) fix string
2004/08/01 Frederic Lepied <flepied at mandrakesoft.com>
* share/rpmsrate: added s2u
2004/08/01 fwang
* standalone/drakbackup, standalone/harddrake2, standalone/drakups:
several typos fix
* share/po/zh_CN.po: Updated Simplified Chinese translation
2004/08/01 hilbert
* share/po/zh_TW.po: DrakX-zh_TW: 75
Choose the...
2004/08/01 reinouts
* share/po/nl.po: Updated Dutch (nl) translation
by Reinout van Schouwen <reinout@cs.vu.nl>
2004/07/30 Pixel <pixel at mandrakesoft.com>
* standalone/draksplash2: draksplash2 is here until merged in draksplash
2004/07/30 Thierry Vignaud <tvignaud at mandrakesoft.com>
* lang.pm: support nabi input method too
support im-ja input method too
* drakxtools.spec: log more stuff into 10.1-0.2mdk
10.1-0.2mdk
* standalone/net_applet: keep strings synced and warn both coders and
translators about it
fix timeout usage
like in all other tools, revert ugly code printing "This program
cannot be run in console mode", which is easier done in ugtk2.pm
do not enforce parameter position in translatable strings
* share/po/br.po, share/po/fr.po: update
* ugtk2.pm (shrink_topwindow) drop Gtk+-2.[02]x support
* any.pm (selectCountry) let's have a better looking GUI by preventing
uneeded
scrollbar on pull down menu
(selectCountry) use a combo box rather than a list for listing input
methods
2004/07/30 Olivier Blin <oblin at mandrakesoft.com>
* network/netconnect.pm: offer to connect for pppoe connexions too
* 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)
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)
* network/adsl.pm: sagem: use fctStartAdsl to wait for sync, up the
interface and get interface name
modprobe eagle-usb for sagem modems (useful if coldplug doesn't work)
2004/07/30 Pixel <pixel at mandrakesoft.com>
* standalone/draksplash2: draksplash2 is here until merged in draksplash
* share/rpmsrate: authentication installs perl-Net-DNS in some cases
authentication installs perl-Net-DNS in some cases
* any.pm, lang.pm: cleanup
2004/07/30 Stew Benedict <sbenedict at mandrakesoft.com>
* standalone/drakbackup: Fixes for Anthill #1009, #1010 (DVD recording,
disk quota)
Direct-to-tape enahancement
Fixes for AntHill #1009, #1010.
2004/07/30 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: log more stuff into 10.1-0.2mdk
10.1-0.2mdk
* 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
* any.pm (selectCountry) let's have a better looking GUI by preventing
uneeded
scrollbar on pull down menu
(selectCountry) use a combo box rather than a list for listing input
methods
enable one to choose its input method in advanced mode
* standalone/drakgw (outpend) clean by reusing MDK::Common
* lang.pm: support nabi input method too
support im-ja input method too
enable one to choose its input method in advanced mode
* security/help.pm, security/msec.pm, security/l10n.pm: sync with
msec-0.44
2004/07/30 Vincent Guardiola <vguardiola at mandrakesoft.com>
* authentication.pm: Clean ldap client configuration
2004/07/30 yrahal
* share/po/ar.po: Arabeyes.org's Arabic translation
Sync with Arabeyes CVS
2004/07/29 Olivier Blin <oblin at mandrakesoft.com>
* 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)
add newline at end of net_cnx_up script
use connect option or pppd in net_cnx_up, not both
(to fix weird pppoe net_cnx_up script)
2004/07/29 Pixel <pixel at mandrakesoft.com>
* authentication.pm: cleanup, fix various typos
(still, ->target seems broken, but i'm not sure, since i couldn't test)
* fsedit.pm: merge hds() in get_hds() to correctly handle catching cdie
when the device is non partionned
merge hds() in get_hds() to correctly handle catching cdie when the
device is non partionned
* mdk-stage1/stage1.c, mdk-stage1/config-stage1.h: s/MandrakeMove/Move/
2004/07/29 Thierry Vignaud <tvignaud at mandrakesoft.com>
* c/stuff.xs.pl, c/Makefile: always include all funcs (these're needed
anyway by Move and GlobeTrotter)
* drakxtools.spec: 10.1-0.1mdk
* wizards.pm (check_rpm) backport fix from HEAD
* standalone/service_harddrake: use new set_removable_auto_configurator
merge fix from HEAD: do not automatically configure removable media in
harddrake GUI (only in harddrake service)
* network/netconnect.pm (handle_multiple_cnx) only restart network for
ADSL if we use an
ethernet modem
* harddrake/data.pm (set_removable_auto_configurator) copy it out from
set_removable_configurator()
(set_removable_configurator) restore it as of MDK10.0 time
merge fix from HEAD: do not automatically configure removable media in
harddrake GUI (only in harddrake service)
* network/tools.pm (remove_initscript) simplify
* standalone/draksec, standalone/drakedm, standalone/drakgw: standalone
tools are *not* chrooted
* standalone/draksplash (show_prev)
- kill useless variables
- simplify
(show_prev) fix preview refresh while simplying code
(write_boot_thm) typo fix
more cleanups
misc cleanups
(show_prev) do not crash when the image format is unknown
(make_boot_frame) fix it
2004/07/28 Olivier Blin <oblin at mandrakesoft.com>
* 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)
do not write a blank "pty" option in ppp config file is there is no
pty command (should fix some problems with Bewan modems)
* 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)
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)
* network/netconnect.pm: it's probably better to rely on modem_run since
speedtouch.sh may be dropped
2004/07/28 Pixel <pixel at mandrakesoft.com>
* fs/type.pm: remove small ugly typo
* network/smb.pm:
- use option -g for smbclient -L, this fixes bad parsing of formatted
smbclient output
- skip "netlogon" Disk share (lowercase letters)
* install_steps.pm: explain why we set toFormatUnsure
* install_any.pm: don't set mount point /mnt/windows for removable devices
* detect_devices.pm: fix getSCSI_26() not sorting the drives
fix getCompaqSmartArray() on 2.6 (since /proc/driver/cciss/cciss0
doesn't talk about c0dX anymore)
fix getSCSI_26() not sorting the drives
2004/07/28 Stew Benedict <sbenedict at mandrakesoft.com>
* standalone/drakbackup, standalone/drakTermServ: Fix crashes on
append_set.
2004/07/28 Pixel <pixel at mandrakesoft.com>
* fs/type.pm: remove small ugly typo
* detect_devices.pm: fix getSCSI_26() not sorting the drives
fix getCompaqSmartArray() on 2.6 (since /proc/driver/cciss/cciss0
doesn't talk about c0dX anymore)
fix getSCSI_26() not sorting the drives
2004/07/27 Daouda Lo <daouda at mandrakesoft.com>
* standalone/drakbug:
- scroll down text while typing
- many cleanups
- Stable releases are 'Official' and 'Community'
2004/07/27 jjorge
* share/po/pt.po: bunch of work
2004/07/27 Olivier Blin <oblin at mandrakesoft.com>
* network/adsl.pm: '-e 1' option is unneeded with speedtouch >= 1.3
2004/07/27 Pixel <pixel at mandrakesoft.com>
* lvm.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
a {type} didn't get moved to {pt_type}, fixing
* loopback.pm, any.pm, partition_table/mac.pm, partition_table/bsd.pm,
diskdrake/interactive.pm, partition_table/dos.pm, fs.pm,
install_steps.pm, diskdrake/removable.pm, bootloader.pm,
partition_table/sun.pm, partition_table/gpt.pm,
install_steps_interactive.pm, network/smbnfs.pm, diskdrake/dav.pm,
diskdrake/hd_gtk.pm, fs/type.pm, fsedit.pm, install2.pm, raid.pm,
fs/format.pm, install_interactive.pm, install_any.pm,
partition_table.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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/net_monitor: save/restore options
2004/07/26 Fabian Mandelbaum <fabman at 2vias.com.ar>
* share/po/es.po: Updated Spanish translations
2004/07/26 Olivier Blin <oblin at mandrakesoft.com>
* network/tools.pm: remove unneeded quotes
let perl-MDK-Common do the quoting
2004/07/26 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/be.po: small fix
* share/po/bn.po: updated Bengali file
2004/07/26 Pixel <pixel at mandrakesoft.com>
* .perl_checker: blacklist Net::DNS (until we get rid of it?)
* authentication.pm: cleanup, fix various typos
(still, ->target seems broken, but i'm not sure, since i couldn't test)
* tools/make_mdkinst_stage2, install_steps_gtk.pm, docs/README,
Makefile.config, mdk-stage1/disk.c, pkgs.pm, mdk-stage1/doc/TECH-INFOS,
share/po/Makefile, install_steps.pm, standalone/drakpxe,
Makefile.drakxtools, Makefile, mdk-stage1/config-stage1.h, lang.pm,
tools/Makefile, install2.pm, modules.pm, rescue/Makefile,
share/advertising/Makefile, mdk-stage1/network.c,
tools/i386/netboot/menu.lst.example, install_any.pm: 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
* fs/format.pm: fix typo
* detect_devices.pm: fix getCompaqSmartArray() on 2.6 (since
/proc/driver/cciss/cciss0 doesn't talk about c0dX anymore)
2004/07/26 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* ugtk2.pm: Redundant line.
2004/07/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/drakauth, authentication.pm, network/smb.pm: merge auth fixes
from HEAD
2004/07/26 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/be.po: small fix
2004/07/26 Pixel <pixel at mandrakesoft.com>
* tools/make_mdkinst_stage2, install_steps_gtk.pm, docs/README,
Makefile.config, mdk-stage1/disk.c, pkgs.pm, mdk-stage1/doc/TECH-INFOS,
share/po/Makefile, install_steps.pm, standalone/drakpxe,
Makefile.drakxtools, Makefile, mdk-stage1/config-stage1.h, lang.pm,
tools/Makefile, install2.pm, modules.pm, rescue/Makefile,
share/advertising/Makefile, mdk-stage1/network.c,
tools/i386/netboot/menu.lst.example, install_any.pm: 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
* fs/format.pm: fix typo
2004/07/23 fisher
* share/po/uk.po: Ukrainian translation update.
2004/07/23 Olivier Blin <oblin at mandrakesoft.com>
* standalone/drakconnect: remove useless $lan_button and $host_button in
old drakconnect
cosmetics (remove useless blanks at end of line)
prepare for network::tools::reread_net_conf removal
* network/network.pm: hey, I suck, that's DIAL_ON_IFUP, not DIAL_ON_BOOT
- 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
* network/adsl.pm: pptp connections are now handled by pppd (#6515)
* network/isdn.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
FIRMWARE isn't used by ifup-ippp
* network/netconnect.pm: hey, I suck, that's DIAL_ON_IFUP, not
DIAL_ON_BOOT
perl_checker compliance
one more FIXME comment
- 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 Pixel <pixel at mandrakesoft.com>
* fs.pm, fs/format.pm: replace pt_type2name($part->{pt_type}) with
part2name($part)
(hoisting the dereferencing {pt_type})
- 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
* diskdrake/hd_gtk.pm, install_any.pm: replace
pt_type2name($part->{pt_type}) with part2name($part)
(hoisting the dereferencing {pt_type})
* tools/mkhdlist: obsolete since 4 years
* partition_table.pm: replace pt_type2name($part->{pt_type}) with
part2name($part)
(hoisting the dereferencing {pt_type})
- simplify partition table entry names (based on fdisk's names)
- rename some internal variables
old dos is not useful anymore
simplify
* tools/updatehdlist: remove fpons only tool
* diskdrake/interactive.pm: replace pt_type2name($part->{pt_type}) with
part2name($part)
(hoisting the dereferencing {pt_type})
- 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
fix indentation
* loopback.pm, raid.pm, commands.pm, swap.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 Vincent Guardiola <vguardiola at mandrakesoft.com>
* authentication.pm: remove print coin and pwet in find_srv_name function
clean function find_srv_name
Add "net time set -S $server" to AD et SMBKRB config, for clock sync
(kerberos require)
2004/07/22 Olivier Blin <oblin at mandrakesoft.com>
* network/network.pm: rewrite read_tmdns_conf to use cat_
perl_checker/misc fixes
2004/07/22 Pixel <pixel at mandrakesoft.com>
* modules/any_conf.pm: perl_checker enhancement
add $Id
modules::modprobe_conf now works (at least a little :)
* fsedit.pm: shorter and faster
set {is_removable} directly in fsedit::hds()
* modules/modprobe_conf.pm, modules/modules_conf.pm: add $Id
modules::modprobe_conf now works (at least a little :)
* drakxtools.spec: need latest MDK::Common
* modules.pm: cleanup
modules::modprobe_conf now works (at least a little :)
* fs.pm: set {is_removable} directly in fsedit::hds()
* 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))
simplify
- re-indent
- use begins_with()
more cleanup
cleanup
isRemovableDrive() doesn't check isRemovableUsb() anymore allowing more
usb
removable drives (esp. some usb keys declared as memory cards (0x0c76
0x0005))
* network/network.pm: perl_checker compliance
- 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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone.pm (rename) only log succesfull renamings
* network/network.pm (read_tmdns_conf) unbreak oblin code
(read_tmdns_conf) reinsert parameter naming for parameter checking
* drakxtools.spec: bump drakconf conflict due to new drakconnect API
2004/07/21 Pixel <pixel at mandrakesoft.com>
* standalone/drakautoinst: perl_checker fixes
* standalone/drakboot, standalone/drakfloppy: remove unused variable
* standalone/draksec, standalone/drakpxe, network/smb.pm: perl_checker
compliance
* harddrake/autoconf.pm, standalone/service_harddrake: use
do_pkgs_standalone->new instead of class_discard
- %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
* 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...)
->{in}->do_pkgs gives the same kind of object, removing it
* standalone/XFdrake: XFdrake doesn't modify modules_conf! (or does it?)
* network/network.pm, install_steps.pm, network/isdn.pm,
install_steps_interactive.pm, network/netconnect.pm, mouse.pm,
install2.pm, modules/modprobe_conf.pm, harddrake/v4l.pm,
modules/interactive.pm, standalone/mousedrake, commands.pm,
printer/detect.pm, printer/main.pm, standalone/printerdrake,
harddrake/sound.pm, install_steps_auto_install.pm, network/ethernet.pm,
modules/any_conf.pm, standalone/drakconnect, modules/modules_conf.pm,
standalone/drakgw, harddrake/data.pm, network/adsl.pm,
detect_devices.pm, modules.pm, network/shorewall.pm, network/tools.pm,
Xconfig/default.pm, standalone/draksound, install_any.pm,
printer/printerdrake.pm, standalone/drakxtv:
- %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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* .perl_checker: blacklist URPM::Resolve
* standalone/drakauth: perl_checker fix
* lang.pm: fix xmodifiers setting which is broken since
perl-MDK-Common-1.1.13-1mdk
* drakxtools.spec: 10-57mdk
bump requires on perl-MDK-Common b/c of localedrake vs CJK issue
2004/07/21 Vincent Guardiola <vguardiola at mandrakesoft.com>
* authentication.pm: Add service smb et winbind restart in smbkrb config
2004/07/20 Olivier Blin <oblin at mandrakesoft.com>
* network/tools.pm: 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)
don't probe again connection type here since now
network::netconnect::load_conf does it as intended initially
* 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)
* network/netconnect.pm: fix perl_checker combo (yeah)
oops, fix suckiness
use read_net_conf to avoid code duplication
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)
unused variable
don't forget to send $netcnx to network::network::read_all_conf ...
(or else we won't get back the probed connection type)
* standalone/draksound: do not probe devices twice (and avoid to grep on
detect_devices::probeall()), cosmetics
* 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)
cosmetics
do not allocate new Gtk2::Gdk::GC at each redraw (last memory leak
fixed ?)
use the power of the Gtk2::Dialog widget, thus giving change_color()
more luck to succeed
translate connection type (Fabrice Facorat)
fix spacing (from Fabrice Facorat, #10300), remove blank line
* standalone/drakconnect: maxi perl_checker compliance combo
do not read conf in add_intf, this is already done by the netconnect
wizard
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 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
share/po/hr.po, share/po/translation_size.pl, share/po/be.po,
share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
share/po/pl.po, share/po/fi.po, share/po/he.po, share/po/ca.po,
share/po/da.po, share/po/ar.po, share/po/ltg.po, share/po/nb.po,
share/po/ky.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
share/po/ga.po, share/po/uk.po, share/po/mn.po, share/po/am.po, lang.pm,
share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
share/po/de.po, share/po/tl.po, share/po/validate.pl, share/po/eo.po,
share/po/bg.po, share/po/cs.po, share/po/el.po, share/po/uz@Latn.po:
changed MandrakeSoft -> Mandrakesoft
2004/07/20 Pixel <pixel at mandrakesoft.com>
* bootloader.pm: remove debugging code
* authentication.pm, install_steps_gtk.pm: perl_checker compliance
* mdk-stage1/dns.c, mdk-stage1/pcmcia_/cardmgr.c, standalone/drakfirewall,
share/advertising/pwp-02.pl, rescue/restore_ms_boot,
mdk-stage1/mkinitrd_helper/mkinitrd_helper.c, tools/genmodparm,
tools/gencryptofiles, rescue/tree/sbin/fakeshutdown, standalone/drakpxe,
mdk-stage1/config-stage1.h, standalone/drakvpn, standalone/drakboot,
standalone.pm, mdk-stage1/init-libc-headers.h, standalone/drakTermServ,
mdk-stage1/mar/mar-frontend.c, mdk-stage1/probing.h,
standalone/drakbackup, mdk-stage1/pcmcia_/probe.c,
mdk-stage1/insmod-busybox/insmod-frontend.c,
tools/serial_probe/serial_probe.c, mdk-stage1/disk.h,
mdk-stage1/modules.c, mdk-stage1/mount.c, standalone/printerdrake,
standalone/fileshareset, standalone/drakedm, mdk-stage1/modules.h,
share/advertising/dwd-01.pl, mdk-stage1/mar/mar.h,
share/advertising/dis-01.pl, standalone/drakhelp, standalone/XFdrake,
mdk-stage1/insmod.h, mdk-stage1/rp-pppoe/src/Makefile,
mdk-stage1/pcmcia_/pcmcia.h, standalone/drakupdate_fstab,
mdk-stage1/bzlib/Makefile, scanner.pm, mdk-stage1/Makefile.common,
mdk-stage1/stdio-frontend.c, standalone/drakproxy,
tools/ppc/mkINSTALLCD, share/advertising/dwd-06.pl,
mdk-stage1/rescue-gui.c, mdk-stage1/nfsmount.c, mdk-stage1/network.h,
mdk-stage1/doc/README, mdk-stage1/log.h, standalone/drakfloppy,
mdk-stage1/newt/Makefile, standalone/drakfont,
mdk-stage1/newt-frontend.c, share/advertising/ppp-01.pl,
rescue/tree/etc/profile, share/advertising/dis-09.pl,
mdk-stage1/network.c, mdk-stage1/disk.c, rescue/guessmounts,
mdk-stage1/url.c, standalone/logdrake, mdk-stage1/automatic.h,
mdk-stage1/frontend.h, mdk-stage1/insmod-modutils/insmod-frontend.c,
rescue/lsparts, mdk-stage1/usb-resource/Makefile, mdk-stage1/url.h,
mdk-stage1/probing.c, mdk-stage1/mar/mar-extract-only.h,
mdk-stage1/cdrom.c, mouse.pm, mdk-stage1/lomount.h, mdk-stage1/dhcp.h,
standalone/net_monitor, mdk-stage1/stage1.c, diskdrake/diskdrake.html,
mdk-stage1/dhcp.c, mdk-stage1/init.c, mdk-stage1/pci-resource/Makefile,
mdk-stage1/mkinitrd_helper/Makefile, install2, mdk-stage1/Makefile,
rescue/install_bootloader, mdk-stage1/lomount.c, mdk-stage1/adsl.h,
share/advertising/ppp-09.pl, mdk-stage1/adsl.c, mdk-stage1/dns.h,
mdk-stage1/automatic.c, mdk-stage1/mar/mar-extract-only.c,
standalone/drakconnect, tools/shift_img.c, standalone/drakbug,
tools/make_lang_png_transparent.c, mdk-stage1/frontend-common.c,
standalone/draksound, standalone/drakxtv, mdk-stage1/tools.h,
share/compssUsers.server, mdk-stage1/slang/Makefile,
mdk-stage1/minilibc.h, standalone/drakautoinst, mdk-stage1/cdrom.h,
mdk-stage1/Makefile.mkinitrd_helper, mdk-stage1/stage1.h,
standalone/diskdrake, mdk-stage1/doc/documented..frontend.h,
mdk-stage1/mount.h, mdk-stage1/directory.c, rescue/drvinst,
mdk-stage1/mar/Makefile, mdk-stage1/directory.h, mdk-stage1/log.c,
install_messages.pm, mdk-stage1/modules_descr.h, standalone/drakgw,
mdk-stage1/pcmcia_/Makefile, mdk-stage1/tools.c,
share/advertising/pwp-01.pl, tools/syncrpms,
share/advertising/pwp-08.pl, mdk-stage1/ppp/pppd/Makefile,
standalone/scannerdrake, mdk-stage1/minilibc.c: MandrakeSoft ->
Mandrakesoft
* share/list: adapt to file renaming
2004/07/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
* authentication.pm: better looking wizard
* lang.pm (write) better check parameter rather than EUID
(write) do not bother trying to write /etc/menu-methods/lang.h when
run as a user
* standalone/drakauth: better looking wizard
put help out of the radiobutton
2004/07/20 Vincent Guardiola <vguardiola at mandrakesoft.com>
* authentication.pm: remove ask_warn winbind or SFU and add new entry in
kinds
Add desciption for authentification type
Add Entry for IDMAP
clean code
* standalone/drakauth: Add type => 'list' in ask_from
2004/07/20 Pixel <pixel at mandrakesoft.com>
* share/list: adapt to file renaming
* bootloader.pm: remove debugging code
2004/07/20 Vincent Guardiola <vguardiola at mandrakesoft.com>
* authentication.pm: clean code
2004/07/19 Olivier Blin <oblin at mandrakesoft.com>
* standalone/net_monitor: use run_program, try to handle default interface
better
disable the connect button if up interface is found (there is
currently no reliable way to find the gateway interface)
code factorization, do not use system() but fork() and exec() since we
don't
want to wait the command to return
perl_checker compliance
use ifup/ifdown to connect/disconnect
no need to be root to monitor connection
* network/netconnect.pm: use hotplug blacklist for adsl connections too
* network/network.pm: do not write wireless encryption key if empty
* network/tools.pm: make the tcp ping actually work
2004/07/19 Pixel <pixel at mandrakesoft.com>
* install_steps.pm: don't bootloader::suggest_floppy
* bootloader.pm: don't bootloader::suggest_floppy
don't unset prompt when timeout is undefined (and don't care when
timeout is 0)
* pkgs.pm: perl_checker compliance
add multimedia kernel in analyse_kernel_name
* tools/hd_grub.cgi, docs/README, rescue/rescue-doc,
rescue/tree/etc/issue, rescue/lsparts, docs/HACKING,
mdk-stage1/doc/README: replace "Mandrake Linux" with "Mandrakelinux"
* standalone/bootloader-config: also add long name when adding add short
name
2004/07/19 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10-56mdk
fix changelog
merge changelog from the real update
* share/po/br.po: update
* standalone/net_monitor: unsensitive buttons immediatly once ifup/isdown
has completed
2004/07/19 Vincent Guardiola <vguardiola at mandrakesoft.com>
* authentication.pm: modify nss_path one to sub
config winbind for AD
* network/smb.pm: Add function write_smb_ads_conf
2004/07/18 Pixel <pixel at mandrakesoft.com>
* bootloader.pm: save the previous bootloader config file (bugzilla
#10072)
2004/07/17 Daouda Lo <daouda at mandrakesoft.com>
* pam.net_monitor, drakxtools.spec, apps.net_monitor, Makefile: remove
historical consolehelper files (pam.d and console.apps)
2004/07/16 Olivier Blin <oblin at mandrakesoft.com>
* network/tools.pm: use a tcp ping in check_link_beat if not root
* wizards.pm: do not ask to install already installed packages, prefer to
install
uninstalled packages (misc)
* install_steps_gtk.pm: fix predicted time when there is an error
installing packages
2004/07/15 Olivier Blin <oblin at mandrakesoft.com>
* standalone/net_monitor: add a border spacing of 5 pixel (fix #10299,
from Fabrice Facorat)
* drakxtools.spec: 10-54mdk
2004/07/15 Pixel <pixel at mandrakesoft.com>
* fsedit.pm: change_pt_type() must return a boolean value
* 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
* bootloader.pm: make_boot_splash is no good since the same initrd is used
with or without vga=,
so call add_boot_splash directly
alt_xxx instead of old_xxx for bootloader labels (as suggested by
Svetoslav Slavtchev on cooker)
* diskdrake/interactive.pm: encryption key length can now be lower than
20, allowing >= 6
2004/07/14 Olivier Blin <oblin at mandrakesoft.com>
* install_steps_interactive.pm: to_bool is what I was looking for, thanks
Pixel
perl_checker fix, I should have done it before ...
automatically detect which media are available in install from ISO
images
* install_any.pm: remove unneeded return
automatically detect which media are available in install from ISO
images
* standalone/drakboot: use bootloader and Xconfig instead of
detect-resolution
2004/07/13 Olivier Blin <oblin at mandrakesoft.com>
* mdk-stage1/network.c: umount nfs directory if an error occurs too
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
* standalone/net_applet: apply Pixel's suggestion, use //m instead of
foreach
* mdk-stage1/directory.c: don't forget to umount ISO images
it is again stupid to use a ramdisk if the install location isn't
mounted by loopback
2004/07/13 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/bn.po, share/po/fur.po: Added Bengali and Furlan files
2004/07/13 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
* pkgs.pm: Some factorization. Protection against /var/lib/urpmi being a
dangling symlink (see bug #9934)
2004/07/13 Warly <warly at mandrakesoft.com>
* share/logo-mandrake.png: cooker logo
2004/07/12 Fabian Mandelbaum <fabman at 2vias.com.ar>
* share/po/es.po: Updated Spanish translations
2004/07/12 Olivier Blin <oblin at mandrakesoft.com>
* standalone/net_applet: perl_checker fixes
add a "monitor network" menu item that launches net_monitor
use drakconnect to configure network
use 'ip route show' to find the gateway device when no GATEWAYDEV is
defined
2004/07/12 Pixel <pixel at mandrakesoft.com>
* bootloader.pm (sort_hds_according_to_bios): when installing on floppy,
$boot_hd is undefined, but that's ok (bugzilla #10260)
* authentication.pm:
- add "Active Directory" through winbind (it needs more stuff to work)
- drop using $val, use directly $authentication->{XXX}
2004/07/09 Pixel <pixel at mandrakesoft.com>
* lang.pm: replace lang::get_unneeded_png_lang_files() with
lang::png_lang_files
* share/list: unicore/PVA.pl is needed
- adapt to new perl
- use "*" instead of PERL_VERSION to be more versatile
* rescue/make_rescue_img, rescue/list: use "*" instead of PERL_VERSION in
list, but ensure only one match
* install_steps.pm: fix commit 1.685: use lang::analyse_locale_name() but
still use lang::l2locale()
* Makefile: replace lang::get_unneeded_png_lang_files() with
lang::png_lang_files
ensure "*" to wildcard a directory in share/list match only once
* tools/Makefile: ask perl where to find package.pm and URPM.pm, this is
more versatile than using installvendorlib
* install2.pm: fix mounting /sys (why did i switch to using syscall_
'mount' directly? and with missing parameters!)
* any.pm: add "ls -l /sys/bus/scsi/devices" in report.bug
(it helps for debugging getSCSI on 2.6)
2004/07/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
* tools/cvslog2changelog.pl: sort
add Robert Vojta
2004/07/09 Pixel <pixel at mandrakesoft.com>
* install2.pm: fix mounting /sys (why did i switch to using syscall_
'mount' directly? and with missing parameters!)
* any.pm: add "ls -l /sys/bus/scsi/devices" in report.bug
(it helps for debugging getSCSI on 2.6)
2004/07/08 keld
* 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 Pixel <pixel at mandrakesoft.com>
* modules.pm: handle s/snd-card/snd/g and
s/snd-via686|snd-via8233/snd-via82xx/g more generically
in mergein_conf(), get the "above" value, and don't dirty "probeall"
rename load_raw() to load_raw_install() and change the prototype
cleanup
- 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()
fix previous commit
- generalize the snd-pcm-oss case
- cleanup
- rename add_alias() into set_alias()
- create set_sound_slot() and use it
don't remove "above ... snd-pcm-oss" for the old alias, it's better done
explictly, and already done by remove_module()
* install_steps_interactive.pm:
- create X_options_from_o() and use it
- add freeDriver boot option
when adding users during install, suggest the user names found in /home
* Xconfig/card.pm, install2.pm, install_steps.pm, install_any.pm:
- create X_options_from_o() and use it
- add freeDriver boot option
* lang.pm: merge with MDK-10-update Move changes
* any.pm: fix typo
merge "language choice dialog" from MDK-10-update
selectCountry doesn't really need a $o, a $in is enough
when adding users during install, suggest the user names found in /home
* network/adsl.pm, harddrake/sound.pm, detect_devices.pm,
network/ethernet.pm:
- rename add_alias() into set_alias()
- create set_sound_slot() and use it
* standalone/adduserdrake: when adding users during install, suggest the
user names found in /home
2004/07/08 rvojta
* standalone/drakedm:
- typo fix (lost -> lose)
2004/07/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
* tools/cvslog2changelog.pl: add vincent
* drakxtools.spec: 10-53mdk final
* standalone/drakedm: warn the user before dm exit will kill the session
(Robert Vojta, #10179)
2004/07/07 Pixel <pixel at mandrakesoft.com>
* mouse.pm: fix comment
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
* install_steps.pm, install_steps_interactive.pm, install_any.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()
* modules.pm: fix indentation
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
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
remove non-useful prototypes ($)
use the module category to decide if it needs alias usb-interface or
alias ieee1394-controller
fix typo
- 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
- 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()
create write_preload_conf()
* standalone/XFdrake: 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
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
* standalone/printerdrake, standalone/service_harddrake,
network/ethernet.pm, harddrake/data.pm, network/netconnect.pm,
install2.pm, modules/interactive.pm, standalone/mousedrake,
standalone/draksound, standalone/drakxtv: 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 Stew Benedict <sbenedict at mandrakesoft.com>
* standalone/drakbackup: Merge fixes from Anthill 927, 929.
(filenames with spaces, .backupignore, gui behavior)
Merge fixes from Anthill 927, 929
(filenames with spaces, .backupignore, gui issues)
2004/07/06 Olivier Blin <oblin at mandrakesoft.com>
* standalone/drakboot: update bootsplash even if framebuffer was disabled
* mdk-stage1/config-stage1.h: add missing slash in Mandrake Move image
location
2004/07/06 Pixel <pixel at mandrakesoft.com>
* mdk-stage1/config-stage1.h: fix blino fix
doing basename is dumb (is blino too?), really make the symlink relative
* 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
* standalone/bootloader-config: fix typo
- nicer "usage: ..."
- add actions "add-entry" and "remove-entry"
- add option --label
- add option --chainload
- rename --vmlinuz to --image
* bootloader.pm: remove unneeded spaces in append=" foo"
write_lilo handles "optional"
rename var
cleanup
cleanup
* mdk-stage1/directory.c: doing basename is dumb (is blino too?), really
make the symlink relative
* Xconfig/xfree.pm: add 1024x480 (part of bugzilla #5192)
* Xconfig/resolution_and_depth.pm: rename function $set_chosen_x_res to
$set_chosen_resolution (since it sets both)
(choose_gtk): ensure default height is the chosen one
2004/07/06 Thierry Vignaud <tvignaud at mandrakesoft.com>
* c/stuff.xs.pl: workaround blind gwenole
workaround build with new kernels
* standalone/service_harddrake: high level explanation
* drakxtools.spec: 10-53mdk
2004/07/06 Pixel <pixel at mandrakesoft.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
* mdk-stage1/config-stage1.h, mdk-stage1/directory.c: doing basename is
dumb (is blino too?), really make the symlink relative
2004/07/06 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/service_harddrake: high level explanation
2004/07/05 jjorge
* share/po/pt.po: rush to beta one man
2004/07/05 Olivier Blin <oblin at mandrakesoft.com>
* mdk-stage1/network.c: properly handle error return code in nfs install
* install_any.pm: allow medium change in nfs-iso install
* standalone/net_monitor: try to use $default_intf (and fix the last
perl_checker warning, yeah)
perl_checker compliance
rename $echr and $echt to $scale_r and $scale_t
remove unused variable $type
2004/07/05 Pixel <pixel at mandrakesoft.com>
* log.pm: use $LOG instead of *LOG
* standalone/draksec: fix #-PO: comment
* install_steps.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
allow getpwnam, getgrnam, getgrid to work
* any.pm, partition_table/mac.pm, partition_table/bsd.pm,
partition_table/dos.pm, diskdrake/removable.pm, partition_table/sun.pm,
partition_table/gpt.pm, install_steps_interactive.pm, network/smbnfs.pm,
diskdrake/dav.pm, diskdrake/hd_gtk.pm, lvm.pm, raid.pm,
install_interactive.pm, install_any.pm, partition_table/raw.pm,
partition_table.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
* drakxtools.spec: drakxtools-backend needs ldetect-lst (for
complete_usb_storage_info())
* fsedit.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
create rationalize_options() and use it (bugzilla #3525)
more checks should be done in this function, and used at more places
(but where?)
* bootloader.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
drop "other" entries in grub conf when the device is unknown
- handle missing root=/dev/xxx kernel commandline parameter
- handle grub splashimage option
oops, revert debugging code
* standalone/bootloader-config: drop --no-link option (already replaced by
--no-short-name)
- 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)
* fs.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
create rationalize_options() and use it (bugzilla #3525)
more checks should be done in this function, and used at more places
(but where?)
don't set {major} and {minor} to 0 when the device doesn't exist
* diskdrake/interactive.pm: fix function call
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/03 jjorge
* share/po/pt.po: saraiva esta rapido ;-)
2004/07/03 Pixel <pixel at mandrakesoft.com>
* bootloader.pm: fix typo
2004/07/02 fisher
* share/po/uk.po: Ukrainian translation update.
2004/07/02 Olivier Blin <oblin at mandrakesoft.com>
* network/adsl.pm: remove spurious '"pty ', I suck
pptp support (partial fix for #6515)
2004/07/02 Pixel <pixel at mandrakesoft.com>
* drakxtools.spec: ensure proper upgrade: explictly tell urpmi that old
drakxtools-newt conflicts with drakxtools-backend
* authentication.pm: cleanup
2004/07/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
* drakxtools.spec: 10-52mdk
* lang.pm: switch to new japanese fonts (UTUMI Hirosi
<utuhiro78@yahoo.co.jp>)
(write) let be aware of install mode
(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/02 vguardiola
* authentication.pm: Add anonymous bind
remove anonymous entry
add libsasl2-plug-gssapi when AD is selected
Change SSL/TLS to SSL or TLS
add uc_domain to realm section in /etc/krb5.conf
padbol
2004/07/01 Olivier Blin <oblin at mandrakesoft.com>
* any.pm: add fluxbox in known window managers list
* mdk-stage1/network.c: rephrase previous patch, with correct indentation
this time
add a slash at beginning of the given directory if not already present
(ftp and http install)
2004/07/01 Pixel <pixel at mandrakesoft.com>
* lang.pm: default consolefont is lat0-16, no more lat0-sun16
* authentication.pm, bootloader.pm: fix typo
* standalone/draksplash, standalone/printerdrake, standalone/logdrake,
standalone/draksec, standalone/drakfloppy, standalone/drakfont,
standalone/drakbug, standalone/drakperm, standalone/harddrake2,
standalone/drakTermServ, standalone/net_monitor, standalone/drakclock,
standalone/drakups: revert ugly code printing "This program cannot be
run in console mode",
it is easily done in ugtk2.pm
* Xconfig/xfree.pm: fix typo causing multiple "Keyboard" entries in
XF86Config (bugzilla #10163)
* drakxtools.spec: create package drakxtools-backend
* mdk-stage1/modules.c, 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 Thierry Vignaud <tvignaud at mandrakesoft.com>
* network/netconnect.pm, standalone/harddrake2: typo fix
* drakxtools.spec: add bug reference
10-50mdk
2004/06/30 fisher
* share/po/uk.po: Ukrainian translation update
Sync'ed with .pot
2004/06/30 fwang
* share/po/zh_CN.po: update
2004/06/30 Olivier Blin <oblin at mandrakesoft.com>
* standalone/net_monitor: try to display arrows closely to transmission
values
always draw an arrow next to transmitted amount
always display a speed label for transmitted graph
allow the user to use different scales for received and transmitted
prepare code to use distinct scales for received and transmitted
remove most magic numbers, prefer usage of $width and $height
2004/06/30 Pixel <pixel at mandrakesoft.com>
* ugtk2.pm: use print + exit instead of die
(so that standalone tools don't need to do it by hand)
* standalone/bootloader-config: when doing update_splash or remove_splash,
call when_config_changed (mainly for lilo)
please perl_checker
* network/smb.pm: shut up "smbclient -L"
* authentication.pm: for Active Directory, allow: Kerberos, SSL/TLS,
simple and anonymous
2004/06/30 Thierry Vignaud <tvignaud at mandrakesoft.com>
* standalone/drakfloppy (build_it) add translator hint
* standalone/net_monitor: fix button layout
2004/06/29 fisher
* share/po/uk.po: translation update
2004/06/29 Olivier Blin <oblin at mandrakesoft.com>
* mdk-stage1/network.c: properly handle "back" behavior in mirror list
step
do not unset automatic if mirror list selection fails, we know it wasn't
automatic at that point
remove http proxy settings from interface structure, that was really
dumb
allow to use a specific ACNAME for pppoe connections
* 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)
* fs.pm: 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)
do not add default device in device hash, it will be filled with result
from fs::subpart_from_wild_device_name
always update $part{device} in fs::subpart_from_wild_device_name because
/dev is stripped (fix #6982, #10175)
* mdk-stage1/tools.c, mdk-stage1/directory.c, mdk-stage1/probing.c:
variable declaration fixes (spotted by neofutur)
* mdk-stage1/network.h: remove http proxy settings from interface
structure, that was really dumb
allow to use a specific ACNAME for pppoe connections
* mdk-stage1/adsl.c: allow to use a specific ACNAME for pppoe connections
2004/06/29 Pablo Saratxaga <pablo at mandrakesoft.com>
* share/po/uz.po, share/po/et.po, share/po/uz@Latn.po: updated Estonian
and Uzbek files
2004/06/29 Pixel <pixel at mandrakesoft.com>
* fsedit.pm: in is_same_hd(), both hds can have {device} unset, it doesn't
mean they are the same
* 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
* Makefile: add missing share/net_monitor.desktop
* 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()
* Makefile.config, standalone/bootloader-config: add bootloader-config
(tested for adding and removing in simple cases)
* .perl_checker: add "Getopt::Long" (used by bootloader-config)
2004/06/28 Pixel <pixel at mandrakesoft.com>
* share/rpmsrate: fix titi's regexp for matching centrino
* any.pm: don't set ICEAUTHORITY using $ENV{HOME} for kde (bugzilla
#10144)
* bootloader.pm: after install, when modifying kernel parameters in all
entries, skip the "failsafe" entry
(bugzilla #10143)
* ugtk2.pm: make perl_checker a little more happy
catch missing wizard pixmap, otherwise we end up with WizardWindow being
non
shown and error messages can't pop up
disallow switching to expert mode using Alt-e
2004/06/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
* c/Makefile.PL: drop useless linkage since X11 stuff was split out of c
module
2004/06/25 Olivier Blin <oblin at mandrakesoft.com>
* mdk-stage1/directory.c: fix typo
do not use ramdisk in nfs install
add missing include for basename()
use relative symlink to image location in disk/nfs install, to have a
working stage2
2004/06/25 Pixel <pixel at mandrakesoft.com>
* install2.pm: remove deprecated rhimage symlink
* bootloader.pm: when adding a new kernel, have a nicer new name for
conflicting entry