summaryrefslogtreecommitdiffstats
path: root/perl-install/any.pm
Commit message (Collapse)AuthorAgeFilesLines
* (ask_user_and_root) refresh "user management" step by right aligning most ↵Thierry Vignaud2008-08-271-7/+10
| | | | widgets
* (ask_user_and_root) move icon at topThierry Vignaud2008-08-271-3/+3
|
* change prototype of any::create_user(), authentication::user_crypted_passwd(),Pascal Rigaux2008-08-221-3/+3
| | | | | | | authentication::write_passwd_user(): pass $authentication instead of $isMD5 (for next commits)
* (acceptLicense) align license question to the rightThierry Vignaud2008-08-221-2/+3
|
* (acceptLicense,selectKeyboard) render some message titles as blueThierry Vignaud2008-08-221-1/+1
|
* (acceptLicense) do not use all horizontal space for "release notes" buttonThierry Vignaud2008-08-221-1/+1
|
* - install lilo when needed (#39878)Pascal Rigaux2008-08-221-0/+1
|
* create any::install_bootloader_pkgs() as a simple wrapper aroundPascal Rigaux2008-08-221-1/+7
| | | | | | | install_acpi_pkgs() (needed for next commit)
* (selectLanguage_install,selectLanguage_standalone) remove ending point on ↵Thierry Vignaud2008-08-201-2/+2
| | | | fred request
* (get_release_notes_button,acceptLicense) move "release notes" buttonThierry Vignaud2008-08-201-12/+4
| | | | | according to specs
* (acceptLicense) reindentThierry Vignaud2008-08-201-1/+2
|
* (display_release_notes) explicitely pop up (needed for next commits)Thierry Vignaud2008-08-201-1/+1
|
* (ask_fromW,display_release_notes) stop reducing help & release notes ↵Thierry Vignaud2008-08-191-2/+0
| | | | dialogs' size
* (acceptLicense,get_release_notes_button) (- use new style popup buttonThierry Vignaud2008-08-191-1/+11
| | | | | for 'release notes' button too
* (acceptLicense) add 'Do you accept this license' questionThierry Vignaud2008-08-181-1/+4
|
* (selectLanguage_install) display a more precise title Thierry Vignaud2008-08-181-1/+1
|
* (selectLanguage_install) remove messageThierry Vignaud2008-08-181-1/+1
|
* default to UTF-8 for chinese simplified (#42137)Thierry Vignaud2008-08-121-1/+1
|
* stop set icons for bannersThierry Vignaud2008-07-241-7/+0
|
* fix reading and setting kdmrc (by resolving alternative in chroot)Olivier Blin2008-07-101-3/+2
|
* default to KDE4 (instead of KDE) if kdm config exists when reading autologin ↵Olivier Blin2008-07-091-1/+1
| | | | configuration
* update autologin file path for kdm4Olivier Blin2008-07-091-2/+3
|
* detect KDE4 when configuring autologinOlivier Blin2008-07-041-3/+4
|
* - use UUID for resume= kernel parameterPascal Rigaux2008-06-021-1/+1
|
* fix computing time according to timezone in local/UTC dialogOlivier Blin2008-03-281-1/+2
| | | | | (by using zoneinfo files from the installed prefix)
* use documented format of TZ variableOlivier Blin2008-03-281-1/+1
|
* create reboot() out of acceptLicense()Pascal Rigaux2008-03-281-8/+13
|
* - when skipping bootloader installation, correctly say "None" in summary Pascal Rigaux2008-03-211-3/+5
| | | | | | | | (#39101) for this, setting $bootloader->{boot} to '', it's simple enough and seems to work nicely :)
* ensure $locale->{country} and $locale->{IM} are set correctly even ifPascal Rigaux2008-03-211-0/+1
| | | | | | | $locale->{country} was already set (because of lang=xxx on /proc/cmdline, $locale->{country} is already set and install::steps::selectLanguage won't do it, and that's normal)
* - add Xorg.0.log to report.bug.gz (to help diagnose why X failed)Pascal Rigaux2008-03-201-0/+1
|
* - ask which drive to install bootloader if we don't really know which is firstPascal Rigaux2008-03-201-6/+7
| | | | | bios drive (cf #38829)
* allow to hide ntp in advanced settingsOlivier Blin2008-03-191-5/+6
|
* split out configure_time_more (for next commit)Olivier Blin2008-03-191-1/+10
|
* partially revert previous commit (since there will be no "next commit" on ↵Pascal Rigaux2008-03-191-6/+2
| | | | setupBootloader__boot_bios_drive)
* create _ask_boot_bios_drive() out of setupBootloader__boot_bios_drive()Pascal Rigaux2008-03-191-5/+14
| | | | | (ie prepare for next commit)
* add missing spaceOlivier Blin2008-03-191-1/+1
|
* do not unconfigure timezone if timezone screen is canceled (#33565)Olivier Blin2008-03-191-1/+2
|
* - adduserdrake:Pascal Rigaux2008-03-181-0/+4
| | | | | o display kdm/gdm icon again (was disabled on year ago)
* - diskdrake --fileshare:Pascal Rigaux2008-01-281-1/+1
| | | | | o adapt to nfs-utils service rename (nfs-server instead of nfs)
* - drakboot:Pascal Rigaux2008-01-171-2/+3
| | | | | o fix handling root=UUID=xxx when modifying a bootloader entry (#36788)
* - localedrake, drakx-finish-install:Pascal Rigaux2008-01-141-3/+4
| | | | | | | | | | | | | o fix proposing Belgium when lang is "nl" and locales-fr is not installed (same for Canada with lang "fr" and locales-en not installed) (#36413) nb: - removed restricting countries to installed locales in list_countries(), since c2locale is wrong for countries like CA or BE which have more than one lang - country_to_locales() is replaced with countries_to_locales() to avoid redoing the same computation all the time
* - do not sort languages in "choose language" step in graphical mode, since thePascal Rigaux2008-01-111-1/+1
| | | | | | sort is done on the non-translated strings (eg: we display "Espanol" but we sort on Spanish )
* simplify (sort should not be used together with separator, since tree isPascal Rigaux2007-12-071-1/+1
| | | | | always sorted. text-mode flat list is also sorted by default)
* (selectLanguage_install) ensure langs are sorted in text modeThierry Vignaud2007-12-061-1/+1
|
* - localedrake:Pascal Rigaux2007-11-301-1/+1
| | | | | o restrict the proposed input-methods for each language
* drakclock/finish-install: disable DPMS and screensaver when setting time not ↵Olivier Blin2007-10-231-0/+11
| | | | to blank monitor (#17031)
* - localedrake:Pascal Rigaux2007-10-151-1/+3
| | | | | | | | o do propose "Suisse" after selecting french language (#34675) nb: it was not selected because CH is associated to de_CH whereas it also exists fr_CH. hence country_to_locales()
* simplify (for next commit)Pascal Rigaux2007-10-151-2/+1
|
* (display_release_notes) fix release notes window size in !install modeThierry Vignaud2007-10-051-1/+1
|
* - diskdrake --filesharePascal Rigaux2007-10-041-0/+3
| | | | | o install nautilus-filesharing if nautilus is installed (#34262)