1998-11-27 12:42:49 +01:00
|
|
|
/* helptext.c - English help texts
|
2006-04-19 13:26:11 +02:00
|
|
|
* Copyright (C) 1998, 1999, 2000, 2001, 2002,
|
2007-12-04 16:00:14 +01:00
|
|
|
* 2004, 2007 Free Software Foundation, Inc.
|
1998-11-27 12:42:49 +01:00
|
|
|
*
|
|
|
|
* This file is part of GnuPG.
|
|
|
|
*
|
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-07-04 21:49:40 +02:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
1998-11-27 12:42:49 +01:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GnuPG is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2007-07-04 21:49:40 +02:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
1998-11-27 12:42:49 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2003-06-18 21:56:13 +02:00
|
|
|
|
|
|
|
#include "gpg.h"
|
1998-11-27 12:42:49 +01:00
|
|
|
#include "util.h"
|
|
|
|
#include "ttyio.h"
|
|
|
|
#include "main.h"
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-12-04 16:00:14 +01:00
|
|
|
/* Helper to get the help through the configurable GnuPG help
|
|
|
|
system. */
|
|
|
|
static char *
|
|
|
|
get_help_from_file (const char *keyword)
|
|
|
|
{
|
|
|
|
char *key, *result;
|
|
|
|
|
|
|
|
key = xtrymalloc (4 + strlen (keyword) + 1);
|
|
|
|
if (key)
|
|
|
|
{
|
|
|
|
strcpy (stpcpy (key, "gpg."), keyword);
|
|
|
|
result = gnupg_get_help_string (key, 0);
|
|
|
|
xfree (key);
|
|
|
|
if (result && !is_native_utf8 ())
|
|
|
|
{
|
|
|
|
char *tmp = utf8_to_native (result, strlen (result), -1);
|
|
|
|
if (tmp)
|
|
|
|
{
|
|
|
|
xfree (result);
|
|
|
|
result = tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
result = NULL;
|
|
|
|
return result;
|
|
|
|
}
|
1998-11-27 12:42:49 +01:00
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
display_online_help( const char *keyword )
|
|
|
|
{
|
2007-12-04 16:00:14 +01:00
|
|
|
char *result;
|
|
|
|
int need_final_lf = 1;
|
|
|
|
|
|
|
|
tty_kill_prompt();
|
|
|
|
if ( !keyword )
|
|
|
|
tty_printf (_("No help available") );
|
|
|
|
else if ( (result = get_help_from_file (keyword)) )
|
|
|
|
{
|
|
|
|
tty_printf ("%s", result);
|
|
|
|
if (*result && result[strlen (result)-1] == '\n')
|
|
|
|
need_final_lf = 0;
|
|
|
|
xfree (result);
|
1998-11-27 12:42:49 +01:00
|
|
|
}
|
2011-02-04 12:57:53 +01:00
|
|
|
else
|
2007-12-04 16:00:14 +01:00
|
|
|
{
|
2012-06-05 19:29:22 +02:00
|
|
|
tty_printf (_("No help available for '%s'"), keyword );
|
2007-12-04 16:00:14 +01:00
|
|
|
}
|
|
|
|
if (need_final_lf)
|
1998-11-27 12:42:49 +01:00
|
|
|
tty_printf("\n");
|
|
|
|
}
|