diff options
author | Matthias Clasen <mclasen@redhat.com> | 2013-11-06 22:01:02 -0500 |
---|---|---|
committer | Stef Walter <stefw@gnome.org> | 2013-11-10 14:26:29 +0100 |
commit | 03a2caea1f0873fec1081eb28c427b40fb16155e (patch) | |
tree | 34e74a3651ab804d11cf5749085b230a03ae83fe | |
parent | c7d0a8da52fc279e11b6cc28c8c402e9abc4f83b (diff) |
Add a man page for the gnome-keyring tool
Signed-off-by: Stef Walter <stefw@redhat.com>
https://bugzilla.gnome.org/show_bug.cgi?id=711581
-rw-r--r-- | docs/Makefile.am | 3 | ||||
-rw-r--r-- | docs/gnome-keyring.xml | 95 |
2 files changed, 97 insertions, 1 deletions
diff --git a/docs/Makefile.am b/docs/Makefile.am index de1d4c14..b766fe3d 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -1,6 +1,7 @@ man1_MANS = \ - gnome-keyring-daemon.1 + gnome-keyring-daemon.1 \ + gnome-keyring.1 \ $(NULL) MAN_IN_FILES = \ diff --git a/docs/gnome-keyring.xml b/docs/gnome-keyring.xml new file mode 100644 index 00000000..3afa45f2 --- /dev/null +++ b/docs/gnome-keyring.xml @@ -0,0 +1,95 @@ +<?xml version='1.0'?> +<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" + "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd"> + +<refentry id="adcli"> + +<refentryinfo> + <title>gnome-keyring</title> + <productname>gnome-keyring</productname> + <authorgroup> + <author> + <contrib>Maintainer</contrib> + <firstname>Stef</firstname> + <surname>Walter</surname> + <email>stefw@redhat.com</email> + </author> + </authorgroup> +</refentryinfo> + +<refmeta> + <refentrytitle>gnome-keyring</refentrytitle> + <manvolnum>1</manvolnum> + <refmiscinfo class="manual">User Commands</refmiscinfo> +</refmeta> + +<refnamediv> + <refname>gnome-keyring</refname> + <refpurpose>The gnome-keyring commandline tool</refpurpose> +</refnamediv> + +<refsynopsisdiv> + <cmdsynopsis> + <command>gnome-keyring import <arg choice="plain">FILE</arg></command> + </cmdsynopsis> + <cmdsynopsis> + <command>gnome-keyring certificate-exception</command> + </cmdsynopsis> + <cmdsynopsis> + <command>gnome-keyring version</command> + </cmdsynopsis> +</refsynopsisdiv> + +<refsect1> + <title>Description</title> + <para>The <command>gnome-keyring</command> tool can be used to + interact with gnome-keyring-daemon.</para> +</refsect1> + +<refsect1> + <title>Commands</title> + + <para>The following commands can be used:</para> + + <variablelist> + <varlistentry> + <term><command>import <arg choice="plain">FILE</arg></command></term> + <listitem> + <para>Import keys or certificates from a PKCS file.</para> + </listitem> + </varlistentry> + <varlistentry> + <term><command>certificate-exception</command></term> + <listitem> + <para>Not implemented.</para> + </listitem> + </varlistentry> + <varlistentry> + <term><command>version</command></term> + <listitem> + <para>Print the version number and exit.</para> + </listitem> + </varlistentry> + </variablelist> + +</refsect1> + +<refsect1> + <title>Bugs</title> + <para> + Please send bug reports to either the distribution bug tracker + or the upstream bug tracker at + <ulink url="https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-keyring">https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-keyring</ulink> + </para> +</refsect1> + +<refsect1> + <title>See also</title> + <simplelist type="inline"> + <member><citerefentry><refentrytitle>secret-tool</refentrytitle><manvolnum>1</manvolnum></citerefentry></member> + <member><citerefentry><refentrytitle>seahorse</refentrytitle><manvolnum>1</manvolnum></citerefentry></member> + <member><citerefentry><refentrytitle>gnome-keyring-daemon</refentrytitle><manvolnum>1</manvolnum></citerefentry></member> + </simplelist> +</refsect1> + +</refentry> |