]> granicus.if.org Git - apache/commitdiff
Added various examples to the dbmmanage documentation.
authorRich Bowen <rbowen@apache.org>
Tue, 23 Nov 2004 02:05:28 +0000 (02:05 +0000)
committerRich Bowen <rbowen@apache.org>
Tue, 23 Nov 2004 02:05:28 +0000 (02:05 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@106259 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/programs/dbmmanage.xml

index fdc46cc4707c37a0e0625854763a7bb75a2678d4..af7d6edac27fcf95da6ae432615c83317c16e704 100644 (file)
@@ -26,7 +26,8 @@
 
 <summary>
     <p><code>dbmmanage</code> is used to create and update the DBM format files
-    used to store usernames and password for basic authentication of HTTP users.
+    used to store usernames and password for basic authentication of HTTP users
+    via <module>mod_auth_dbm</module>.
     Resources available from the Apache HTTP server can be restricted to just
     the users listed in the files created by <code>dbmmanage</code>. This
     program can only be used when the usernames are stored in a DBM file. To
       <dl>
       <dt><code>add</code></dt>
       <dd>Adds an entry for <var>username</var> to <var>filename</var> using the
-      encrypted password <var>encpasswd</var>.</dd>
+      encrypted password <var>encpasswd</var>.
+      
+      <example>dbmmanage passwords.dat add rbowen foKntnEF3KSXA</example>
+      </dd>
 
       <dt><code>adduser</code></dt>
       <dd>Asks for a password and then adds an entry for <var>username</var> to
-      <var>filename</var>.</dd>
+      <var>filename</var>.
+      
+      <example>dbmmanage passwords.dat adduser krietz</example>
+      </dd>
 
       <dt><code>check</code></dt>
       <dd>Asks for a password and then checks if <var>username</var> is in
-      <var>filename</var> and if it's password matches the specified one.</dd>
+      <var>filename</var> and if it's password matches the specified one.
+      
+      <example>dbmmanage passwords.dat check rbowen</example>
+      </dd>
 
       <dt><code>delete</code></dt>
-      <dd>Deletes the <var>username</var> entry from <var>filename</var>.</dd>
+      <dd>Deletes the <var>username</var> entry from <var>filename</var>.
+      
+      <example>dbmmanage passwords.dat delete rbowen</example>
+      </dd>
 
       <dt><code>import</code></dt>
       <dd>Reads <code><var>username</var>:<var>password</var></code> entries
 
       <dt><code>update</code></dt>
       <dd>Same as the <code>adduser</code> command, except that it makes
-      sure <var>username</var> already exists in <var>filename</var>.</dd>
+      sure <var>username</var> already exists in <var>filename</var>.
+      
+      <example>dbmmanage passwords.dat update rbowen</example>
+      </dd>
 
       <dt><code>view</code></dt>
       <dd>Just displays the contents of the DBM file. If you specify a
-      <var>username</var>, it displays the particular record only.</dd>
+      <var>username</var>, it displays the particular record only.
+      
+      <example>dbmmanage passwords.dat view</example>
+      </dd>
       </dl>
     </section>
 </section>