summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakboot
Commit message (Collapse)AuthorAgeFilesLines
...
* - offer to configure bootsplash only on --splashThierry Vignaud2004-01-141-16/+16
| | | | | | | - drop useless frames - set main window title according to current mode (autologin, bootloader or bootsplash)
* clean splash management codeFlorent Villard2004-01-141-123/+48
|
* sanitize buttons through reusing create_okcancel()Thierry Vignaud2004-01-131-4/+5
|
* fix drakboot --boot embeddingThierry Vignaud2004-01-091-1/+0
|
* kill unused variableThierry Vignaud2004-01-061-2/+0
|
* split drakboot into bootloader and autologin configurationThierry Vignaud2004-01-051-18/+1
|
* fix button layout when embedded: pack buttons box at bottomThierry Vignaud2003-12-191-6/+7
|
* fix text layout by wrapping textThierry Vignaud2003-12-161-1/+1
|
* ensure update_bootloader_label() won't break when called in text interactivePascal Rigaux2003-09-181-1/+1
| | | | | (hint: in that case, $boot_label is unset)
* fix default size without draksplashThierry Vignaud2003-09-091-2/+5
|
* typo fixDamien Chaumette2003-08-271-1/+1
|
* fix drakboot always showing advanced stuff even when --expert was notThierry Vignaud2003-08-251-2/+0
| | | | | passed
* some english typo fixes thx to Arpad BiroGuillaume Cottenceau2003-08-131-1/+1
|
* remove stock icons (per IHM team request)Pascal Rigaux2003-08-051-2/+2
|
* hide splash screen section for now on ihm team requestThierry Vignaud2003-07-241-1/+2
|
* we do not need anymore autologin (spec87)Thierry Vignaud2003-07-231-1/+0
|
* - grey theme config instead of hiding itThierry Vignaud2003-07-151-8/+16
| | | | | | - use option menus instead of combos - describe user and desktop lists
* sanitize button layouts:Thierry Vignaud2003-07-141-2/+2
| | | | | | | - use stock items everywhere - use ButtonBoxes everywhere - pack buttons always in the same order and places
* use stock items in main windowThierry Vignaud2003-07-101-2/+2
|
* switch from gtk2-perl to gtk2-perl-xsThierry Vignaud2003-07-091-3/+2
|
* perl_checker fixesThierry Vignaud2003-05-231-17/+17
|
* we already have fork()+exec() detect_loader, so there's no need to doThierry Vignaud2003-05-211-1/+1
| | | | | it again
* fix #3560 (drakboot not updating bootloader label): the only confusingThierry Vignaud2003-05-191-3/+11
| | | | | | | | | | | bug is that when one come back to drakboot main window after having altered the bootloader, the main window still list the old bootloader as the current bootloader. let update this label. btw consolidate bootloader detection in bootloader::detect_bootloader()
* let ugtk2->new manage the title settingThierry Vignaud2003-05-131-3/+2
|
* - pass enough dummy parameters to fs::merge_info_from_fstabThierry Vignaud2003-05-121-3/+3
| | | | | | - add empty prototypes to help perl_checker catch miss writeen func calls
* - do not log localized messages; what's more, this is supposed to beThierry Vignaud2003-05-121-10/+5
| | | | | | | | | already logged by standalone - in testing mode: o do not enforce the need for bootsplash o do not really run mkinitrd - if bootsplash miss, we should just go back to main config window
* no doble module loadingThierry Vignaud2003-04-291-1/+0
|
* any::setupBootloader() already call bootloader::install()Thierry Vignaud2003-04-101-6/+3
|
* fix #2826 (aka pixel sucks):Thierry Vignaud2003-04-071-7/+7
| | | | | | | | | | pixel changed the booloader module api by throwing an exception instead of using the ugly /tmp/.error temporary file and altered drakx callers but forget to update standalone/* callers (aka drakboot). now, with this patch, any error during lilo/grub installation is catched and displayed, which is more generic than checking for spaces.
* fix lilo-menu not working (bug #3048)Pascal Rigaux2003-03-111-2/+0
|
* remove debuging assertions (as spoted by gc)Thierry Vignaud2003-03-041-2/+2
|
* - fix #2091 and #2480 (settings restorationThierry Vignaud2003-03-031-3/+9
| | | | | - make dialogs be modal
* reflect in standalone drakxtools the removal of DrakX iconsGuillaume Cottenceau2003-02-281-1/+1
|
* - disable autologin settings when autologin is disabledThierry Vignaud2003-02-271-7/+12
| | | | | | - make embedded app look better - add vertical separators
* - kill used once only bootlook moduleThierry Vignaud2003-02-261-12/+309
| | | | | | | | - inline oneliners use only once - kill unused variables - strict pragma fixes - ...
* - clean up embedding; since socket get automatically destroyed on child exitThierry Vignaud2003-02-241-3/+1
| | | | | | | | | | and since they emit plug-removed at that moment, it's just cleaner to centralize/consolidate the child exit in mcc this of course, need a newer up-to-date mcc what's more, it allows to remove the somewhat mythical "$::isEmbedded and kill 'USR1', $::CCPID;" - drakautoinst, drakxservices, keyboardrake: fix fscking embedding managment
* make perl_checker happyPascal Rigaux2003-02-131-2/+1
|
* - standalone.pm :Thierry Vignaud2002-11-181-7/+0
| | | | | | | | | | | o make it be 'use strict' aware o factorize options managment in one place - standalone tools : o they all now support -h|--help -v|--version, ... o they can add their own options to %standalone::usages - harddrake : use std --testing/$::testing rather than its own --test option
* replace "_" with "N" and "__" with "N_"Pascal Rigaux2002-11-061-1/+1
| | | | | | | | | | | | | | | | | | | rationale: - currently, we use _("xxx") as a shorthand for gettext("xxx"). It also used to call xgettext with --keyword=_ - alas, function &_ is global and not by package (notice esp. that _ is not exported in common.pm) - this lead to big ugly pb with packages defining their own &_, overriding common.pm's &_ - a fix is to set @::textdomains to add a new domain (the default being "libDrakX") but relying on the global "_" is still dangerous!
* use the new fsedit::get_hdsPascal Rigaux2002-08-271-1/+1
|
* replace "kill USR1" with "kill 'USR1'" (and same for USR2)Pascal Rigaux2002-08-051-1/+1
| | | | | (so that 'use strict' works)
* a few more fixes (thanks Jure Repinc & Richard Burt)Pascal Rigaux2002-08-051-3/+2
|
* minor bugfix in calling bootloader::readJonathan Gotti2002-08-021-1/+2
|
* Handle parsing --embedded command line in standalone.pmPascal Rigaux2002-07-311-1/+0
| | | | | | => allows to remove the somewhat mythical $::isEmbedded = ($::XID, $::CCPID) = "@ARGV" =~ /--embedded (\w+) (\w+)/
* - Big Move 1: interactive::* hierarchyThierry Vignaud2002-07-231-1/+1
|
* fix Stew sucksPascal Rigaux2002-03-111-1/+1
|
* i18n changesPablo Saratxaga2002-03-071-2/+1
|
* drakboot functionality for PPCStew Benedict2002-03-071-3/+5
|
* add --testingPascal Rigaux2002-02-251-1/+2
|
* fix yves's code duplication of lilo_choice (use $::lilo_choice in bootlook)Pascal Rigaux2002-01-221-9/+14
|