Re: [VCARDDAV] Issue in vcardrev-11 with Line Delimiting and Folding?

Markus Lorenz <lorenz@atlantika-arts.net> Sun, 30 May 2010 08:07 UTC

Return-Path: <lorenz@atlantika-arts.net>
X-Original-To: vcarddav@core3.amsl.com
Delivered-To: vcarddav@core3.amsl.com
Received: from localhost (localhost [127.0.0.1]) by core3.amsl.com (Postfix) with ESMTP id 9BB813A67AD for <vcarddav@core3.amsl.com>; Sun, 30 May 2010 01:07:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: 0.612
X-Spam-Level:
X-Spam-Status: No, score=0.612 tagged_above=-999 required=5 tests=[BAYES_50=0.001, HELO_MISMATCH_NET=0.611]
Received: from mail.ietf.org ([64.170.98.32]) by localhost (core3.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id EYukv364IK7m for <vcarddav@core3.amsl.com>; Sun, 30 May 2010 01:07:46 -0700 (PDT)
Received: from host46.sitepush.net (server20.server-centrum.de [213.239.241.46]) by core3.amsl.com (Postfix) with ESMTP id 6A2D33A6767 for <vcarddav@ietf.org>; Sun, 30 May 2010 01:07:46 -0700 (PDT)
Received: from localhost (localhost [127.0.0.1]) by host46.sitepush.net (Postfix) with ESMTP id DB3DC1FA0003; Sun, 30 May 2010 10:07:32 +0200 (CEST)
Received: from host46.sitepush.net ([127.0.0.1]) by localhost (server20.server-centrum.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ma7wybbNIeY9; Sun, 30 May 2010 10:07:32 +0200 (CEST)
Received: from [192.168.0.100] (f053154097.adsl.alicedsl.de [78.53.154.97]) by host46.sitepush.net (Postfix) with ESMTP id A19B81FA0008; Sun, 30 May 2010 10:07:32 +0200 (CEST)
Message-ID: <4C021CC4.6020404@atlantika-arts.net>
Date: Sun, 30 May 2010 10:07:32 +0200
From: Markus Lorenz <lorenz@atlantika-arts.net>
Organization: Atlantika Arts Software Development
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; de; rv:1.9.1.9) Gecko/20100317 Lightning/1.0b1 Thunderbird/3.0.4
MIME-Version: 1.0
To: Andrew McMillan <andrew@morphoss.com>
References: <4C01AC1A.5000403@atlantika-arts.net> (sfid-20100530_120721_797912_22053162) <1275205089.3820.287.camel@happy.home.mcmillan.net.nz>
In-Reply-To: <1275205089.3820.287.camel@happy.home.mcmillan.net.nz>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
Cc: vcarddav@ietf.org
Subject: Re: [VCARDDAV] Issue in vcardrev-11 with Line Delimiting and Folding?
X-BeenThere: vcarddav@ietf.org
X-Mailman-Version: 2.1.9
Precedence: list
List-Id: IETF vcarddav wg mailing list <vcarddav.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/listinfo/vcarddav>, <mailto:vcarddav-request@ietf.org?subject=unsubscribe>
List-Archive: <http://www.ietf.org/mail-archive/web/vcarddav>
List-Post: <mailto:vcarddav@ietf.org>
List-Help: <mailto:vcarddav-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/vcarddav>, <mailto:vcarddav-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 30 May 2010 08:07:47 -0000

Am 30.05.2010 09:38, schrieb Andrew McMillan:
> On Sun, 2010-05-30 at 02:06 +0200, Markus Lorenz wrote:
>> Hey again,
>>
>> section "3.1. Line Delimiting and Folding" says:
>>
>>    A logical line MAY be continued on the next physical line anywhere
>>    between two characters by inserting a CRLF immediately followed by a
>>    single white space character (space, ASCII decimal 32, or horizontal
>>    tab, ASCII decimal 9).
>>
>> It clearly states that the CRLF is followed by only a single white space
>> character. The example however uses _two_ spaces, at least in the
>> text-version in line 329
>> (http://www.ietf.org/id/draft-ietf-vcarddav-vcardrev-11.txt):
>>
>>    For example the line:
>>
>>      DESCRIPTION:This is a long description that exists on a long line.
>>
>>    can be represented as:
>>
>>      DESCRIPTION:This is a long description
>>        that exists on a long line.
>>
>> Maybe in the non-text version it has been a tab!?
> 
> Hi Markus,
> 
> It's wrapped before the existing space, so that (making spaces visible
> as ^):
> 
> DESCRIPTION:This^is^a^long^description^that^exists^on^a^long^line.
> 
> has now become:
> 
> DESCRIPTION:This^is^a^long^description
> ^^that^exists^on^a^long^line.
> 
> So in the transformation only a line break, and a space have been added
> - the second space already existed.

Andrew, you're totally right. Thanks!