Additional RFC Editor Note for draft-ietf-netconf-prot-12

Andy Bierman <andy@andybierman.com> Sun, 18 June 2006 18:48 UTC

Received: from [10.91.34.44] (helo=ietf-mx.ietf.org) by megatron.ietf.org with esmtp (Exim 4.43) id 1Fs2JW-0002cW-Mz for netconf-archive@lists.ietf.org; Sun, 18 Jun 2006 14:48:02 -0400
Received: from psg.com ([147.28.0.62]) by ietf-mx.ietf.org with esmtp (Exim 4.43) id 1Fs2JV-0006fK-D5 for netconf-archive@lists.ietf.org; Sun, 18 Jun 2006 14:48:02 -0400
Received: from majordom by psg.com with local (Exim 4.60 (FreeBSD)) (envelope-from <owner-netconf@ops.ietf.org>) id 1Fs2GT-0008C0-Nh for netconf-data@psg.com; Sun, 18 Jun 2006 18:44:53 +0000
X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on psg.com
X-Spam-Level:
X-Spam-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00, FORGED_RCVD_HELO autolearn=ham version=3.1.1
Received: from [205.178.146.54] (helo=omr4.networksolutionsemail.com) by psg.com with esmtp (Exim 4.60 (FreeBSD)) (envelope-from <andy@andybierman.com>) id 1FrzdX-000PQj-Pp for netconf@ops.ietf.org; Sun, 18 Jun 2006 15:56:31 +0000
Received: from mail.networksolutionsemail.com (ns-omr4.mgt.netsol.com [10.49.6.67]) by omr4.networksolutionsemail.com (8.13.6/8.12.10) with SMTP id k5IFuUn9017537 for <netconf@ops.ietf.org>; Sun, 18 Jun 2006 11:56:30 -0400
Received: (qmail 32505 invoked by uid 78); 18 Jun 2006 15:56:30 -0000
Received: from unknown (HELO ?192.168.0.12?) (andy@andybierman.com@24.24.133.237) by 10.49.36.67 with SMTP; 18 Jun 2006 15:56:30 -0000
Message-ID: <449577AF.7060401@andybierman.com>
Date: Sun, 18 Jun 2006 08:56:31 -0700
From: Andy Bierman <andy@andybierman.com>
User-Agent: Thunderbird 1.5.0.4 (Windows/20060516)
MIME-Version: 1.0
To: "Netconf (E-mail)" <netconf@ops.ietf.org>, Dan Romascanu <dromasca@avaya.com>
Subject: Additional RFC Editor Note for draft-ietf-netconf-prot-12
Content-Type: text/plain; charset="ISO-8859-1"; format="flowed"
Content-Transfer-Encoding: 7bit
Sender: owner-netconf@ops.ietf.org
Precedence: bulk
X-Spam-Score: 0.1 (/)
X-Scan-Signature: a8a20a483a84f747e56475e290ee868e

Hi,

This is an important bug fix for the netconf XSD.
The current definition does not allow for an empty node
in 3 places, which contradicts normative text in the
rest of the document.

There are 4 instances of the word 'restriction', which
need to be changed to the word 'extension':

------------------------------------------------------
draft-ietf-netconf-prot-12.txt, bottom of page 80:

OLD:

     <!--
       Type for <config> element
       -->
     <xs:complexType name="configInlineType">
       <xs:complexContent>
         <xs:restriction base="xs:anyType"/>
             ^^^^^^^^^^^
       </xs:complexContent>


NEW:


     <!--
       Type for <config> element
       -->
     <xs:complexType name="configInlineType">
       <xs:complexContent>
         <xs:extension base="xs:anyType"/>
       </xs:complexContent>

------------------------------------------------------
draft-ietf-netconf-prot-12.txt, bottom of page 80:


OLD:

     </xs:complexType>
     <!--
       Type for <data> element
       -->
     <xs:complexType name="dataInlineType">
       <xs:complexContent>
         <xs:restriction base="xs:anyType"/>
             ^^^^^^^^^^^
       </xs:complexContent>
     </xs:complexType>


NEW:

     </xs:complexType>
     <!--
       Type for <data> element
       -->
     <xs:complexType name="dataInlineType">
       <xs:complexContent>
         <xs:extension base="xs:anyType"/>
       </xs:complexContent>
     </xs:complexType>

------------------------------------------------------
draft-ietf-netconf-prot-12.txt, top of page 81:

OLD:

     <xs:complexContent>
         <xs:restriction base="xs:anyType">
             ^^^^^^^^^^^
           <xs:attribute name="type"
                         type="FilterType" default="subtree"/>
         </xs:restriction>
              ^^^^^^^^^^^
       </xs:complexContent>
     </xs:complexType>


NEW:



     <xs:complexContent>
         <xs:extension base="xs:anyType">
           <xs:attribute name="type"
                         type="FilterType" default="subtree"/>
         </xs:extension>
       </xs:complexContent>
     </xs:complexType>






--
to unsubscribe send a message to netconf-request@ops.ietf.org with
the word 'unsubscribe' in a single line as the message text body.
archive: <http://ops.ietf.org/lists/netconf/>