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 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931
|
/*
* help.c: handles the help stuff for irc
*
* Written by Michael Sandrof
* Extensively modified by Troy Rollo
* Re-modified by Matthew Green
*
* Copyright(c) 1992
*
* See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT
*/
/*
* This has been replaced almost entirely from the original by Michael
* Sandrof in order to fit in with the multiple screen code.
*
* ugh, this wasn't easy to do, but I got there, after working out what
* had been changed and why, by myself - phone, October 1992.
*
* And when I started getting /window create working, I discovered new
* bugs, and there has been a few more major changes in here again.
* It is illegal to call help from more than one screen, at the moment,
* because there is to much to keep track of - phone, jan 1993.
*/
#if 0
static char rcsid[] = "@(#)$Id: help.c,v 1.23 1994/07/03 09:47:07 mrg Exp $";
#endif
#include "irc.h"
/* stuff from gnu autoconf docs */
#ifdef NeXT /* ugly hack 'cause configure don't grok it -phone */
# define SYSDIR
#endif
#if defined(HAVE_DIRENT_H) || defined(_POSIX_SOURCE)
# include <dirent.h>
#else
# define dirent direct
# ifdef HAVE_SYS_NDIR_H
# include <sys/ndir.h>
# endif
# ifdef HAVE_SYS_DIR_H
# include <sys/dir.h>
# endif
# ifdef HAVE_NDIR_H
# include <ndir.h>
# endif
#endif
#include <sys/stat.h>
#ifdef HAVE_STDARG_H
#include <stdarg.h>
#endif
#include "help.h"
#include "input.h"
#include "ircaux.h"
#include "output.h"
#include "screen.h"
#include "server.h"
#include "term.h"
#include "vars.h"
#include "window.h"
#if defined(ISC22)
extern char *strrchr();
# define rindex strrchr
# include <sys/dirent.h>
# define direct dirent
#endif /* ISC22 */
/* Forward declarations */
static void help_me _((char *, char *));
static void help_show_paused_topic _((char *, char *));
static void create_help_window _((void));
static void set_help_screen _((Screen *));
/*
* A few variables here - A lot added to get help working with
* non - recursive calls to irc_io, and also have it still
* reading things from the server(s), so not to ping timeout.
*/
static int dont_pause_topic = 0;
static int entry_size;
static int finished_help_paging = 0;
static FILE * help_fp;
static int help_paused_lines;
static char * help_paused_topic[100]; /* 100 should be enough */
static Screen *help_screen = (Screen *) 0;
static int help_show_directory = 0;
static char help_topic_list[BIG_BUFFER_SIZE + 1];
static Window *help_window = (Window *) 0;
static char no_help[] = "NOHELP";
static char paused_topic[128];
static char * this_arg;
static int use_help_window = 0;
#ifdef USE_HELP_BOTS
static int use_help_service = 0;
#endif
/* compar: used by scandir to alphabetize the help entries */
#ifdef __STDC__
static int compar (struct dirent **e1, struct dirent **e2)
#else
static int compar(e1, e2)
struct dirent **e1,
**e2;
#endif
{
return (my_stricmp((*e1)->d_name, (*e2)->d_name));
}
/*
* selectent: used by scandir to decide which entries to include in the help
* listing.
*/
#ifdef __STDC__
static int selectent (struct dirent *entry)
#else
static int selectent(entry)
struct dirent *entry;
#endif
{
if (*(entry->d_name) == '.')
return (0);
if (my_strnicmp(entry->d_name, this_arg, strlen(this_arg)))
return (0);
else
{
int len = strlen(entry->d_name);
char *temp = entry->d_name;
/*
* See how long the uncompressed part of the filename is..
* Before the scandir call, entry_size is set to 0, and this
* right here will (eventually) set entry_size to the filename
* with the longest length (not counting compression suffixes)
* which will then be used as the column width. Slick.
*/
if (! end_strcmp (temp, ".gz", 3))
len -= 3;
else if (! end_strcmp (temp, ".Z", 2))
len -= 2;
else if (! end_strcmp (temp, ".z", 2))
len -= 2;
entry_size = (len > entry_size) ? len : entry_size;
return (1);
}
}
/*
* show_help: show's either a page of text from a help_fp, or the whole
* thing, depending on the value of HELP_PAGER_VAR. If it gets to the end,
* (in either case it will eventally), it closes the file, and returns 0
* to indicate this.
*/
#ifdef __STDC__
static int show_help (Window *window, char *name)
#else
static int show_help(window, name)
Window *window;
char *name;
#endif
{
Window *old_window;
int rows = 0;
char line[256];
if (window)
{
old_window = curr_scr_win;
curr_scr_win = window;
}
else
{
old_window = (Window *) 0;
window = curr_scr_win;
}
if (get_int_var(HELP_PAGER_VAR))
rows = window->display_size;
while (--rows)
{
if (fgets(line, 255, help_fp))
{
if (*(line + strlen(line) - 1) == '\n')
*(line + strlen(line) - 1) = (char) 0;
/*
* I want to remove the else portion of this code, as I
* find it offsensive, but too many help files rely on
* it.. sigh.. -phone
*/
#if NON_FASCIST_HELP
help_put_it(name, "%s", line);
#else
switch (*line)
{
case '*':
if (get_server_operator(from_server))
help_put_it(name, "%s", line + 1);
break;
case '-':
if (!get_server_operator(from_server))
help_put_it(name, "%s", line + 1);
break;
default:
help_put_it(name, "%s", line);
break;
}
#endif
}
else
{
curr_scr_win = old_window;
fclose(help_fp);
help_fp = NULL;
return (0);
}
}
curr_scr_win = old_window;
return (1);
}
/*
* help_prompt: The main procedure called to display the help file
* currently being accessed. Using add_wait_prompt(), it sets it
* self up to be recalled when the next page is asked for. If
* called when we have finished paging the help file, we exit, as
* there is nothing left to show. If line is 'q' or 'Q', exit the
* help pager, clean up, etc.. If all is cool for now, we call
* show_help, and either if its finished, exit, or prompt for the
* next page. From here, if we've finished the help page, and
* doing help prompts, prompt for the help..
*/
#ifdef __STDC__
static void help_prompt (char *name, char *line)
#else
static void help_prompt(name, line)
char *name,
*line;
#endif
{
if (finished_help_paging)
{
if (*paused_topic)
help_show_paused_topic(paused_topic, empty_string);
return;
}
if (line && ((*line == 'q') || (*line == 'Q')))
{
finished_help_paging = 1;
fclose(help_fp);
help_fp = NULL;
set_help_screen((Screen *) 0);
return;
}
if (show_help(help_window, name))
{
if (dumb)
help_prompt(name, NULL);
else
add_wait_prompt("*** Hit any key for more, 'q' to quit ***",
help_prompt, name, WAIT_PROMPT_KEY);
}
else
{
finished_help_paging = 1;
if (help_fp)
fclose(help_fp);
help_fp = NULL;
if (help_show_directory)
{
if (get_int_var(HELP_PAGER_VAR))
{
if (dumb)
help_show_paused_topic(name, empty_string);
else
add_wait_prompt("*** Hit any key to end ***",
help_show_paused_topic, paused_topic,
WAIT_PROMPT_KEY);
}
else
{
help_show_paused_topic(paused_topic, empty_string);
set_help_screen((Screen *) 0);
}
help_show_directory = 0;
return;
}
}
if (finished_help_paging)
{
if (get_int_var(HELP_PROMPT_VAR))
{
char tmp[BIG_BUFFER_SIZE + 1];
sprintf(tmp, "%s%sHelp? ", help_topic_list,
*help_topic_list ? " " : empty_string);
if (!dumb)
add_wait_prompt(tmp, help_me, help_topic_list,
WAIT_PROMPT_LINE);
}
else
{
if (*paused_topic)
help_show_paused_topic(paused_topic, empty_string);
set_help_screen((Screen *) 0);
}
}
}
/*
* help_topic: Given a topic, we search the help directory, and try to
* find the right file, if all is cool, and we can open it, or zcat it,
* then we call help_prompt to get the actually displaying of the file
* on the road.
*/
#ifdef __STDC__
static void help_topic (char *path, char *name)
#else
static void help_topic(path, name)
char *path;
char *name;
#endif
{
char *filename = (char *) 0;
if (name == (char *) 0)
return;
/* what is the base name? */
malloc_sprintf(&filename, "%s/%s", path, name);
/* let uzfopen have all the fun */
help_fp = uzfopen (&filename, path);
if (!help_fp)
{
help_put_it (name, "*** No help available on %s: Use ? for list of topics", name);
return;
}
/* Isnt this a heck of a lot better then the kludge you were using? */
help_put_it(name, "*** Help on %s", name);
help_prompt(name, (char *) 0);
return;
}
/*
* help_pause_add_line: this procedure does a help_put_it() call, but
* puts off the calling, until help_show_paused_topic() is called.
* I do this because I need to create the list of help topics, but
* not show them, until we've seen the whole file, so we called
* help_show_paused_topic() when we've seen the file, if it is needed.
*/
#if defined(__STDC__) && defined(HAVE_STDARG_H)
static void help_pause_add_line (char *format, ...)
#else
static void help_pause_add_line(format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10)
char *format;
char *arg1, *arg2, *arg3, *arg4, *arg5,
*arg6, *arg7, *arg8, *arg9, *arg10;
#endif
{
char buf[BIG_BUFFER_SIZE];
#if defined(__STDC__) && defined(HAVE_STDARG_H)
va_list args;
va_start (args, format);
vsprintf(buf, format, args);
va_end (args);
#else
sprintf(buf, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7,
arg8, arg9, arg10);
#endif
malloc_strcpy(&help_paused_topic[help_paused_lines], buf);
help_paused_lines++;
}
/*
* help_show_paused_topic: see above. Called when we've seen the
* whole help file, and we have a list of topics to display.
*/
#ifdef __STDC__
static void help_show_paused_topic (char *name, char *line)
#else
static void help_show_paused_topic(name, line)
char *name, *line;
#endif
{
static int i = 0;
int j = 0;
int rows;
if (!help_paused_lines)
return;
if ((*line == 'q') || (*line == 'Q'))
i = help_paused_lines + 1; /* just big enough */
rows = help_window->display_size;
if (i < help_paused_lines)
{
for (j = 0; j < rows; j++)
{
help_put_it (name, "%s", help_paused_topic[i]);
new_free(&help_paused_topic[i]);
/* if we're done, the recurse to break loop */
if (++i >= help_paused_lines)
break;
}
if (!dumb)
{
if ((i < help_paused_lines) && get_int_var(HELP_PAGER_VAR))
add_wait_prompt("[MORE]", help_show_paused_topic, name, WAIT_PROMPT_KEY);
}
else
help_show_paused_topic(name, line);
}
/* this cant be an else of the previous if because 'i' can
* change in the previous if and we need to test it again
*/
if (i >= help_paused_lines)
{
if (get_int_var(HELP_PROMPT_VAR))
{
char buf[BIG_BUFFER_SIZE];
sprintf(buf, "%s%sHelp? ", name, (name && *name) ? " " : empty_string);
if (!dumb)
add_wait_prompt(buf, help_me, name, WAIT_PROMPT_LINE);
}
else
set_help_screen((Screen *) 0);
dont_pause_topic = 0;
help_paused_lines = 0;
i = 0;
}
}
/*
* help_me: The big one. The help procedure that handles working out
* what was actually requested, sets up the paused topic list if it is
* needed, does pretty much all the hard work.
*/
#ifdef __STDC__
static void help_me (char *topics, char *args)
#else
static void help_me(topics, args)
char *topics;
char *args;
#endif
{
char * ptr;
struct dirent **namelist = NULL;
int entries,
free_cnt = 0,
cnt,
i,
cols;
struct stat stat_buf;
char path[BIG_BUFFER_SIZE+1];
int help_paused_first_call = 0;
char * help_paused_path = (char *) 0;
char * help_paused_name = (char *) 0;
char * temp;
char tmp[BIG_BUFFER_SIZE+1];
char buffer[BIG_BUFFER_SIZE+1];
strcpy(help_topic_list, topics);
ptr = get_string_var(HELP_PATH_VAR);
sprintf(path, "%s/%s", ptr, topics);
for (ptr = path; (ptr = index(ptr, ' '));)
*ptr = '/';
/*
* first we check access to the help dir, whinge if we can't, then
* work out we need to ask them for more help, else we check the
* args list, and do the stuff
*/
if (help_show_directory)
{
help_show_paused_topic(paused_topic, empty_string);
help_show_directory = 0;
}
finished_help_paging = 0;
if (access(path, R_OK|X_OK))
{
help_put_it(no_help, "*** Cannot access help directory!");
set_help_screen((Screen *) 0);
return;
}
this_arg = next_arg(args, &args);
if (!this_arg && *help_topic_list && get_int_var(HELP_PROMPT_VAR))
{
if ((temp = rindex(help_topic_list, ' ')) != NULL)
*temp = '\0';
else
*help_topic_list = '\0';
sprintf(tmp, "%s%sHelp? ", help_topic_list, *help_topic_list ? " " : empty_string);
if (!dumb)
add_wait_prompt(tmp, help_me, help_topic_list, WAIT_PROMPT_LINE);
return;
}
if (!this_arg)
{
set_help_screen((Screen *) 0);
return;
}
create_help_window();
/*
* This is just a bogus while loop which is intended to allow
* the user to do '/help alias expressions' without having to
* include a slash inbetween the topic and subtopic.
*
* If all goes well, we 'break' at the bottom of the loop.
*/
while (this_arg)
{
message_from((char *) 0, LOG_CURRENT);
if (!*this_arg)
help_topic(path, NULL);
if (strcmp(this_arg, "?") == 0)
{
this_arg = empty_string;
if (!dont_pause_topic)
dont_pause_topic = 1;
}
/*
* entry_size is set by our scandir() handler to the width
* of the longest help topic (adjusted for compression
* extensions, of course.)
*/
entry_size = 0;
/*
* Gather up the names of the files in the help directory.
* XXXX - this should be done by glob(). Scandir() isnt
* standarized.
*/
free_cnt = entries = scandir(path, &namelist, selectent,
(int (*) _((const void *, const void *)))compar);
/*
* Because there are help files which are a full subset
* of a the name of another help file (ie, 'LOG' and
* 'LOGFILE'), we need to make sure that if the user said
* /help LOG, they really get the help file for LOG and are
* not asked to pick between LOG and LOGFILE.
*
* So: If there is more then one entry, but one of the
* filenames is exactly what the user requested (adjusted
* for compression extension, of course), then we use it
* and forget the others.
*/
if (entries > 1)
{
/*
* Because the filenames are sorted, we know that
* the help topic that the user requested would
* definitely be in namelist[0].
*
* First thing we do is see how many characters
* are different between namelist[0] and the topic
* we're looking for.
*/
int len1 = strlen (namelist[0]->d_name);
int len2 = strlen (this_arg);
int len3 = len1 - len2; /* should be positive */
/*
* If namelist[0] and the help topic match to
* the length of the help topic, then if the
* difference is exactly the length of a compression
* suffix AND that suffix is present, then we have
* the topic we're looking for. We clean off
* all the other topics and reset the size.
*/
/*
* We dont have to free() them here, theyre free()d
* later.
*/
if ((!my_strnicmp(namelist[0]->d_name, this_arg, len2)
&& ((!end_strcmp(namelist[0]->d_name, ".gz", len3))
|| (!end_strcmp(namelist[0]->d_name, ".Z", len3))
|| (!end_strcmp(namelist[0]->d_name, ".z", len3))))
|| !my_stricmp(namelist[0]->d_name, this_arg))
{
entries = 1;
}
}
if (!*help_topic_list)
dont_pause_topic = 1;
/* reformatted */
/*
* entries: -1 means something really died, 0 means there
* was no help, 1, means it wasn't a directory, and so to
* show the help file, and the default means to add the
* stuff to the paused topic list..
*/
switch (entries)
{
case -1:
{
help_put_it(no_help, "*** Error during help function: %s", sys_errlist[errno]);
set_help_screen(NULL);
if (help_paused_first_call)
{
help_topic(help_paused_path, help_paused_name);
help_paused_first_call = 0;
new_free(&help_paused_path);
new_free(&help_paused_name);
}
return;
}
case 0:
{
help_put_it(this_arg, "*** No help available on %s: Use ? for list of topics", this_arg);
if (!get_int_var(HELP_PROMPT_VAR))
{
set_help_screen(NULL);
break;
}
sprintf(tmp, "%s%sHelp? ", help_topic_list, *help_topic_list ? " " : empty_string);
if (!dumb)
add_wait_prompt(tmp, help_me, help_topic_list, WAIT_PROMPT_LINE);
if (help_paused_first_call)
{
help_topic(help_paused_path, help_paused_name);
help_paused_first_call = 0;
new_free(&help_paused_path);
new_free(&help_paused_name);
}
break;
}
case 1:
{
sprintf(tmp, "%s/%s", path, namelist[0]->d_name);
stat_file(tmp, &stat_buf);
if (stat_buf.st_mode & S_IFDIR)
{
strcpy(path, tmp);
if (*help_topic_list)
strcat(help_topic_list, " ");
strcat(help_topic_list, namelist[0]->d_name);
if ((this_arg = next_arg(args, &args)) == (char *) 0)
{
help_paused_first_call = 1;
malloc_strcpy(&help_paused_path, path);
malloc_strcpy(&help_paused_name, namelist[0]->d_name);
dont_pause_topic = -1;
this_arg = "?";
}
/*
* Why do we free this here, like this?
* Because we're about to continue, which means
* we hop back up to the top of the loop: We will
* miss the cleanup that happens just after the end
* of this case statement, and so we must do the
* cleanup to avoid the memory leak. We use free_cnt,
* because it is the 'true' measure of what is in
* the array (entries might have been modified above).
*/
for (i = 0; i < free_cnt; i++)
free((char *)namelist[i]);
free((char *)namelist);
namelist = NULL;
continue;
}
else
{
help_topic(path, namelist[0]->d_name);
finished_help_paging = 0; /* this is a big kludge */
break;
}
}
default:
{
help_show_directory = 1;
strcpy(paused_topic, help_topic_list);
help_pause_add_line("*** %s choices:", help_topic_list);
entry_size += 2;
cols = (CO - 10) / entry_size;
strcpy(buffer, empty_string);
cnt = 0;
for (i = 0; i < entries; i++)
{
/*
* Here we remove the compression suffix (if any)
* from the filename, since we're not interested in
* it at this point.
*/
if (!end_strcmp(namelist[i]->d_name, ".gz", 3))
chop(namelist[i]->d_name, 3);
else if (!end_strcmp(namelist[i]->d_name, ".Z", 2))
chop(namelist[i]->d_name, 2);
else if (!end_strcmp(namelist[i]->d_name, ".z", 2))
chop(namelist[i]->d_name, 2);
/*
* Then we append the help topic to the current
* output line.
*/
strcat(buffer, namelist[i]->d_name);
/*
* Since we already know how many columns each
* line will contain, we check to see if we have
* accumulated that many entries. If we have, we
* output the line to the screen.
*/
if (++cnt == cols)
{
help_pause_add_line("%s", buffer);
strcpy(buffer, empty_string);
cnt = 0;
}
/*
* If we have not finished this line, then we have
* to pad the name length out to the expected width.
* 'entry_size' is the column width. We also have
* do adjust for compression extension.
*/
else
strextend(buffer, ' ', entry_size - strlen(namelist[i]->d_name));
}
help_pause_add_line("%s", buffer);
if (help_paused_first_call)
{
help_topic(help_paused_path, help_paused_name);
help_paused_first_call = 0;
new_free(&help_paused_path);
new_free(&help_paused_name);
}
if (dont_pause_topic == 1)
{
help_show_paused_topic(paused_topic, empty_string);
help_show_directory = 0;
}
break;
}
}
/* end of reformatting */
/*
* We only get here if everything happened ok. free_cnt
* can be -1, 0, or a positive value here, and we know that
* if we get here, we havent free()d it yet. So we free it
* here and exit the while loop.
*/
for (i = 0; i < free_cnt; i++)
free((char *)namelist[i]);
free((char *)namelist);
break;
}
/*
* This one is for when there was never a topic and the prompt
* never got a topic.. and help_screen was never reset..
* phone, jan 1993.
*/
if (!*help_topic_list && finished_help_paging)
set_help_screen((Screen *) 0);
}
/*
* help: the HELP command, gives help listings for any and all topics out
* there
*/
#ifdef __STDC__
extern void help (char *command, char *args, char *subargs)
#else
extern void help(command, args, subargs)
char *command,
*args;
char *subargs;
#endif
{
char *help_path;
finished_help_paging = 0;
help_show_directory = 0;
dont_pause_topic = 0;
use_help_window = 0;
/*
* The idea here is to work out what sort of help we are using -
* either the installed help files, or some help service, what
* ever it maybe. Once we have worked this out, if we are using
* a help window, set it up properly.
*/
help_path = get_string_var(HELP_PATH_VAR);
if (!(help_path && *help_path && !access(help_path, R_OK | X_OK)))
{
#ifdef USE_HELP_BOTS
help_service = get_string_var(HELP_SERVICE_VAR);
if (!help_service || !*help_service)
{
help_put_it(no_help, "*** No HELP_PATH or HELP_SERVICE variable set");
return;
}
help_path = NULL;
use_help_service = 1;
#else
help_put_it(no_help, "*** HELP_PATH variable not set or set to an invalid path");
return;
#endif
}
/*
* Here, if we are using the help files locally, we must ensure that
* we aren't doing HELP in a more than one screen - phone, jan 1993.
*/
if (help_path && help_screen && help_screen != current_screen)
{
say("You may not run help in two screens");
return;
}
help_screen = current_screen;
#ifdef PHONE
if (help_window)
panic("help_window is set");
#endif
help_window = (Window *) 0;
#ifdef USE_HELP_BOTS
if (use_help_service)
{
set_help_screen((Screen *) 0);
create_help_window();
send_text(get_string_var(HELP_SERVICE_VAR), (args && *args) ? args : "?", NULL, 0);
}
else
#endif
help_me(empty_string, (args && *args) ? args : "?");
}
static void create_help_window _((void))
{
if (help_window)
return;
if (!dumb && get_int_var(HELP_WINDOW_VAR))
{
use_help_window = 1;
help_window = new_window();
#ifdef USE_HELP_BOTS
if (use_help_service)
{
query("QUERY", help_service, empty_string);
if (get_int_var(HELP_PAGER_VAR))
help_window->hold_mode = ON;
else
help_window->hold_mode = OFF;
}
else
#endif
help_window->hold_mode = OFF;
update_all_windows();
}
else
help_window = curr_scr_win;
}
#ifdef __STDC__
static void set_help_screen (Screen *screen)
#else
static void set_help_screen(screen)
Screen *screen;
#endif
{
help_screen = screen;
if (!help_screen && help_window)
{
if (use_help_window)
{
int display = window_display;
window_display = 0;
delete_window(help_window);
window_display = display;
}
help_window = (Window *) 0;
update_all_windows();
}
}
|