Repository: incubator-guacamole-manual Updated Branches: refs/heads/master 1ab004655 -> ea3cde7ff
GUACAMOLE-231: Document Guacamole protocol "mouse" instruction. Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-manual/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-manual/commit/e98bba4d Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-manual/tree/e98bba4d Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-manual/diff/e98bba4d Branch: refs/heads/master Commit: e98bba4d7276dd50a378d61a9511868b1077f1b6 Parents: df96091 Author: Michael Jumper <[email protected]> Authored: Sat Mar 11 15:07:06 2017 -0800 Committer: Michael Jumper <[email protected]> Committed: Sat Mar 11 15:07:06 2017 -0800 ---------------------------------------------------------------------- .../instructions/client/event/mouse.xml | 2 +- .../instructions/server/control/mouse.xml | 25 ++++++++++++++++++++ src/references/protocol.xml | 1 + 3 files changed, 27 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-guacamole-manual/blob/e98bba4d/src/references/instructions/client/event/mouse.xml ---------------------------------------------------------------------- diff --git a/src/references/instructions/client/event/mouse.xml b/src/references/instructions/client/event/mouse.xml index 091f8e0..84ddabf 100644 --- a/src/references/instructions/client/event/mouse.xml +++ b/src/references/instructions/client/event/mouse.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> -<section xml:id="mouse-instruction" +<section xml:id="client-mouse-instruction" xmlns="http://docbook.org/ns/docbook" version="5.0" xml:lang="en" xmlns:xi="http://www.w3.org/2001/XInclude"> <title>mouse</title> http://git-wip-us.apache.org/repos/asf/incubator-guacamole-manual/blob/e98bba4d/src/references/instructions/server/control/mouse.xml ---------------------------------------------------------------------- diff --git a/src/references/instructions/server/control/mouse.xml b/src/references/instructions/server/control/mouse.xml new file mode 100644 index 0000000..0b569d0 --- /dev/null +++ b/src/references/instructions/server/control/mouse.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<section xml:id="server-mouse-instruction" xmlns="http://docbook.org/ns/docbook" version="5.0" + xml:lang="en" xmlns:xi="http://www.w3.org/2001/XInclude"> + <title>mouse</title> + <indexterm> + <primary>mouse</primary> + </indexterm> + <para>Reports that a user on the current connection has moved the mouse to the given + coordinates.</para> + <variablelist> + <varlistentry> + <term><parameter>x</parameter></term> + <listitem> + <para>The current X coordinate of the mouse pointer.</para> + </listitem> + </varlistentry> + <varlistentry> + <term><parameter>y</parameter></term> + <listitem> + <para>The current Y coordinate of the mouse pointer.</para> + </listitem> + </varlistentry> + </variablelist> +</section> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-guacamole-manual/blob/e98bba4d/src/references/protocol.xml ---------------------------------------------------------------------- diff --git a/src/references/protocol.xml b/src/references/protocol.xml index f429a5c..bc7ab22 100644 --- a/src/references/protocol.xml +++ b/src/references/protocol.xml @@ -111,6 +111,7 @@ <xi:include href="instructions/server/control/disconnect.xml"/> <xi:include href="instructions/server/control/error.xml"/> <xi:include href="instructions/server/control/log.xml"/> + <xi:include href="instructions/server/control/mouse.xml"/> <xi:include href="instructions/server/control/nop.xml"/> <xi:include href="instructions/server/control/ready.xml"/> <xi:include href="instructions/server/control/sync.xml"/>
