=================================================================== RCS file: /cvs/mandoc/Attic/mdocml.c,v retrieving revision 1.13 retrieving revision 1.17 diff -u -p -r1.13 -r1.17 --- mandoc/Attic/mdocml.c 2008/11/27 17:27:50 1.13 +++ mandoc/Attic/mdocml.c 2008/12/04 11:25:29 1.17 @@ -1,4 +1,4 @@ -/* $Id: mdocml.c,v 1.13 2008/11/27 17:27:50 kristaps Exp $ */ +/* $Id: mdocml.c,v 1.17 2008/12/04 11:25:29 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -33,6 +33,12 @@ #define BUFFER_IN_DEF BUFSIZ /* See begin_bufs. */ #define BUFFER_OUT_DEF BUFSIZ /* See begin_bufs. */ +#ifdef DEBUG +#define CSS "mdocml.css" +#else +#define CSS "/usr/local/share/mdocml/mdocml.css" +#endif + static void usage(void); static int begin_io(const struct md_args *, @@ -57,9 +63,29 @@ main(int argc, char *argv[]) out = in = NULL; (void)memset(&args, 0, sizeof(struct md_args)); - - while (-1 != (c = getopt(argc, argv, "o:vW"))) + + args.type = MD_XML; + + while (-1 != (c = getopt(argc, argv, "c:ef:o:vW"))) switch (c) { + case ('c'): + if (args.type != MD_HTML) + errx(1, "-c only valid for -fhtml"); + args.params.html.css = optarg; + break; + case ('e'): + if (args.type != MD_HTML) + errx(1, "-e only valid for -fhtml"); + args.params.html.flags |= HTML_CSS_EMBED; + break; + case ('f'): + if (0 == strcmp(optarg, "html")) + args.type = MD_HTML; + else if (0 == strcmp(optarg, "xml")) + args.type = MD_XML; + else + errx(1, "invalid filter type"); + break; case ('o'): out = optarg; break; @@ -74,14 +100,16 @@ main(int argc, char *argv[]) return(1); } + if (MD_HTML == args.type) + if (NULL == args.params.html.css) + args.params.html.css = CSS; + argv += optind; argc -= optind; if (1 == argc) in = *argv++; - args.type = MD_DUMMY; - return(begin_io(&args, out ? out : "-", in ? in : "-")); } @@ -108,6 +136,9 @@ leave_io(const struct md_buf *out, warn("%s", out->name); c = 1; } + if (1 == c && STDOUT_FILENO != out->fd) + if (-1 == unlink(out->name)) + warn("%s", out->name); return(c); } @@ -219,5 +250,6 @@ usage(void) { extern char *__progname; - (void)printf("usage: %s [-vW] [-o outfile] [infile]\n", __progname); + (void)printf("usage: %s [-vW] [-f filter] [-o outfile] " + "[infile]\n", __progname); }