[prev in list] [next in list] [prev in thread] [next in thread] 

List:       xfree-cvs
Subject:    cvs commit: XFree86
From:       David Dawes <dawes () XFree86 ! Org>
Date:       2000-10-27 18:31:18
[Download RAW message or body]

dawes       00/10/27 11:31:18

  Modified:    include  keysym.h keysymdef.h
               lib/X11  XKBCvt.c imConv.c lcCT.c lcUTF8.c
               nls      compose.dir locale.alias locale.dir
               nls/Compose Imakefile iso8859-1 iso8859-14 iso8859-15
                        iso8859-2 iso8859-4 iso8859-7 vi_VN.tcvn
                        vi_VN.viscii
               nls/XLC_LOCALE Imakefile zh_TW.big5
               programs/Xserver/hw/xfree86 CHANGELOG
               programs/Xserver/hw/xfree86/common xf86Helper.c xf86Init.c
               programs/Xserver/hw/xfree86/doc/sgml chips.sgml
               programs/Xserver/hw/xfree86/drivers/chips ct_driver.c
               programs/Xserver/hw/xfree86/drivers/mga mga_storm.c
               programs/Xserver/hw/xfree86/drivers/vesa Imakefile vesa.c
                        vesa.h
               programs/Xserver/hw/xfree86/xf86cfg config.c interface.c
               programs/Xserver/hw/xfree86/xf86config Imakefile
                        xf86config.c
               programs/xkbcomp/keymap/sun Imakefile
               programs/xkbcomp/symbols Imakefile be br dk dvorak ee es fi
                        fr is it lt no pt se th us us_intl
               programs/xterm aclocal.m4 config.guess config.sub configure
                        main.c misc.c version.h xterm.log.html
               programs/xterm/vttests 16colors.sh 8colors.sh doublechars.sh
                        dynamic.sh fonts.sh resize.sh title.sh
  Added:       nls/Compose iso8859-13 iso8859-9e koi8-c
               nls/XLC_LOCALE iscii-dev isiri-3342 iso8859-13 iso8859-9e
                        koi8-c microsoft-cp1251 microsoft-cp1255
                        microsoft-cp1256 nokhchi-1 tatar-cyr tscii-0
               programs/xkbcomp/keymap/sun es fi fr no pl ru uk
               programs/xkbcomp/symbols am az gr il il_phonetic is.orig
                        lt_b lt_new lt_p vn
  Log:
   829. Add code to the xf86config utility to get the list of XKB selections
        from the appropriate XKB files rather than having them hard-coded.
        Also allow XkbOptions to be set (#4209, Ivan Pascal).
   828. Fix two more bugs in xkbcomp: handling of 'keycode aliases', and
        copying of strings when copying structures (#4208, Ivan Pascal).
   827. Xterm patch #147 (#4207, Thomas Dickey).
   826. Move the initialisation of pScrn->EnableDisableFBAccess into
        InitOutput(), which fixes an infinite loop problem that can show up
        on server resets (#4206, Joe Moss).
   825. Make xf86cfg use the same config file search path as the X server
        (#4203, Paulo Cesar Pereira de Andrade).
   824. Update the XFree86 -configure code to put the default font path
        in the Files section of the config file it generates (#4202,
        Paulo Cesar Pereira de Andrade).
   823. Fix a bug in the vesa driver when finding the linear address for the
        card, some compile time warnings, faster code for handling colormap
        changes, and add DGA support (#4201, Paulo Cesar Pereira de Andrade).
   822. Fix a typo in the mga driver that causes planemask problems with
        the PCI version of the G100 (#4198, Antti Tapaninen).
   821. Add an option to the C&T driver to disable "TMED" (DSTN dithering
        scheme) (#A.172, Damir Anicic, #4196, 4197, David Bateman).
   820. Pablo Saratxaga's i18n updates for XFree86 that are used in Mandrake 7.2.
        Includes various new and fixed xkb files, locale name additions and
        updates, and new support for varios charset encodings (#4195,
        Pablo Saratxaga).
  
  Revision  Changes    Path
  1.2       +21 -11    xc/include/keysym.h
  1.10      +261 -4    xc/include/keysymdef.h
  3.27      +2 -2      xc/lib/X11/XKBCvt.c
  1.26      +514 -54   xc/lib/X11/imConv.c
  3.18      +9 -3      xc/lib/X11/lcCT.c
  1.6       +25 -1     xc/lib/X11/lcUTF8.c
  1.10      +63 -3     xc/nls/compose.dir
  1.27      +110 -14   xc/nls/locale.alias
  1.15      +110 -6    xc/nls/locale.dir
  1.11      +4 -1      xc/nls/Compose/Imakefile
  1.5       +18 -2     xc/nls/Compose/iso8859-1
  1.3       +144 -54   xc/nls/Compose/iso8859-14
  1.3       +24 -2     xc/nls/Compose/iso8859-15
  1.2       +66 -1     xc/nls/Compose/iso8859-2
  1.2       +3 -3      xc/nls/Compose/iso8859-4
  1.2       +239 -7    xc/nls/Compose/iso8859-7
  1.2       +133 -9    xc/nls/Compose/vi_VN.tcvn
  1.2       +133 -9    xc/nls/Compose/vi_VN.viscii
  1.15      +13 -1     xc/nls/XLC_LOCALE/Imakefile
  1.2       +22 -19    xc/nls/XLC_LOCALE/zh_TW.big5
  3.1359    +26 -1     xc/programs/Xserver/hw/xfree86/CHANGELOG
  1.97      +3 -4      xc/programs/Xserver/hw/xfree86/common/xf86Helper.c
  3.167     +6 -1      xc/programs/Xserver/hw/xfree86/common/xf86Init.c
  3.32      +15 -1     xc/programs/Xserver/hw/xfree86/doc/sgml/chips.sgml
  1.97      +5 -2      xc/programs/Xserver/hw/xfree86/drivers/chips/ct_driver.c
  1.78      +2 -2      xc/programs/Xserver/hw/xfree86/drivers/mga/mga_storm.c
  1.2       +5 -4      xc/programs/Xserver/hw/xfree86/drivers/vesa/Imakefile
  1.4       +390 -197  xc/programs/Xserver/hw/xfree86/drivers/vesa/vesa.c
  1.4       +45 -2     xc/programs/Xserver/hw/xfree86/drivers/vesa/vesa.h
  1.4       +20 -5     xc/programs/Xserver/hw/xfree86/xf86cfg/config.c
  1.8       +3 -3      xc/programs/Xserver/hw/xfree86/xf86cfg/interface.c
  3.8       +4 -3      xc/programs/Xserver/hw/xfree86/xf86config/Imakefile
  3.54      +114 -91   xc/programs/Xserver/hw/xfree86/xf86config/xf86config.c
  3.4       +2 -2      xc/programs/xkbcomp/keymap/sun/Imakefile
  3.27      +6 -6      xc/programs/xkbcomp/symbols/Imakefile
  3.4       +26 -9     xc/programs/xkbcomp/symbols/be
  1.3       +32 -5     xc/programs/xkbcomp/symbols/br
  3.5       +2 -2      xc/programs/xkbcomp/symbols/dk
  3.3       +101 -9    xc/programs/xkbcomp/symbols/dvorak
  1.2       +7 -4      xc/programs/xkbcomp/symbols/ee
  3.4       +3 -1      xc/programs/xkbcomp/symbols/es
  3.5       +70 -37    xc/programs/xkbcomp/symbols/fi
  3.5       +3 -1      xc/programs/xkbcomp/symbols/fr
  3.4       +3 -1      xc/programs/xkbcomp/symbols/is
  3.4       +3 -1      xc/programs/xkbcomp/symbols/it
  1.3       +47 -92    xc/programs/xkbcomp/symbols/lt
  3.7       +71 -36    xc/programs/xkbcomp/symbols/no
  3.5       +4 -1      xc/programs/xkbcomp/symbols/pt
  3.6       +73 -35    xc/programs/xkbcomp/symbols/se
  3.3       +49 -50    xc/programs/xkbcomp/symbols/th
  3.9       +4 -3      xc/programs/xkbcomp/symbols/us
  1.3       +7 -4      xc/programs/xkbcomp/symbols/us_intl
  3.35      +8 -6      xc/programs/xterm/aclocal.m4
  1.11      +45 -13    xc/programs/xterm/config.guess
  1.11      +20 -12    xc/programs/xterm/config.sub
  3.52      +3 -3      xc/programs/xterm/configure
  3.121     +31 -7     xc/programs/xterm/main.c
  3.56      +8 -6      xc/programs/xterm/misc.c
  3.60      +2 -2      xc/programs/xterm/version.h
  1.59      +23 -1     xc/programs/xterm/xterm.log.html
  1.3       +2 -2      xc/programs/xterm/vttests/16colors.sh
  1.3       +2 -2      xc/programs/xterm/vttests/8colors.sh
  1.3       +2 -2      xc/programs/xterm/vttests/doublechars.sh
  1.3       +2 -2      xc/programs/xterm/vttests/dynamic.sh
  1.2       +2 -2      xc/programs/xterm/vttests/fonts.sh
  1.3       +2 -2      xc/programs/xterm/vttests/resize.sh
  1.4       +2 -2      xc/programs/xterm/vttests/title.sh
_______________________________________________
Cvs-commit mailing list
Cvs-commit@XFree86.Org
http://XFree86.Org/mailman/listinfo/cvs-commit

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic