Re: [Json] Leading and trailing whitespace

Paul Hoffman <paul.hoffman@vpnc.org> Tue, 11 June 2013 02:53 UTC

Return-Path: <paul.hoffman@vpnc.org>
X-Original-To: json@ietfa.amsl.com
Delivered-To: json@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C2AA821F8808 for <json@ietfa.amsl.com>; Mon, 10 Jun 2013 19:53:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -102.44
X-Spam-Level:
X-Spam-Status: No, score=-102.44 tagged_above=-999 required=5 tests=[AWL=0.159, BAYES_00=-2.599, USER_IN_WHITELIST=-100]
Received: from mail.ietf.org ([12.22.58.30]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9XAHZCtaxmWf for <json@ietfa.amsl.com>; Mon, 10 Jun 2013 19:53:51 -0700 (PDT)
Received: from hoffman.proper.com (IPv6.Hoffman.Proper.COM [IPv6:2605:8e00:100:41::81]) by ietfa.amsl.com (Postfix) with ESMTP id 0758021F86C0 for <json@ietf.org>; Mon, 10 Jun 2013 19:53:49 -0700 (PDT)
Received: from [10.20.30.90] (50-0-66-165.dsl.dynamic.sonic.net [50.0.66.165]) (authenticated bits=0) by hoffman.proper.com (8.14.5/8.14.5) with ESMTP id r5B2rPxO062696 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO); Mon, 10 Jun 2013 19:53:26 -0700 (MST) (envelope-from paul.hoffman@vpnc.org)
Content-Type: text/plain; charset="us-ascii"
Mime-Version: 1.0 (Mac OS X Mail 6.5 \(1508\))
From: Paul Hoffman <paul.hoffman@vpnc.org>
In-Reply-To: <070b01ce664b$e5e0ac10$b1a20430$@augustcellars.com>
Date: Mon, 10 Jun 2013 19:53:25 -0700
Content-Transfer-Encoding: quoted-printable
Message-Id: <6E03D281-D6BA-424D-A30A-3DA18E61A051@vpnc.org>
References: <06c101ce6625$0f891bf0$2e9b53d0$@augustcellars.com> <379266A1-82C1-4FF5-BD7C-EE657F1FD41F@vpnc.org> <06e901ce6638$e8f27a90$bad76fb0$@augustcellars.com> <51DE7E41-D682-4340-A234-7F7CFE513C10@vpnc.org> <070b01ce664b$e5e0ac10$b1a20430$@augustcellars.com>
To: Jim Schaad <ietf@augustcellars.com>
X-Mailer: Apple Mail (2.1508)
Cc: json@ietf.org
Subject: Re: [Json] Leading and trailing whitespace
X-BeenThere: json@ietf.org
X-Mailman-Version: 2.1.12
Precedence: list
List-Id: "JavaScript Object Notation \(JSON\) WG mailing list" <json.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/json>, <mailto:json-request@ietf.org?subject=unsubscribe>
List-Archive: <http://www.ietf.org/mail-archive/web/json>
List-Post: <mailto:json@ietf.org>
List-Help: <mailto:json-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/json>, <mailto:json-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 11 Jun 2013 02:54:09 -0000

On Jun 10, 2013, at 7:32 PM, "Jim Schaad" <ietf@augustcellars.com> wrote:

> Ok - I used the wrong term - I need to get them clearer, I still am trying
> to learn - Please read JSON text for JSON text string.  I was not using
> string as a value in this location.

You can't ask that question because the current doc only allows arrays and objects at the top level, and the starting character for each of those allow for white space.

You might be asking "if we allow other JSON items at the top level, will we also allow optional whitespace before and after". But that's a supposition, not a question about what is in the document now.


>>> This makes a difference with the argument about moving all of the values
>> to
>>> the top level since then the string (ignore the quotes) "   true \r\n"
>>> cannot be matched if you just want to say it is a Boolean literal
>>> (i.e. the non-terminator true).  Instead you need to say that it can
>>> have whitespace on either side of it.
>> 
>> The current grammar does not allow whitespace around "true" for that
>> boolean value.
> 
> Actually it does, but the whitespace comes from the container it is in.  

You have changed the subject of the question, then. You were asking about the top level, without a container. I claim my answer is correct for the question you asked.

> The
> current grammar does not allow true at the top level and if that does not
> change then the above remains a moot point.  Note that the text was talking
> about moving all values to the top level.

None of the objects other than arrays and objects have optional whitespace. None.

> Yes -but what I am saying is that there are (probably) parsers which stop
> before the string has been fully consumed.  Thus they would accept the
> string as valid.

There are (probably) parsers that do all sorts of stupid, non-conformant things. Why is that relevant here?

--Paul Hoffman