mirror of
git://git.gnupg.org/gnupg.git
synced 2025-06-12 18:11:03 +02:00

* common/helpfile.c (gnupg_get_template): Add arg locale_override and adjust all callers. * tools/wks-receive.c (struct receive_ctx_s): Add field ct_language. (get_language): New. (new_part): Call it. (wks_receive): Pass language to the result callback. * tools/gpg-wks-client.c (short_locale): New. (main): Get and store the current locale. (command_create): Fix a glitch for the Posteo hack. Insert the locale into the confirmation request. (send_confirmation_response): Ditto. * tools/gpg-wks-server.c (struct server_ctx_s): Add field language. (only_ascii): New. (struct my_subst_vars_s, my_subst_vars_cb, my_subst_vars): New. (send_confirmation_request): Use a template. (send_congratulation_message): Ditto. (check_and_publish): Pss ctx to send_congratulation_message. (command_receive_cb): Add arg language. * doc/wks-utils.txt, doc/wks-utils.de.txt: New. * doc/Makefile.am (helpfiles): Add them. -- GnuPG-bug-id: 7381 Note that the subject is not yet translated or templated due to a missing header encoding function.
86 lines
2.1 KiB
C
86 lines
2.1 KiB
C
/* t-helpfile.c - Module test for helpfile.c
|
|
* Copyright (C) 2007 Free Software Foundation, Inc.
|
|
*
|
|
* 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
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (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
|
|
* along with this program; if not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "util.h"
|
|
#include "i18n.h"
|
|
|
|
/* #define pass() do { ; } while(0) */
|
|
/* #define fail(a) do { fprintf (stderr, "%s:%d: test %d failed\n",\ */
|
|
/* __FILE__,__LINE__, (a)); \ */
|
|
/* errcount++; \ */
|
|
/* } while(0) */
|
|
|
|
static int verbose;
|
|
static int errcount;
|
|
|
|
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
char *result;
|
|
unsigned int flags = 0;
|
|
|
|
if (argc)
|
|
{ argc--; argv++; }
|
|
i18n_init ();
|
|
if (argc && !strcmp (argv[0], "--verbose"))
|
|
{
|
|
verbose = 1;
|
|
argc--; argv++;
|
|
}
|
|
if (argc && !strcmp (argv[0], "--env"))
|
|
{
|
|
flags |= GET_TEMPLATE_SUBST_ENVVARS;
|
|
argc--; argv++;
|
|
}
|
|
if (argc && !strcmp (argv[0], "--crlf"))
|
|
{
|
|
flags |= GET_TEMPLATE_CRLF;
|
|
argc--; argv++;
|
|
}
|
|
if (argc != 2)
|
|
{
|
|
fprintf (stderr, "Usage: t-helpfile [--env] [--crlf] domain key\n");
|
|
exit (2);
|
|
}
|
|
|
|
|
|
result = gnupg_get_template (argv[0], argv[1], flags, NULL);
|
|
if (!result)
|
|
{
|
|
fprintf (stderr,
|
|
"Error: nothing found for '%s' in domain '%s'\n",
|
|
argv[1], argv[0]);
|
|
errcount++;
|
|
}
|
|
else
|
|
{
|
|
printf ("domain '%s' key '%s' result='%s'\n",
|
|
argv[0], argv[1], result);
|
|
xfree (result);
|
|
}
|
|
|
|
return !!errcount;
|
|
}
|