aboutsummaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorMikkel Oscar Lyderik <mikkeloscar@gmail.com>2016-02-27 01:25:33 +0100
committerMikkel Oscar Lyderik <mikkeloscar@gmail.com>2016-02-27 01:26:17 +0100
commite19e32cf81a2f28bc9434b252facc96f1a55cb91 (patch)
tree0d181fc318e06274ea39f6acbbea3989a92d9c1f /protocols
parent5e253fdd9ac5c8733203eec9870aa0ca2cd238fd (diff)
Make protocol specifications follow the DTD
Gets rid of these warnings: WARNING: XML failed validation against built-in DTD
Diffstat (limited to 'protocols')
-rw-r--r--protocols/desktop-shell.xml2
-rw-r--r--protocols/xdg-shell.xml12
2 files changed, 11 insertions, 3 deletions
diff --git a/protocols/desktop-shell.xml b/protocols/desktop-shell.xml
index dd81574a..581f0c5d 100644
--- a/protocols/desktop-shell.xml
+++ b/protocols/desktop-shell.xml
@@ -109,12 +109,12 @@
</enum>
<request name="set_panel_position" since="3">
- <arg name="position" type="uint"/>
<description summary="set panel position">
Tell the shell which side of the screen the panel is
located. This is so that new windows do not overlap the panel
and maximized windows maximize properly.
</description>
+ <arg name="position" type="uint"/>
</request>
</interface>
diff --git a/protocols/xdg-shell.xml b/protocols/xdg-shell.xml
index 776438be..7bf4ae3a 100644
--- a/protocols/xdg-shell.xml
+++ b/protocols/xdg-shell.xml
@@ -265,24 +265,32 @@
0x0000 - 0x0FFF: xdg-shell core values, documented below.
0x1000 - 0x1FFF: GNOME
</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
event must be obeyed by the client.
+ </description>
</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
event must be obeyed by the client.
+ </description>
</entry>
<entry name="resizing" value="3">
+ <description summary="the surface is being resized">
The surface is being resized. The window geometry specified in the
configure event is a maximum; the client cannot resize beyond it.
Clients that have aspect ratio or cell sizing configuration can use
a smaller size, however.
+ </description>
</entry>
<entry name="activated" value="4">
+ <description summary="the client window is active">
Client window decorations should be painted as if the window is
active. Do not assume this means that the window actually has
keyboard or pointer focus.
+ </description>
</entry>
</enum>