From nobody Sat May 4 15:46:10 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1500537509648919.6036030984277; Thu, 20 Jul 2017 00:58:29 -0700 (PDT) Received: from localhost ([::1]:36535 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dY6Lr-0007W2-9i for importer@patchew.org; Thu, 20 Jul 2017 03:58:27 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54784) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dY6J6-0005Y5-Dt for qemu-devel@nongnu.org; Thu, 20 Jul 2017 03:55:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dY6J3-0004uo-BE for qemu-devel@nongnu.org; Thu, 20 Jul 2017 03:55:36 -0400 Received: from mx1.redhat.com ([209.132.183.28]:53622) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dY6J3-0004uC-5h for qemu-devel@nongnu.org; Thu, 20 Jul 2017 03:55:33 -0400 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 1BBDBC0467C1 for ; Thu, 20 Jul 2017 07:55:32 +0000 (UTC) Received: from sirius.home.kraxel.org (ovpn-116-225.ams2.redhat.com [10.36.116.225]) by smtp.corp.redhat.com (Postfix) with ESMTP id C610A7ED7B; Thu, 20 Jul 2017 07:55:29 +0000 (UTC) Received: by sirius.home.kraxel.org (Postfix, from userid 1000) id 68434394; Thu, 20 Jul 2017 09:55:26 +0200 (CEST) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 1BBDBC0467C1 Authentication-Results: ext-mx07.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx07.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=kraxel@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 1BBDBC0467C1 From: Gerd Hoffmann To: qemu-devel@nongnu.org Date: Thu, 20 Jul 2017 09:55:25 +0200 Message-Id: <20170720075526.7383-2-kraxel@redhat.com> In-Reply-To: <20170720075526.7383-1-kraxel@redhat.com> References: <20170720075526.7383-1-kraxel@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.31]); Thu, 20 Jul 2017 07:55:32 +0000 (UTC) Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PULL 1/2] vnc: Clarify documentation of QMP command change X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Markus Armbruster , Gerd Hoffmann Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" From: Markus Armbruster QMP command { "execute": "change", "arguments": { "device": "vnc", "target": "password", "arg": PWD } } behaves just like { "execute": "change-vnc-password", "arguments": { "password", "arg": PWD } } Their documentation differs, however. According to change-vnc-password's documentation, "an empty password [...] will set the password to the empty string", while change's documentation claims "no future logins will be allowed". The former is actually correct. Replace the incorrect claim by a reference to change-vnc-password. Signed-off-by: Markus Armbruster Reviewed-by: Marc-Andr=C3=A9 Lureau Message-id: 1500448182-21376-1-git-send-email-armbru@redhat.com Signed-off-by: Gerd Hoffmann --- qapi-schema.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/qapi-schema.json b/qapi-schema.json index 8b015bee2e..58d3a0209f 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3011,8 +3011,7 @@ # @arg: If @device is a block device, then this is an optional format t= o open # the device with. # If @device is 'vnc' and @target is 'password', this is the new = VNC -# password to set. If this argument is an empty string, then no = future -# logins will be allowed. +# password to set. See change-vnc-password for additional notes. # # Returns: Nothing on success. # If @device is not a valid block device, DeviceNotFound --=20 2.9.3 From nobody Sat May 4 15:46:10 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1500537672855249.73169594797935; Thu, 20 Jul 2017 01:01:12 -0700 (PDT) Received: from localhost ([::1]:36549 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dY6OU-0001lW-Ab for importer@patchew.org; Thu, 20 Jul 2017 04:01:10 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54782) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dY6J6-0005Y3-Dp for qemu-devel@nongnu.org; Thu, 20 Jul 2017 03:55:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dY6J3-0004vG-FK for qemu-devel@nongnu.org; Thu, 20 Jul 2017 03:55:36 -0400 Received: from mx1.redhat.com ([209.132.183.28]:50846) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dY6J3-0004uF-9Y for qemu-devel@nongnu.org; Thu, 20 Jul 2017 03:55:33 -0400 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 28FBDC058EC2 for ; Thu, 20 Jul 2017 07:55:32 +0000 (UTC) Received: from sirius.home.kraxel.org (ovpn-116-225.ams2.redhat.com [10.36.116.225]) by smtp.corp.redhat.com (Postfix) with ESMTP id C859B7ED7F; Thu, 20 Jul 2017 07:55:29 +0000 (UTC) Received: by sirius.home.kraxel.org (Postfix, from userid 1000) id 6F7463B2; Thu, 20 Jul 2017 09:55:26 +0200 (CEST) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 28FBDC058EC2 Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=kraxel@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 28FBDC058EC2 From: Gerd Hoffmann To: qemu-devel@nongnu.org Date: Thu, 20 Jul 2017 09:55:26 +0200 Message-Id: <20170720075526.7383-3-kraxel@redhat.com> In-Reply-To: <20170720075526.7383-1-kraxel@redhat.com> References: <20170720075526.7383-1-kraxel@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.32]); Thu, 20 Jul 2017 07:55:32 +0000 (UTC) Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PULL 2/2] keymaps: fr-ca: more fixups X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Thomas Huth , Gerd Hoffmann Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" Fixes: https://bugs.launchpad.net/qemu/+bug/533613 Cc: Thomas Huth Suggested-by: J=C3=A9r=C3=B4me Poulin Signed-off-by: Gerd Hoffmann Message-id: 20170717133444.16743-1-kraxel@redhat.com --- pc-bios/keymaps/fr-ca | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pc-bios/keymaps/fr-ca b/pc-bios/keymaps/fr-ca index 030f56a78e..13a0306762 100644 --- a/pc-bios/keymaps/fr-ca +++ b/pc-bios/keymaps/fr-ca @@ -10,6 +10,7 @@ sterling 0x4 altgr cent 0x5 altgr currency 0x6 altgr notsign 0x7 altgr +numbersign 0x29 bar 0x29 shift twosuperior 0x9 altgr threesuperior 0xa altgr @@ -38,6 +39,10 @@ dead_cedilla 0x1b dead_diaeresis 0x1b shift exclam 0x2 shift quotedbl 0x3 shift +comma 0x33 +apostrophe 0x33 shift +period 0x34 +period 0x34 shift slash 0x4 shift dollar 0x5 shift percent 0x6 shift @@ -47,6 +52,9 @@ asterisk 0x9 shift parenleft 0xa shift parenright 0xb shift underscore 0xc shift -plus 0xd shift minus 0xc +underscore 0xc shift equal 0xd +plus 0xd shift +semicolon 0x27 +colon 0x27 shift --=20 2.9.3