From owner-svn-src-all@FreeBSD.ORG Mon Aug 18 01:58:47 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D354CB7A; Mon, 18 Aug 2014 01:58:47 +0000 (UTC) Received: from mail-ig0-x22a.google.com (mail-ig0-x22a.google.com [IPv6:2607:f8b0:4001:c05::22a]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 868113B3A; Mon, 18 Aug 2014 01:58:47 +0000 (UTC) Received: by mail-ig0-f170.google.com with SMTP id h3so6675240igd.5 for ; Sun, 17 Aug 2014 18:58:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=YY+/n3E752THrt1aTEqdC1X4ovnlispNi62AaKn3xzw=; b=rwUsOz+0q6g37KsH3eUoSnt3I1MpYtGuda60BMuOn5Pi6cnEqVmGIO/GNLpWz1TkLY Eej71ivgF4JUzxs6J712QQz+OzpjkNvmtlyqGN8FvgtFe5xQ/m3dfnwGG/j1rW7PQqpV 1L9dfclItvW6RA+OkrX8IY7N3uqxAmb9uXnVlBU6hFj+/2G4jp/hYbfMn8E4OuL6Hzih xwThDX1v56VeV0ZbzP2IAYk3ZjhrKLR6mpR73BHI0W9PkKwAkInL8jn5SpsZ3HjXUBhR Q+ZpB8PDRnskBQnGSNDw7nt3+5rCjZXST0LaLEwuFwmG4beK8dSipO23XSv0nvQ3vTut 4NHg== X-Received: by 10.50.88.37 with SMTP id bd5mr11360233igb.1.1408327126507; Sun, 17 Aug 2014 18:58:46 -0700 (PDT) MIME-Version: 1.0 Sender: carpeddiem@gmail.com Received: by 10.107.131.38 with HTTP; Sun, 17 Aug 2014 18:58:26 -0700 (PDT) In-Reply-To: <201408171954.s7HJsLmX099240@svn.freebsd.org> References: <201408171954.s7HJsLmX099240@svn.freebsd.org> From: Ed Maste Date: Sun, 17 Aug 2014 21:58:26 -0400 X-Google-Sender-Auth: 2-JGKcUsZgL3Y5zlF03uqVxhaZY Message-ID: Subject: Re: svn commit: r270114 - head/share/vt/keymaps To: Stefan Esser Content-Type: text/plain; charset=UTF-8 Cc: "svn-src-head@freebsd.org" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Aug 2014 01:58:47 -0000 On 17 August 2014 15:54, Stefan Esser wrote: > Author: se > Date: Sun Aug 17 19:54:21 2014 > New Revision: 270114 > URL: http://svnweb.freebsd.org/changeset/base/270114 > > Log: > Attempt at converting the SYSCONS keymaps to Unicode for use with NEWCONS. > I have spent many hours comparing source and destination formats, and hope > to have caught the most severe conversion errors. Stefan, Thank you very much for taking this on. > <2-letter country code>..kbd > > Only if there are multiple layouts for different languages: > > <2-letter country code>-<2-letter language code>..kbd > > In nearly all cases, the keyboards are country specific, only. Currently > there is only one case where the language was added ("ch-fr.kbd" for > the Swiss-French keyboard layout). I've just temporarily broken this rule by renaming ca.kbd to ca-fr.kbd, but will add a "Canadian Multilingual" ca.kbd soon; I think it's better to get this set up in advance of the MFC. > I choose to write Unicode character codes as hex numbers. While this > increases the diff to the SYSCONS keymap files for the trivial cases > (conversion from ISO8859-1), it really helps to verify the more complex > cases against a Unicode table (which is indexed by hex numbers). Thanks for this too, I agree that being able to look up Unicode code points directly is much more important than reducing syscons diffs.