aboutsummaryrefslogtreecommitdiff
path: root/dicod/markup.c
blob: 419dfe311d5be63845a6aa7672919e7531339e35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/* This file is part of GNU Dico.
   Copyright (C) 2008-2019 Sergey Poznyakoff

   GNU Dico 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, or (at your option)
   any later version.

   GNU Dico 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 GNU Dico.  If not, see <http://www.gnu.org/licenses/>. */

#include <dicod.h>

static void
dicod_markup(dico_stream_t str, int argc, char **argv)
{
    const char *p;
    if (argc == 2) {
	/* Report current markup type */
	stream_printf(str, "280 %s is current markup type\n",
		      dico_markup_type);
    } else if ((p = dico_markup_lookup(argv[2]))) {
	dico_markup_type = p;
	stream_printf(str, "250 markup type set to %s\n", dico_markup_type);
    } else
	stream_writez(str, "500 invalid argument\n");
}

void
register_markup(void)
{
    static struct dicod_command cmd[] = {
	{ "OPTION MARKUP", 2, 3, "type", "Set output markup type",
	  dicod_markup },
	{ NULL }
    };
    dicod_capa_register("markup", cmd, NULL, NULL);
    if (dico_markup_register("none"))
	xalloc_die();
}

#define MARKUP_CAPA_PREFIX "markup-"

void
markup_flush_capa(void)
{
    if (dicod_capa_is_enabled("markup")) {
	dico_iterator_t itr;
	const char *p;

	itr = xdico_list_iterator(dico_markup_list);
	for (p = dico_iterator_first(itr); p; p = dico_iterator_next(itr)) {
	    size_t len = sizeof(MARKUP_CAPA_PREFIX) + strlen(p);
	    char *str = xmalloc(len);
	    strcat(strcpy(str, MARKUP_CAPA_PREFIX), p);
	    dicod_capa_register(str, NULL, NULL, NULL);
	    dicod_capa_add(str);
	}
	dico_iterator_destroy(&itr);
    }
}

Return to:

Send suggestions and report system problems to the System administrator.