Make protocol specifications follow the DTD

Gets rid of these warnings:

    WARNING: XML failed validation against built-in DTD
This commit is contained in:
Mikkel Oscar Lyderik 2016-02-27 01:25:33 +01:00
parent 5e253fdd9a
commit e19e32cf81
2 changed files with 11 additions and 3 deletions

View file

@ -109,12 +109,12 @@
</enum> </enum>
<request name="set_panel_position" since="3"> <request name="set_panel_position" since="3">
<arg name="position" type="uint"/>
<description summary="set panel position"> <description summary="set panel position">
Tell the shell which side of the screen the panel is Tell the shell which side of the screen the panel is
located. This is so that new windows do not overlap the panel located. This is so that new windows do not overlap the panel
and maximized windows maximize properly. and maximized windows maximize properly.
</description> </description>
<arg name="position" type="uint"/>
</request> </request>
</interface> </interface>

View file

@ -265,24 +265,32 @@
0x0000 - 0x0FFF: xdg-shell core values, documented below. 0x0000 - 0x0FFF: xdg-shell core values, documented below.
0x1000 - 0x1FFF: GNOME 0x1000 - 0x1FFF: GNOME
</description> </description>
<entry name="maximized" value="1" summary="the surface is maximized"> <entry name="maximized" value="1">
<description summary="the surface is maximized">
The surface is maximized. The window geometry specified in the configure The surface is maximized. The window geometry specified in the configure
event must be obeyed by the client. event must be obeyed by the client.
</description>
</entry> </entry>
<entry name="fullscreen" value="2" summary="the surface is fullscreen"> <entry name="fullscreen" value="2">
<description summary="the surface is fullscreen">
The surface is fullscreen. The window geometry specified in the configure The surface is fullscreen. The window geometry specified in the configure
event must be obeyed by the client. event must be obeyed by the client.
</description>
</entry> </entry>
<entry name="resizing" value="3"> <entry name="resizing" value="3">
<description summary="the surface is being resized">
The surface is being resized. The window geometry specified in the The surface is being resized. The window geometry specified in the
configure event is a maximum; the client cannot resize beyond it. configure event is a maximum; the client cannot resize beyond it.
Clients that have aspect ratio or cell sizing configuration can use Clients that have aspect ratio or cell sizing configuration can use
a smaller size, however. a smaller size, however.
</description>
</entry> </entry>
<entry name="activated" value="4"> <entry name="activated" value="4">
<description summary="the client window is active">
Client window decorations should be painted as if the window is Client window decorations should be painted as if the window is
active. Do not assume this means that the window actually has active. Do not assume this means that the window actually has
keyboard or pointer focus. keyboard or pointer focus.
</description>
</entry> </entry>
</enum> </enum>