Gentoo Archives: gentoo-commits

From: Devan Franchini <twitch153@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/webapp-config:experimental commit in: doc/
Date: Tue, 23 Sep 2014 17:09:13
Message-Id: 1411492001.f6cd6abf825f776489acaf5f584a1b21d141d0ea.twitch153@gentoo
1 commit: f6cd6abf825f776489acaf5f584a1b21d141d0ea
2 Author: Devan Franchini <twitch153 <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 23 16:50:02 2014 +0000
4 Commit: Devan Franchini <twitch153 <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 23 17:06:41 2014 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/webapp-config.git;a=commit;h=f6cd6abf
7
8 webapp-config.8.xml: clarifies man page for --dd and --vf flags
9
10 This commit corrects a typo where the short option for --default-dirs
11 is --vd instead of --dd, this has been corrected. Secondly, it also
12 attempts to make it clearer to the user that the --dd and --vf options
13 are two separate options and should not be treated equally by listing
14 them in two separate variable list entries.
15
16 X-Gentoo-Bug: 257592
17 X-Gentoo-Bug-URL: https://bugs.gentoo.org/257592
18
19 ---
20 doc/webapp-config.8.xml | 36 +++++++++++++++++++++++++++++++-----
21 1 file changed, 31 insertions(+), 5 deletions(-)
22
23 diff --git a/doc/webapp-config.8.xml b/doc/webapp-config.8.xml
24 index e4141a1..5ab475d 100644
25 --- a/doc/webapp-config.8.xml
26 +++ b/doc/webapp-config.8.xml
27 @@ -502,8 +502,34 @@
28 </varlistentry>
29
30 <varlistentry>
31 - <term><option>--default-dirs</option> <replaceable>type</replaceable></term>
32 - <term><option>--vd</option> <replaceable>type</replaceable></term>
33 + <term><option>--default-dirs</option></term>
34 + <term><option>--dd</option></term>
35 + <listitem>
36 + <para><replaceable>type</replaceable> must be one of:</para>
37 + <variablelist>
38 + <varlistentry>
39 + <term>server-owned</term>
40 + <listitem>
41 + <para>Directories are owned by the user that the web server runs as. Use the <option>-s</option> switch to specify which web server to use.</para>
42 + </listitem>
43 + </varlistentry>
44 + <varlistentry>
45 + <term>config-owned</term>
46 + <listitem>
47 + <para>Directories are owned by the user and group specified with the <option>-u</option> and <option>-g</option> switches.</para>
48 + </listitem>
49 + </varlistentry>
50 + <varlistentry>
51 + <term>virtual</term>
52 + <listitem>
53 + <para>Directories are shared; no local copy is created.</para>
54 + </listitem>
55 + </varlistentry>
56 + </variablelist>
57 + </listitem>
58 + </varlistentry>
59 +
60 + <varlistentry>
61 <term><option>--virtual-files</option> <replaceable>type</replaceable></term>
62 <term><option>--vf</option> <replaceable>type</replaceable></term>
63 <listitem>
64 @@ -512,19 +538,19 @@
65 <varlistentry>
66 <term>server-owned</term>
67 <listitem>
68 - <para>Directories or files are owned by the user that the web server runs as. Use the <option>-s</option> switch to specify which web server to use.</para>
69 + <para>Files are owned by the user that the web server runs as. Use the <option>-s</option> switch to specify which web server to use.</para>
70 </listitem>
71 </varlistentry>
72 <varlistentry>
73 <term>config-owned</term>
74 <listitem>
75 - <para>Directories or files are owned by the user and group specified with the <option>-u</option> and <option>-g</option> switches.</para>
76 + <para>Files are owned by the user and group specified with the <option>-u</option> and <option>-g</option> switches.</para>
77 </listitem>
78 </varlistentry>
79 <varlistentry>
80 <term>virtual</term>
81 <listitem>
82 - <para>Directories or files are shared; no local copy is created.</para>
83 + <para>Files are shared; no local copy is created.</para>
84 </listitem>
85 </varlistentry>
86 </variablelist>