summaryrefslogtreecommitdiffstats
path: root/perl-install/Xconfig/xfreeX.pm
Commit message (Collapse)AuthorAgeFilesLines
* introduce ->is_fbdev, and use it to simplify ->set_resolutionPascal Rigaux2003-01-231-1/+1
|
* use "if any" instead of "if grep", and various other occurences of "any", ↵Pascal Rigaux2003-01-071-4/+3
| | | | "every", "partition"
* - add/remove spaces to make perl_checker happyPascal Rigaux2002-11-141-1/+1
| | | | | | - remove redundant parentheses - add some parentheses for clarity
* various small syntax enhancements to please perl_checkerPascal Rigaux2002-11-111-2/+2
|
* 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!
* add XkbCompat "group_led" for all keyboards where a group layout switching ↵Pascal Rigaux2002-11-041-1/+1
| | | | is used
* (set_resolution): set the resolution on all Screen sections (otherwise ↵Pascal Rigaux2002-08-231-19/+26
| | | | Xinerama fails (?))
* create a backup of XF86Config (XF86Config.old)Pascal Rigaux2002-08-121-0/+1
|
* (set_resolution): handle the optional $resolution->{Y}Pascal Rigaux2002-08-081-2/+5
| | | | | (@resolutions): add 1280x960
* fix typoPascal Rigaux2002-08-081-1/+1
|
* replace 1152x768 with 1152x864 as it should and used to bePascal Rigaux2002-08-081-1/+1
|
* make wacom config workPascal Rigaux2002-08-061-1/+1
|
* - the old $o->{keyboard} is now $o->{keyboard}{KEYBOARD}Pascal Rigaux2002-08-011-1/+1
| | | | | | | | - KBCHARSET is $o->{keyboard}{KBCHARSET} - isNotDelete is $o->{keyboard}{BACKSPACE} (as written in sysconfig/keyboard) - add GRP_TOGGLE which gives XkbOptions "grp:GRP_TOGGLE" - add dialog box to choose GRP_TOGGLE
* *** empty log message ***Pascal Rigaux2002-07-311-1/+1
|
* make perl_checker happy again (replacing "{xx}->{yy}" by "{xx}{yy}")Pascal Rigaux2002-07-311-1/+1
|
* 14 new modules, will it be enough?? :)Pascal Rigaux2002-07-281-15/+240
|
* new XFree handling libraryPascal Rigaux2002-07-241-0/+142
- only keyboard and mice functions are done, but adding the others is quite easy - so for now only used in mousedrake - but keyboarddrake and (of course) XFdrake will come