summaryrefslogtreecommitdiffstats
path: root/perl-install/Xconfig/parse.pm
Commit message (Collapse)AuthorAgeFilesLines
* fix section with only comments (putting the comment after the EndSection is ↵Pascal Rigaux2005-03-011-1/+2
| | | | wrong)
* better english (writing style rather than spoken one)Thierry Vignaud2004-12-131-1/+1
|
* fix parsing fully commented Section. eg:Pascal Rigaux2004-10-071-1/+1
| | | | | | | | #Section "Extensions" # Option "Composite" "Enable" # Option "RENDER" "Enable" #Endsection
* - add ->prepare_write to allow comparing raw_X'sPascal Rigaux2004-02-051-1/+6
| | | | | - ensure "config_changed" is returned only if the config file really changed
* fix bug 3976.Francois Pons2003-08-201-3/+3
|
* => do as Chris Picton suggestedPascal Rigaux2003-08-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* new perl_checker compliancePascal Rigaux2003-04-171-4/+4
|
* remove unused variables or rename them with an underscore (eg: $o becomes $_o)Pascal Rigaux2002-12-041-2/+1
|
* perl_checker adaptationsPascal Rigaux2002-11-271-7/+7
|
* add XkbCompat "group_led" for all keyboards where a group layout switching ↵Pascal Rigaux2002-11-041-1/+1
| | | | is used
* make wacom config workPascal Rigaux2002-08-061-0/+3
|
* - 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
* BusID needs a string (thanks to Florent BERANGER)Pascal Rigaux2002-08-011-1/+1
|
* fix handling of commented empty linePascal Rigaux2002-07-301-2/+2
|
* 14 new modules, will it be enough?? :)Pascal Rigaux2002-07-281-8/+13
|
* new XFree handling libraryPascal Rigaux2002-07-241-0/+192
- 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