summaryrefslogtreecommitdiffstats
path: root/perl-install/harddrake/ui.pm
Commit message (Collapse)AuthorAgeFilesLines
* kill "used by only one" harddrake::ui module,Mystery Man 5802002-12-041-307/+0
| | | | | move its content to standalone/harddrake2
* cleanupsMystery Man 5802002-12-041-10/+5
|
* hide config buttons when switching from a configurable device to a nonMystery Man 5802002-12-041-4/+11
| | | | | configurable one
* fix gtktext_insert() usageMystery Man 5802002-12-041-23/+24
|
* gtk+2 port, yeah baby :-)Mystery Man 5802002-12-041-100/+103
|
* perl_checker adaptationsPascal Rigaux2002-11-281-1/+1
|
* perl_checker adaptationsPascal Rigaux2002-11-271-25/+25
|
* interactive->exit call my_gtk->exit which destroy the windowThierry Vignaud2002-11-251-1/+0
|
* hide the "please wait" at the latest stageThierry Vignaud2002-11-201-3/+3
|
* - remove debugging codeThierry Vignaud2002-11-191-4/+3
| | | | | - document menu building
* - add option menu check boxes to prevent (slowly) detectingThierry Vignaud2002-11-191-9/+15
| | | | | | printers and modems - remove warnings on usb devices
* - explains more cpu bugsThierry Vignaud2002-11-191-5/+13
| | | | | - eventually fix --testing effect
* --testing handling was erronously revertedThierry Vignaud2002-11-191-1/+1
|
* make perl_checker happyPascal Rigaux2002-11-181-1/+1
|
* - standalone.pm :Thierry Vignaud2002-11-181-18/+1
| | | | | | | | | | | 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
* simplify code though my_gtk::gtkcolorThierry Vignaud2002-11-181-5/+2
|
* - add/remove spaces to make perl_checker happyPascal Rigaux2002-11-141-2/+2
| | | | | | - remove redundant parentheses - add some parentheses for clarity
* explain the detect() vs new() delayed gui construction when embeddedThierry Vignaud2002-11-141-0/+1
|
* display port for network printers tooThierry Vignaud2002-11-141-0/+1
|
* add/remove spaces to make perl_checker happyPascal Rigaux2002-11-131-3/+3
|
* display floppy driver type as well as mouse typeThierry Vignaud2002-11-131-0/+2
|
* - replace ... =~ 'foo' with ... =~ /foo/Pascal Rigaux2002-11-111-2/+2
| | | | | - remove unneeded parentheses for things like ... if (...)
* add or remove spaces where need to please perl_checkerPascal Rigaux2002-11-111-5/+5
|
* - getCPUs() : fix cpu fields parsingThierry Vignaud2002-11-071-7/+14
| | | | | | | - harddrake::detect : o describe most cpu fields o print value of skipped fields
* - describe cpu frequencyThierry Vignaud2002-11-071-14/+20
| | | | | | | | | - only display help topics related to currently displayed fields in right framea - if no device selected, display a message explaining the help dialog - simplify the unknow driver case for color choice - only display fields we described
* perl checker fixesThierry Vignaud2002-11-071-6/+6
|
* - add help for some cpu itemsThierry Vignaud2002-11-071-1/+6
| | | | | | - only display choosen items - remove a dead statement
* replace "_" with "N" and "__" with "N_"Pascal Rigaux2002-11-061-45/+45
| | | | | | | | | | | | | | | | | | | 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!
* reindent for lord pixThierry Vignaud2002-10-231-165/+168
|
* don't print empty help for fields without any helpThierry Vignaud2002-10-161-5/+5
|
* - alphabetically sort help itemsThierry Vignaud2002-10-161-12/+17
| | | | | - add help for some cpu fields
* fix Gtk::CTree:insert_node inversing devices orderThierry Vignaud2002-10-161-4/+1
|
* -add cpus detectionThierry Vignaud2002-10-161-2/+2
| | | | | | | - update todo list - perl_checker fix
* don't use ugtk directlyThierry Vignaud2002-10-091-3/+19
|
* add a few commentsThierry Vignaud2002-09-241-0/+9
|
* split harddrake part that configure a module into modules::interactiveThierry Vignaud2002-09-241-16/+2
|
* split devices listing ("detection") part into its own functionThierry Vignaud2002-09-241-40/+62
| | | | | (detect) for readability
* don't print logs in consoleThierry Vignaud2002-09-201-1/+1
|
* enforce unique idsThierry Vignaud2002-09-091-0/+1
|
* add drakbug report entry in help menuThierry Vignaud2002-09-091-0/+2
|
* - harddrake::data : consolidate common code in custom_id()Thierry Vignaud2002-09-061-1/+1
| | | | | | | - do some detection in dm stage - fix bad test - display better name
* - don't list usb mouses as unknown hwThierry Vignaud2002-09-061-1/+1
| | | | | | | - fix mouse detection (mouse::detect() needed modules::mergein_conf('/etc/modules.conf') first - don't skip mouse in --test mode
* fix translated stringThierry Vignaud2002-09-061-1/+1
|
* don't rely on ctree row numberThierry Vignaud2002-09-051-9/+12
|
* - add --test option to skip mice|modem|printer detection (nowThierry Vignaud2002-09-041-0/+0
| | | | | | | | | harddrake start instantaneously) - print probed class to show progression - fix tree moving by using a Gtk::CTree instead of a Gtk::Tree; side effect is some code cleaning which compensate above features (code lenght)
* - let my_gtk handle embedded caseThierry Vignaud2002-09-041-0/+0
| | | | | - don't try to center window when embedded
* display alternative drivers (oss, alsa) for sound cardsThierry Vignaud2002-09-021-0/+0
|
* embedded mode: exit on "quit" clickThierry Vignaud2002-08-291-0/+0
|
* English typos (Quitter->Quit, Informations->Information)Pablo Saratxaga2002-08-291-0/+0
|
* corrected English typos (no space before colon in English)Pablo Saratxaga2002-08-291-0/+0
|