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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720
|
/*
* "$Id: mantohtml.c 10996 2013-05-29 11:51:34Z msweet $"
*
* Man page to HTML conversion program.
*
* Copyright 2007-2010 by Apple Inc.
* Copyright 2004-2006 by Easy Software Products.
*
* These coded instructions, statements, and computer programs are the
* property of Apple Inc. and are protected by Federal copyright
* law. Distribution and use rights are outlined in the file "LICENSE.txt"
* which should have been included with this file. If this file is
* file is missing or damaged, see the license at "http://www.cups.org/".
*
* Contents:
*
* main() - Convert a man page to HTML.
* putc_entity() - Put a single character, using entities as needed.
* strmove() - Move characters within a string.
*/
/*
* Include necessary headers.
*/
#include <cups/string-private.h>
#include <unistd.h>
/*
* Local functions...
*/
static void putc_entity(int ch, FILE *fp);
static void strmove(char *d, const char *s);
/*
* 'main()' - Convert a man page to HTML.
*/
int /* O - Exit status */
main(int argc, /* I - Number of command-line args */
char *argv[]) /* I - Command-line arguments */
{
FILE *infile, /* Input file */
*outfile; /* Output file */
char line[1024], /* Line from file */
*lineptr, /* Pointer into line */
*endptr, /* Pointer to end of current */
endchar, /* End character */
*paren, /* Pointer to parenthesis */
name[1024]; /* Man page name */
int section, /* Man page section */
pre, /* Preformatted */
font, /* Current font */
blist, /* In a bullet list? */
list, /* In a list? */
linenum; /* Current line number */
const char *post; /* Text to add after the current line */
static const char /* Start/end tags for fonts */
* const start_fonts[] = { "", "<b>", "<i>" },
* const end_fonts[] = { "", "</b>", "</i>" };
/*
* Check arguments...
*/
if (argc > 3)
{
fputs("Usage: mantohtml [filename.man [filename.html]]\n", stderr);
return (1);
}
/*
* Open files as needed...
*/
if (argc > 1)
{
if ((infile = fopen(argv[1], "r")) == NULL)
{
perror(argv[1]);
return (1);
}
}
else
infile = stdin;
if (argc > 2)
{
if ((outfile = fopen(argv[2], "w")) == NULL)
{
perror(argv[2]);
fclose(infile);
return (1);
}
}
else
outfile = stdout;
/*
* Read from input and write the output...
*/
fputs("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" "
"\"http://www.w3.org/TR/html4/loose.dtd\">\n"
"<html>\n"
"<!-- SECTION: Man Pages -->\n"
"<head>\n"
"\t<link rel=\"stylesheet\" type=\"text/css\" "
"href=\"../cups-printable.css\">\n", outfile);
blist = 0;
font = 0;
list = 0;
linenum = 0;
pre = 0;
post = NULL;
section = -1;
while (fgets(line, sizeof(line), infile))
{
linenum ++;
if (line[0] == '.')
{
/*
* Strip leading whitespace...
*/
while (line[1] == ' ' || line[1] == '\t')
strmove(line + 1, line + 2);
/*
* Process man page commands...
*/
if (!strncmp(line, ".TH ", 4) && section < 0)
{
/*
* Grab man page title...
*/
sscanf(line + 4, "%s%d", name, §ion);
fprintf(outfile,
"\t<title>%s(%d)</title>\n"
"</head>\n"
"<body>\n"
"<h1 class=\"title\">%s(%d)</h1>\n"
"%s",
name, section, name, section, start_fonts[font]);
}
else if (section < 0)
continue;
else if (!strncmp(line, ".SH ", 4) || !strncmp(line, ".SS ", 4))
{
/*
* Grab heading...
*/
int first = 1;
fputs(end_fonts[font], outfile);
if (blist)
{
fputs("</li>\n</ul>\n", outfile);
blist = 0;
}
if (list)
{
if (list == 1)
fputs("</dt>\n", outfile);
else if (list)
fputs("</dd>\n", outfile);
fputs("</dl>\n", outfile);
list = 0;
}
line[strlen(line) - 1] = '\0'; /* Strip LF */
if (line[2] == 'H')
fputs("<h2 class=\"title\"><a name=\"", outfile);
else
fputs("<h3><a name=\"", outfile);
for (lineptr = line + 4; *lineptr; lineptr ++)
if (*lineptr == '\"')
continue;
else if (*lineptr == ' ')
putc_entity('_', outfile);
else
putc_entity(*lineptr, outfile);
fputs("\">", outfile);
for (lineptr = line + 4; *lineptr; lineptr ++)
if (*lineptr == '\"')
continue;
else if (*lineptr == ' ')
{
putc_entity(' ', outfile);
first = 1;
}
else
{
if (first)
putc_entity(*lineptr, outfile);
else
putc_entity(tolower(*lineptr), outfile);
first = 0;
}
if (line[2] == 'H')
fprintf(outfile, "</a></h2>\n%s", start_fonts[font]);
else
fprintf(outfile, "</a></h3>\n%s", start_fonts[font]);
}
else if (!strncmp(line, ".LP", 3) || !strncmp(line, ".PP", 3))
{
/*
* New paragraph...
*/
fputs(end_fonts[font], outfile);
if (blist)
{
fputs("</li>\n</ul>\n", outfile);
blist = 0;
}
if (list)
{
if (list == 1)
fputs("</dt>\n", outfile);
else if (list)
fputs("</dd>\n", outfile);
fputs("</dl>\n", outfile);
list = 0;
}
fputs("<p>", outfile);
font = 0;
}
else if (!strncmp(line, ".TP ", 4))
{
/*
* Grab list...
*/
fputs(end_fonts[font], outfile);
if (blist)
{
fputs("</li>\n</ul>\n", outfile);
blist = 0;
}
if (!list)
fputs("<dl>\n", outfile);
else if (list == 1)
fputs("</dt>\n", outfile);
else if (list)
fputs("</dd>\n", outfile);
fputs("<dt>", outfile);
list = 1;
font = 0;
}
else if (!strncmp(line, ".br", 3))
{
/*
* Grab line break...
*/
if (list == 1)
{
fputs("</dt>\n<dd>", outfile);
list = 2;
}
else if (list)
fputs("</dd>\n<dd>", outfile);
else
fputs("<br>\n", outfile);
}
else if (!strncmp(line, ".de ", 4))
{
/*
* Define macro - ignore...
*/
while (fgets(line, sizeof(line), infile))
{
linenum ++;
if (!strncmp(line, "..", 2))
break;
}
}
else if (!strncmp(line, ".RS", 3))
{
/*
* Indent...
*/
fputs("<div style='margin-left: 3em;'>\n", outfile);
}
else if (!strncmp(line, ".RE", 3))
{
/*
* Unindent...
*/
fputs("</div>\n", outfile);
}
else if (!strncmp(line, ".ds ", 4) || !strncmp(line, ".rm ", 4) ||
!strncmp(line, ".tr ", 4) || !strncmp(line, ".hy ", 4) ||
!strncmp(line, ".IX ", 4) || !strncmp(line, ".PD", 3) ||
!strncmp(line, ".Sp", 3))
{
/*
* Ignore unused commands...
*/
}
else if (!strncmp(line, ".Vb", 3) || !strncmp(line, ".nf", 3))
{
/*
* Start preformatted...
*/
pre = 1;
fputs("<pre>\n", outfile);
}
else if (!strncmp(line, ".Ve", 3) || !strncmp(line, ".fi", 3))
{
/*
* End preformatted...
*/
if (pre)
{
pre = 0;
fputs("</pre>\n", outfile);
}
}
else if (!strncmp(line, ".IP \\(bu", 8))
{
/*
* Bullet list...
*/
if (blist)
fputs("</li>\n", outfile);
else
{
fputs("<ul>\n", outfile);
blist = 1;
}
fputs("<li>", outfile);
}
else if (!strncmp(line, ".IP ", 4))
{
/*
* Indented paragraph...
*/
if (blist)
{
fputs("</li>\n</ul>\n", outfile);
blist = 0;
}
fputs("<p style='margin-left: 3em;'>", outfile);
for (lineptr = line + 4; isspace(*lineptr); lineptr ++);
if (*lineptr == '\"')
{
strmove(line, lineptr + 1);
if ((lineptr = strchr(line, '\"')) != NULL)
*lineptr = '\0';
}
else
{
strmove(line, lineptr);
if ((lineptr = strchr(line, ' ')) != NULL)
*lineptr = '\0';
}
/*
* Process the text as if it was in-line...
*/
post = "\n<br>\n<br>";
goto process_text;
}
else if (!strncmp(line, ".\\}", 3))
{
/*
* Ignore close block...
*/
}
else if (!strncmp(line, ".ie", 3) || !strncmp(line, ".if", 3) ||
!strncmp(line, ".el", 3))
{
/*
* If/else - ignore...
*/
if (strchr(line, '{') != NULL)
{
/*
* Skip whole block...
*/
while (fgets(line, sizeof(line), infile))
{
linenum ++;
if (strchr(line, '}') != NULL)
break;
}
}
}
#if 0
else if (!strncmp(line, ". ", 4))
{
/*
* Grab ...
*/
}
#endif /* 0 */
else if (!strncmp(line, ".B ", 3))
{
/*
* Grab bold text...
*/
fprintf(outfile, "%s<b>%s</b>%s", end_fonts[font], line + 3,
start_fonts[font]);
}
else if (!strncmp(line, ".I ", 3))
{
/*
* Grab italic text...
*/
fprintf(outfile, "%s<i>%s</i>%s", end_fonts[font], line + 3,
start_fonts[font]);
}
else if (strncmp(line, ".\\\"", 3))
{
/*
* Unknown...
*/
if ((lineptr = strchr(line, ' ')) != NULL)
*lineptr = '\0';
else if ((lineptr = strchr(line, '\n')) != NULL)
*lineptr = '\0';
fprintf(stderr, "mantohtml: Unknown man page command \'%s\' on line %d!\n",
line, linenum);
}
/*
* Skip continuation lines...
*/
lineptr = line + strlen(line) - 2;
if (lineptr >= line && *lineptr == '\\')
{
while (fgets(line, sizeof(line), infile))
{
linenum ++;
lineptr = line + strlen(line) - 2;
if (lineptr < line || *lineptr != '\\')
break;
}
}
}
else
{
/*
* Process man page text...
*/
process_text:
for (lineptr = line; *lineptr; lineptr ++)
{
if (!strncmp(lineptr, "http://", 7))
{
/*
* Embed URL...
*/
for (endptr = lineptr + 7;
*endptr && !isspace(*endptr & 255);
endptr ++);
endchar = *endptr;
*endptr = '\0';
fprintf(outfile, "<a href='%s'>%s</a>", lineptr, lineptr);
*endptr = endchar;
lineptr = endptr - 1;
}
else if (!strncmp(lineptr, "\\fI", 3) &&
(endptr = strstr(lineptr, "\\fR")) != NULL &&
(paren = strchr(lineptr, '(')) != NULL &&
paren < endptr)
{
/*
* Link to man page?
*/
char manfile[1024], /* Man page filename */
manurl[1024]; /* Man page URL */
/*
* See if the man file is available locally...
*/
lineptr += 3;
endchar = *paren;
*paren = '\0';
snprintf(manfile, sizeof(manfile), "%s.man", lineptr);
snprintf(manurl, sizeof(manurl), "man-%s.html?TOPIC=Man+Pages",
lineptr);
*paren = endchar;
endchar = *endptr;
*endptr = '\0';
if (access(manfile, 0))
{
/*
* Not a local man page, just do it italic...
*/
fputs("<i>", outfile);
while (*lineptr)
putc_entity(*lineptr++, outfile);
fputs("</i>", outfile);
}
else
{
/*
* Local man page, do a link...
*/
fprintf(outfile, "<a href='%s'>", manurl);
while (*lineptr)
putc_entity(*lineptr++, outfile);
fputs("</a>", outfile);
}
*endptr = endchar;
lineptr = endptr + 2;
}
else if (*lineptr == '\\')
{
lineptr ++;
if (!*lineptr)
break;
else if (isdigit(lineptr[0]) && isdigit(lineptr[1]) &&
isdigit(lineptr[2]))
{
fprintf(outfile, "&#%d;", ((lineptr[0] - '0') * 8 +
lineptr[1] - '0') * 8 +
lineptr[2] - '0');
lineptr += 2;
}
else if (*lineptr == '&')
continue;
else if (*lineptr == 's')
{
while (lineptr[1] == '-' || isdigit(lineptr[1]))
lineptr ++;
}
else if (*lineptr == '*')
{
lineptr += 2;
}
else if (*lineptr != 'f')
putc_entity(*lineptr, outfile);
else
{
lineptr ++;
if (!*lineptr)
break;
else
{
fputs(end_fonts[font], outfile);
switch (*lineptr)
{
default : /* Regular */
font = 0;
break;
case 'B' : /* Bold */
case 'b' :
font = 1;
break;
case 'I' : /* Italic */
case 'i' :
font = 2;
break;
}
fputs(start_fonts[font], outfile);
}
}
}
else
putc_entity(*lineptr, outfile);
}
if (post)
{
fputs(post, outfile);
post = NULL;
}
if (list == 1)
{
fputs("</dt>\n<dd>", outfile);
list = 2;
}
}
}
fprintf(outfile, "%s\n", end_fonts[font]);
if (blist)
{
fputs("</li>\n</ul>\n", outfile);
}
if (list)
{
if (list == 1)
fputs("</dt>\n", outfile);
else if (list)
fputs("</dd>\n", outfile);
fputs("</dl>\n", outfile);
}
fputs("</body>\n"
"</html>\n", outfile);
/*
* Close files...
*/
if (infile != stdin)
fclose(infile);
if (outfile != stdout)
fclose(outfile);
/*
* Return with no errors...
*/
return (0);
}
/*
* 'putc_entity()' - Put a single character, using entities as needed.
*/
static void
putc_entity(int ch, /* I - Character */
FILE *fp) /* I - File */
{
if (ch == '&')
fputs("&", fp);
else if (ch == '<')
fputs("<", fp);
else
putc(ch, fp);
}
/*
* 'strmove()' - Move characters within a string.
*/
static void
strmove(char *d, /* I - Destination */
const char *s) /* I - Source */
{
while (*s)
*d++ = *s++;
*d = '\0';
}
/*
* End of "$Id: mantohtml.c 10996 2013-05-29 11:51:34Z msweet $".
*/
|