summaryrefslogtreecommitdiffstats
path: root/perl-install/Xconfig/xfreeX.pm
Commit message (Collapse)AuthorAgeFilesLines
* XFree 3 is gone!Pascal Rigaux2004-05-031-357/+0
|
* - add ->prepare_write to allow comparing raw_X'sPascal Rigaux2004-02-051-0/+4
| | | | | - ensure "config_changed" is returned only if the config file really changed
* => do as Chris Picton suggestedPascal Rigaux2003-08-011-26/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Chris Picton said (nearly one year ago :-/) : I have found the need for many low res screen resolutions for such thingas as movie playing, xmame, etc. The method XFdrake uses to enable modes is to enumerate each mode in the XF86Config file. For example (a newly created file): Subsection "Display" Depth 24 Modes "1280x960" "1152x864" "1024x768" "800x600" "640x480" EndSubsection It would be better (at least under XFree 4, which automatically provides resoltions from the monitor, if it is capable), to not limit the modes provided to the user If I use instead, the following: Subsection "Display" Depth 24 Virtual 1280 960 EndSubsection My maximum mode is exactly the same as before, but I have many more low resolution modes.
* perl_checker fixThierry Vignaud2003-05-201-2/+2
|
* perl_checker compliance for optional method argumentsPascal Rigaux2003-04-221-8/+8
|
* new perl_checker compliancePascal Rigaux2003-04-171-8/+8
|
* 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