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

Andy Bierman <ietf@andybierman.com> Sun, 18 June 2006 16:06 UTC

Received: from [10.91.34.44] (helo=ietf-mx.ietf.org) by megatron.ietf.org with esmtp (Exim 4.43) id 1FrznN-0000N4-6x for netconf-archive@lists.ietf.org; Sun, 18 Jun 2006 12:06:41 -0400
Received: from psg.com ([147.28.0.62]) by ietf-mx.ietf.org with esmtp (Exim 4.43) id 1FrznL-0001BA-Lv for netconf-archive@lists.ietf.org; Sun, 18 Jun 2006 12:06:41 -0400
Received: from majordom by psg.com with local (Exim 4.60 (FreeBSD)) (envelope-from <owner-netconf@ops.ietf.org>) id 1FrzgO-000Pa6-9Z for netconf-data@psg.com; Sun, 18 Jun 2006 15:59:28 +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 <ietf@andybierman.com>) id 1FrzgN-000PZd-MP for netconf@ops.ietf.org; Sun, 18 Jun 2006 15:59:27 +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 k5IFxIYR018233 for <netconf@ops.ietf.org>; Sun, 18 Jun 2006 11:59:26 -0400
Received: (qmail 860 invoked by uid 78); 18 Jun 2006 15:59:18 -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:59:18 -0000
Message-ID: <44957858.4060101@andybierman.com>
Date: Sun, 18 Jun 2006 08:59:20 -0700
From: Andy Bierman <ietf@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: 1a1bf7677bfe77d8af1ebe0e91045c5b

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/>