Lines Matching defs:page
32 * xman - X window system manual page display program.
162 * Description: Opens the manual page file given the entry information.
164 * section_num - section number of the man page.
165 * entry_num - entry number of the man page.
177 * If both of these fail then it will attempt to format the manual page.
184 char path[BUFSIZ], page[BUFSIZ], section[BUFSIZ], *temp;
191 "The current manual page is: %s.", temp);
194 ParseEntry(entry, path, section, page);
202 section + len_cat, MACHINE, page);
208 path, CAT, section + len_cat, page);
219 section + len_cat, MACHINE, page, COMPRESSION_EXTENSION);
224 section + len_cat, page, COMPRESSION_EXTENSION);
232 section + len_cat, MACHINE, page, GZIP_EXTENSION);
237 section + len_cat, page, GZIP_EXTENSION);
246 section + len_cat, MACHINE, page, BZIP2_EXTENSION);
252 section + len_cat, page, BZIP2_EXTENSION);
260 section + len_cat, page, LZMA_EXTENSION);
275 section + len_cat, COMPRESSION_EXTENSION, page);
312 * page and uncompress it.
326 "uncompressed manual page try cleaning up /tmp.");
337 * page and uncompress it.
415 * page and convert it to roff format.
495 "Could not open manual page, %s", entry);
592 * write the man page to it.
630 * a manual page.
632 * path - the directory in which the original man page resides
671 * You'll notice that we format a man page into ASCII text output and then
778 * Description: Finds an uncompressed unformatted manual page.
780 * entry - the manual page entry.
789 char path[BUFSIZ], page[BUFSIZ], section[BUFSIZ], input[BUFSIZ];
796 ParseEntry(entry, path, section, page);
806 section + len_cat, MACHINE, page);
812 "%s/%s%s/%s/%s", path, CAT, section + len_cat, MACHINE, page);
823 "%s/%s%s/%s.%s", path, CAT, section + len_cat, page,
835 "%s/%s%s/%s.%s", path, CAT, section + len_cat, page,
851 "%s/%s%s/%s.%s", path, CAT, section + len_cat, page,
866 "%s/%s%s/%s.%s", path, CAT, section + len_cat, page,
878 page);
884 "%s/%s%s/%s", path, CAT, section + len_cat, page);
893 snprintf(input, BUFSIZ, "%s/%s%s/%s", path, SMAN, section + len_sman, page);
899 "%s/%s%s/%s", path, CAT, section + len_cat, page);
913 "%s/%s%s/%s.%s", path, CAT, section + len_cat, page,
925 "%s/%s%s/%s.%s", path, CAT, section + len_cat, page,
939 "%s/%s%s/%s.%s", path, CAT, section + len_cat, page,
953 "%s/%s%s/%s.%s", path, CAT, section + len_cat, page,
965 MAN, section + len_man, COMPRESSION_EXTENSION, page);
971 COMPRESSION_EXTENSION, page);
1089 /* Function Name: ParseEntry(entry, path, sect, page)
1094 * page - the page name. RETURNED
1099 ParseEntry(const char *entry, char *path, char *sect, char *page)
1109 if (page != NULL)
1110 strcpy(page, c);