|
|
53bdd9 |
From d2c6eae775bfa8b22246a12e85825a63d27c43fe Mon Sep 17 00:00:00 2001
|
|
|
53bdd9 |
From: =?UTF-8?q?S=C3=B8ren=20Sandmann=20Pedersen?= <ssp@redhat.com>
|
|
|
53bdd9 |
Date: Tue, 30 Jul 2013 05:49:45 -0400
|
|
|
53bdd9 |
Subject: [PATCH 2/3] Replace <itemizedlist>s with <variablelist>s
|
|
|
53bdd9 |
|
|
|
53bdd9 |
The version of DocBook in RHEL 6 generates an indent for
|
|
|
53bdd9 |
itemizedlists, but doesn't generate the corresponding
|
|
|
53bdd9 |
outdent. Workaround this by replacing the itemizedlists with
|
|
|
53bdd9 |
variablelists.
|
|
|
53bdd9 |
|
|
|
53bdd9 |
This patch is not intended for upstream since it's a hack around a bug
|
|
|
53bdd9 |
in the RHEL 6 version of docbook.
|
|
|
53bdd9 |
---
|
|
|
53bdd9 |
client/X11/xfreerdp.1.xml | 220 +++++++++++++++++++++++++++------------------
|
|
|
53bdd9 |
1 files changed, 132 insertions(+), 88 deletions(-)
|
|
|
53bdd9 |
|
|
|
53bdd9 |
diff --git a/client/X11/xfreerdp.1.xml b/client/X11/xfreerdp.1.xml
|
|
|
53bdd9 |
index d3b090b..363a245 100644
|
|
|
53bdd9 |
--- a/client/X11/xfreerdp.1.xml
|
|
|
53bdd9 |
+++ b/client/X11/xfreerdp.1.xml
|
|
|
53bdd9 |
@@ -79,7 +79,7 @@
|
|
|
53bdd9 |
<listitem>
|
|
|
53bdd9 |
<para>
|
|
|
53bdd9 |
Set the domain used in authentication to
|
|
|
53bdd9 |
- <replaceable class="parameter">domain</replaceable>.
|
|
|
53bdd9 |
+ <replaceable class="parameter">domain</replaceable>.
|
|
|
53bdd9 |
</para>
|
|
|
53bdd9 |
</listitem>
|
|
|
53bdd9 |
</varlistentry>
|
|
|
53bdd9 |
@@ -104,29 +104,38 @@
|
|
|
53bdd9 |
<listitem>
|
|
|
53bdd9 |
<para>
|
|
|
53bdd9 |
Sets the size of the FreeRDP window (and of the remote desktop, when establishing a new connection).
|
|
|
53bdd9 |
- <replaceable class="parameter">geometry</replaceable> can have one of the following forms:
|
|
|
53bdd9 |
- <itemizedlist>
|
|
|
53bdd9 |
- <listitem>
|
|
|
53bdd9 |
- <para>
|
|
|
53bdd9 |
- <replaceable class="parameter">W</replaceable>x<replaceable class="parameter">H</replaceable> -
|
|
|
53bdd9 |
- in this case the resulting window will be of
|
|
|
53bdd9 |
- <replaceable class="parameter">W</replaceable>x<replaceable class="parameter">H</replaceable> pixels.
|
|
|
53bdd9 |
- </para>
|
|
|
53bdd9 |
- </listitem>
|
|
|
53bdd9 |
- <listitem>
|
|
|
53bdd9 |
- <para>
|
|
|
53bdd9 |
- <replaceable class="parameter">P</replaceable>% -
|
|
|
53bdd9 |
- in this case the resulting window will be <replaceable class="parameter">P</replaceable>%
|
|
|
53bdd9 |
- of your screen.
|
|
|
53bdd9 |
- </para>
|
|
|
53bdd9 |
- </listitem>
|
|
|
53bdd9 |
- <listitem>
|
|
|
53bdd9 |
- <para>
|
|
|
53bdd9 |
- The special keyword <emphasis>workarea</emphasis> -
|
|
|
53bdd9 |
- in this case the resulting window will be of the same size as your workarea.
|
|
|
53bdd9 |
- </para>
|
|
|
53bdd9 |
- </listitem>
|
|
|
53bdd9 |
- </itemizedlist>
|
|
|
53bdd9 |
+ <replaceable class="parameter">geometry</replaceable> can
|
|
|
53bdd9 |
+ have one of the following forms:
|
|
|
53bdd9 |
+ <variablelist>
|
|
|
53bdd9 |
+ <varlistentry>
|
|
|
53bdd9 |
+ <term>
|
|
|
53bdd9 |
+ <replaceable class="parameter">W</replaceable>x<replaceable class="parameter">H</replaceable>
|
|
|
53bdd9 |
+ </term>
|
|
|
53bdd9 |
+ <listitem>
|
|
|
53bdd9 |
+ <para>
|
|
|
53bdd9 |
+ in this case the resulting window will be of
|
|
|
53bdd9 |
+ <replaceable class="parameter">W</replaceable>x<replaceable class="parameter">H</replaceable> pixels.
|
|
|
53bdd9 |
+ </para>
|
|
|
53bdd9 |
+ </listitem>
|
|
|
53bdd9 |
+ </varlistentry>
|
|
|
53bdd9 |
+ <varlistentry>
|
|
|
53bdd9 |
+ <term><replaceable class="parameter">P</replaceable>%</term>
|
|
|
53bdd9 |
+ <listitem>
|
|
|
53bdd9 |
+ <para>
|
|
|
53bdd9 |
+ in this case the resulting window will be <replaceable class="parameter">P</replaceable>%
|
|
|
53bdd9 |
+ of your screen.
|
|
|
53bdd9 |
+ </para>
|
|
|
53bdd9 |
+ </listitem>
|
|
|
53bdd9 |
+ </varlistentry>
|
|
|
53bdd9 |
+ <varlistentry>
|
|
|
53bdd9 |
+ <term>The special keyword <emphasis>workarea</emphasis></term>
|
|
|
53bdd9 |
+ <listitem>
|
|
|
53bdd9 |
+ <para>
|
|
|
53bdd9 |
+ in this case the resulting window will be of the same size as your workarea.
|
|
|
53bdd9 |
+ </para>
|
|
|
53bdd9 |
+ </listitem>
|
|
|
53bdd9 |
+ </varlistentry>
|
|
|
53bdd9 |
+ </variablelist>
|
|
|
53bdd9 |
</para>
|
|
|
53bdd9 |
</listitem>
|
|
|
53bdd9 |
</varlistentry>
|
|
|
53bdd9 |
@@ -211,57 +220,93 @@
|
|
|
53bdd9 |
<para>
|
|
|
53bdd9 |
Set the experience performance flags.
|
|
|
53bdd9 |
<replaceable class="parameter">flag</replaceable> can be one of:
|
|
|
53bdd9 |
- <itemizedlist>
|
|
|
53bdd9 |
- <listitem>
|
|
|
53bdd9 |
- <para>
|
|
|
53bdd9 |
- m - (modem): Equivalent to 15.
|
|
|
53bdd9 |
- </para>
|
|
|
53bdd9 |
- </listitem>
|
|
|
53bdd9 |
- <listitem>
|
|
|
53bdd9 |
- <para>
|
|
|
53bdd9 |
- b - (broadband): Equivalent to 1.
|
|
|
53bdd9 |
- </para>
|
|
|
53bdd9 |
- </listitem>
|
|
|
53bdd9 |
- <listitem>
|
|
|
53bdd9 |
- <para>
|
|
|
53bdd9 |
- l - (lan): Equivalent to 0.
|
|
|
53bdd9 |
- </para>
|
|
|
53bdd9 |
- </listitem>
|
|
|
53bdd9 |
- <listitem>
|
|
|
53bdd9 |
- <para>
|
|
|
53bdd9 |
- <replaceable class="parameter">num</replaceable> - A hexadecimal number that
|
|
|
53bdd9 |
- represents a bit-mask, were numbers mean the following
|
|
|
53bdd9 |
- <footnote><para>Taken from <ulink url="http://msdn.microsoft.com/en-us/library/cc240476%28v=prot.10%29.aspx">
|
|
|
53bdd9 |
- MS-RDPBCGR Section 2.2.1.11.1.1.1 - Extended Info Packet</ulink></para></footnote>:
|
|
|
53bdd9 |
- <itemizedlist>
|
|
|
53bdd9 |
- <listitem>
|
|
|
53bdd9 |
- <para>1: Disable desktop wallpaper.</para>
|
|
|
53bdd9 |
- </listitem>
|
|
|
53bdd9 |
- <listitem>
|
|
|
53bdd9 |
- <para>2: Disable full-window drag (only the window outline is displayed when the window is moved).</para>
|
|
|
53bdd9 |
- </listitem>
|
|
|
53bdd9 |
- <listitem>
|
|
|
53bdd9 |
- <para>4: Disable menu animations.</para>
|
|
|
53bdd9 |
- </listitem>
|
|
|
53bdd9 |
- <listitem>
|
|
|
53bdd9 |
- <para>8: Disable user interface themes.</para>
|
|
|
53bdd9 |
- </listitem>
|
|
|
53bdd9 |
- <listitem>
|
|
|
53bdd9 |
- <para>20: Disable mouse cursor shadows.</para>
|
|
|
53bdd9 |
- </listitem>
|
|
|
53bdd9 |
- <listitem>
|
|
|
53bdd9 |
- <para>40: Disable cursor blinking.</para>
|
|
|
53bdd9 |
- </listitem>
|
|
|
53bdd9 |
- <listitem>
|
|
|
53bdd9 |
- <para>80: Enable font smoothing.</para>
|
|
|
53bdd9 |
- </listitem>
|
|
|
53bdd9 |
- <listitem>
|
|
|
53bdd9 |
- <para>100: Enable Desktop Composition.</para>
|
|
|
53bdd9 |
- </listitem>
|
|
|
53bdd9 |
- </itemizedlist>
|
|
|
53bdd9 |
- </para>
|
|
|
53bdd9 |
- </listitem>
|
|
|
53bdd9 |
- </itemizedlist>
|
|
|
53bdd9 |
+ <variablelist>
|
|
|
53bdd9 |
+ <varlistentry>
|
|
|
53bdd9 |
+ <term>m - (modem)</term>
|
|
|
53bdd9 |
+ <listitem>
|
|
|
53bdd9 |
+ <para>
|
|
|
53bdd9 |
+ Equivalent to 15.
|
|
|
53bdd9 |
+ </para>
|
|
|
53bdd9 |
+ </listitem>
|
|
|
53bdd9 |
+ </varlistentry>
|
|
|
53bdd9 |
+ <varlistentry>
|
|
|
53bdd9 |
+ <term>b - (broadband)</term>
|
|
|
53bdd9 |
+ <listitem>
|
|
|
53bdd9 |
+ <para>
|
|
|
53bdd9 |
+ Equivalent to 1.
|
|
|
53bdd9 |
+ </para>
|
|
|
53bdd9 |
+ </listitem>
|
|
|
53bdd9 |
+ </varlistentry>
|
|
|
53bdd9 |
+ <varlistentry>
|
|
|
53bdd9 |
+ <term>l - (lan)</term>
|
|
|
53bdd9 |
+ <listitem>
|
|
|
53bdd9 |
+ <para>
|
|
|
53bdd9 |
+ Equivalent to 0.
|
|
|
53bdd9 |
+ </para>
|
|
|
53bdd9 |
+ </listitem>
|
|
|
53bdd9 |
+ </varlistentry>
|
|
|
53bdd9 |
+ <varlistentry>
|
|
|
53bdd9 |
+ <term><replaceable class="parameter">num</replaceable></term>
|
|
|
53bdd9 |
+ <listitem>
|
|
|
53bdd9 |
+ <para>
|
|
|
53bdd9 |
+ A hexadecimal number that
|
|
|
53bdd9 |
+ represents a bit-mask, were numbers mean the following
|
|
|
53bdd9 |
+ <footnote><para>Taken from <ulink url="http://msdn.microsoft.com/en-us/library/cc240476%28v=prot.10%29.aspx">
|
|
|
53bdd9 |
+ MS-RDPBCGR Section 2.2.1.11.1.1.1 - Extended Info Packet</ulink></para></footnote>:
|
|
|
53bdd9 |
+ <variablelist>
|
|
|
53bdd9 |
+ <varlistentry>
|
|
|
53bdd9 |
+ <term>1</term>
|
|
|
53bdd9 |
+ <listitem>
|
|
|
53bdd9 |
+ <para>Disable desktop wallpaper.</para>
|
|
|
53bdd9 |
+ </listitem>
|
|
|
53bdd9 |
+ </varlistentry>
|
|
|
53bdd9 |
+ <varlistentry>
|
|
|
53bdd9 |
+ <term>2</term>
|
|
|
53bdd9 |
+ <listitem>
|
|
|
53bdd9 |
+ <para>Disable full-window drag (only the window outline is displayed when the window is moved).</para>
|
|
|
53bdd9 |
+ </listitem>
|
|
|
53bdd9 |
+ </varlistentry>
|
|
|
53bdd9 |
+ <varlistentry>
|
|
|
53bdd9 |
+ <term>4</term>
|
|
|
53bdd9 |
+ <listitem>
|
|
|
53bdd9 |
+ <para>Disable menu animations.</para>
|
|
|
53bdd9 |
+ </listitem>
|
|
|
53bdd9 |
+ </varlistentry>
|
|
|
53bdd9 |
+ <varlistentry>
|
|
|
53bdd9 |
+ <term>8</term>
|
|
|
53bdd9 |
+ <listitem>
|
|
|
53bdd9 |
+ <para>Disable user interface themes.</para>
|
|
|
53bdd9 |
+ </listitem>
|
|
|
53bdd9 |
+ </varlistentry>
|
|
|
53bdd9 |
+ <varlistentry>
|
|
|
53bdd9 |
+ <term>20</term>
|
|
|
53bdd9 |
+ <listitem>
|
|
|
53bdd9 |
+ <para>Disable mouse cursor shadows.</para>
|
|
|
53bdd9 |
+ </listitem>
|
|
|
53bdd9 |
+ </varlistentry>
|
|
|
53bdd9 |
+ <varlistentry>
|
|
|
53bdd9 |
+ <term>40</term>
|
|
|
53bdd9 |
+ <listitem>
|
|
|
53bdd9 |
+ <para>Disable cursor blinking.</para>
|
|
|
53bdd9 |
+ </listitem>
|
|
|
53bdd9 |
+ </varlistentry>
|
|
|
53bdd9 |
+ <varlistentry>
|
|
|
53bdd9 |
+ <term>80</term>
|
|
|
53bdd9 |
+ <listitem>
|
|
|
53bdd9 |
+ <para>Enable font smoothing.</para>
|
|
|
53bdd9 |
+ </listitem>
|
|
|
53bdd9 |
+ </varlistentry>
|
|
|
53bdd9 |
+ <varlistentry>
|
|
|
53bdd9 |
+ <term>100</term>
|
|
|
53bdd9 |
+ <listitem>
|
|
|
53bdd9 |
+ <para>Enable Desktop Composition.</para>
|
|
|
53bdd9 |
+ </listitem>
|
|
|
53bdd9 |
+ </varlistentry>
|
|
|
53bdd9 |
+ </variablelist>
|
|
|
53bdd9 |
+ </para>
|
|
|
53bdd9 |
+ </listitem>
|
|
|
53bdd9 |
+ </varlistentry>
|
|
|
53bdd9 |
+ </variablelist>
|
|
|
53bdd9 |
</para>
|
|
|
53bdd9 |
</listitem>
|
|
|
53bdd9 |
</varlistentry>
|
|
|
53bdd9 |
@@ -300,8 +345,8 @@
|
|
|
53bdd9 |
<listitem>
|
|
|
53bdd9 |
<para>
|
|
|
53bdd9 |
Only authenticates. This is useful to test your credentials (username and password).
|
|
|
53bdd9 |
- Returns status code 0 if the client can connect. Requires a username,
|
|
|
53bdd9 |
- password and connection host at the command line.
|
|
|
53bdd9 |
+ Returns status code 0 if the client can connect. Requires a username,
|
|
|
53bdd9 |
+ password and connection host at the command line.
|
|
|
53bdd9 |
</para>
|
|
|
53bdd9 |
</listitem>
|
|
|
53bdd9 |
</varlistentry>
|
|
|
53bdd9 |
@@ -351,9 +396,9 @@
|
|
|
53bdd9 |
<term>--from-stdin</term>
|
|
|
53bdd9 |
<listitem>
|
|
|
53bdd9 |
<para>Prompts for unspecified arguments -u username, -p
|
|
|
53bdd9 |
- password, -d domain and connection host. This is useful to
|
|
|
53bdd9 |
- hide arguments from ps. Also useful for scripts that will
|
|
|
53bdd9 |
- feed these arguments to the client via (what else?) stdin.
|
|
|
53bdd9 |
+ password, -d domain and connection host. This is useful to
|
|
|
53bdd9 |
+ hide arguments from ps. Also useful for scripts that will
|
|
|
53bdd9 |
+ feed these arguments to the client via (what else?) stdin.
|
|
|
53bdd9 |
</para>
|
|
|
53bdd9 |
</listitem>
|
|
|
53bdd9 |
</varlistentry>
|
|
|
53bdd9 |
@@ -473,8 +518,7 @@
|
|
|
53bdd9 |
<term>--ntlm <replaceable class="parameter">version</replaceable></term>
|
|
|
53bdd9 |
<listitem>
|
|
|
53bdd9 |
<para>
|
|
|
53bdd9 |
- force NTLM protocol version to be
|
|
|
53bdd9 |
- class="parameter">version</replaceable>, which can be one of 1 or 2.
|
|
|
53bdd9 |
+ force NTLM protocol version to be <replaceable class="parameter">version</replaceable>, which can be one of 1 or 2.
|
|
|
53bdd9 |
</para>
|
|
|
53bdd9 |
</listitem>
|
|
|
53bdd9 |
</varlistentry>
|
|
|
53bdd9 |
@@ -511,14 +555,14 @@
|
|
|
53bdd9 |
</listitem>
|
|
|
53bdd9 |
</varlistentry>
|
|
|
53bdd9 |
<varlistentry>
|
|
|
53bdd9 |
- <term>--version</term>
|
|
|
53bdd9 |
- <listitem>
|
|
|
53bdd9 |
- <para>
|
|
|
53bdd9 |
+ <term>--version</term>
|
|
|
53bdd9 |
+ <listitem>
|
|
|
53bdd9 |
+ <para>
|
|
|
53bdd9 |
Print version information.
|
|
|
53bdd9 |
</para>
|
|
|
53bdd9 |
- </listitem>
|
|
|
53bdd9 |
- </varlistentry>
|
|
|
53bdd9 |
- <varlistentry>
|
|
|
53bdd9 |
+ </listitem>
|
|
|
53bdd9 |
+ </varlistentry>
|
|
|
53bdd9 |
+ <varlistentry>
|
|
|
53bdd9 |
<term>--disable-wallpaper</term>
|
|
|
53bdd9 |
<listitem>
|
|
|
53bdd9 |
<para>
|
|
|
53bdd9 |
--
|
|
|
53bdd9 |
1.7.1
|
|
|
53bdd9 |
|