[Xcb] Padding in the XML protocol descriptions

Antoine Latter aslatter at gmail.com
Fri Jan 2 12:08:17 PST 2009


On Mon, Dec 29, 2008 at 2:36 PM, Barton C Massey <bart at cs.pdx.edu> wrote:
>
> IMHO, use a LIST of CARD8 in these situations.  We'll take
> patches to the protocol descriptions.
>
> In the case of xevie, it is deprecated and has been removed
> in the latest Xorg server release, so it doesn't much matter
> what you do---folks shouldn't be using it.
>

I'll leave it alone, then.

> Should we have a deprecation mechanism for retaining
> protocol descriptions like xevie and xprint but marking them
> such that they aren't built by default and generate
> appropriate warnings?  If so, how should this look exactly?
>
>        Bart
>

We could have more optional attributes in the "xcb" element:

>>>>>
diff --git a/src/xcb.xsd b/src/xcb.xsd
index ba334d1..38984c4 100644
--- a/src/xcb.xsd
+++ b/src/xcb.xsd
@@ -36,6 +36,8 @@ authorization from the authors.
       <xsd:attribute name="extension-multiword" type="xsd:boolean"
use="optional" default="false" />
       <xsd:attribute name="major-version"   type="xsd:integer"
use="optional" />
       <xsd:attribute name="minor-version"   type="xsd:integer"
use="optional" />
+      <xsd:attribute name="deprecated" type="xsd:boolean"
use="optional" default="false" />
+      <xsd:attribute name="reference-only" type="xsd:boolean"
use="optional" default="false" />
     </xsd:complexType>
   </xsd:element>
<<<<<

This adds a "deprecated" attribute, which indicates that warnings
should be generated, as well as a "reference-only" attribute which
indicates that the XML is informational only, and nothing useful
should happen because of it.

I've not a clue how to make the XSL processing make this work for XCB,
but it could be immediately useful for my Haskell work.

-Antoine


More information about the Xcb mailing list