-->

Previous | Table of Contents | Next

Page 261

BUGS

I still don't have enough information about the Photo-CD to take care of all data structures. The information I have is quite vague and this program was developed by staring at the hexdumps and using the famous trial-and-error-method. :-) If anything doesn't work, please send me a report and perhaps you could try to find out why it doesn't work.

SEE ALSO

ppm(5), ppmquant(1), ppmtopgm(1), ppmhist(1), pnmarith(1), ppmtorgb3(1), xv(1)

AUTHOR

Copyright" 1992 by Hadmut Danisch (danisch@ira.uka.de). Permission to use and distribute this software and its documentation for noncommercial use and without fee is hereby granted, provided that the preceding copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation.
This software may not be sold in any way. This software is not public domain.

28 November 1992

httpd

httpd—Apache Hypertext Transfer Protocol server

SYNOPSIS


httpd [ _vX? ][_d serverroot ][_f config ]

DESCRIPTION

httpd is the Apache Hypertext Transfer Protocol (HTTP) server process. The server may be invoked by the Internet daemon inetd(1M) each time a connection to the HTTP service is made, or alternatively it may run as a daemon.

OPTIONS

_d serverroot Set the initial value for the ServerRoot variable to serverroot. This can be overridden by the ServerRoot command in the configuration file. The default is /usr/local/etc/httpd.
_f config Execute the commands in the file config on startup. If config does not begin with a /, then it is taken to be a path relative to the ServerRoot. The default is conf/httpd.conf.
_X Run in single-process mode, for internal debugging purposes only; the daemon does not detach from the terminal or fork any children. Do not use this mode to provide ordinary Web service.
_v Print the version of httpd, and then exit.
_? Print a list of the httpd OPTIONS, and then exit.

FILES


/usr/local/etc/httpd/conf/httpd.conf

/usr/local/etc/httpd/conf/srm.conf

/usr/local/etc/httpd/conf/access.conf

/usr/local/etc/httpd/conf/mime.types

/usr/local/etc/httpd/logs/error_log

/usr/local/etc/httpd/logs/access_log

/usr/local/etc/httpd/logs/httpd.pid

SEE ALSO

inetd(1m)

Documentation for the Apache HTTP server is available from http://www.apache.org.

October 1995

Page 262

icontopbm

icontopbm—Convert a Sun icon into a portable bitmap

SYNOPSIS


icontopbm [iconfile]

DESCRIPTION

icontopbm reads a Sun icon as input and produces a portable bitmap as output.

SEE ALSO

pbmtoicon(1), pbm(5)

AUTHOR

Copyright" 1988 by Jef Poskanzer

31 August 1988

ident

ident—Identify RCS keyword strings in FILES

SYNOPSIS


ident [ _q ][_V ][file ... ]

DESCRIPTION

ident searches for all instances of the pattern $ keyword : text $ in the named FILES or, if no FILES are named, the standard input.

These patterns are normally inserted automatically by the RCS command co(1), but can also be inserted manually. The option _q suppresses the warning given if there are no patterns in a file. The option _V prints ident's version number.

ident works on text FILES as well as object FILES and dumps. For example, if the C program in f.c contains


#include <stdio.h>

static char const rcsid[] =

"$Id: f.c,v 5.4 1993/11/09 17:40 eggert Exp $";

int main() { return printf("%s\n", rcsid) == EOF; }

and f.c is compiled into f.o, then the command


ident f.c f.o

will output


f.c:

$Id: f.c,v 5.4 1993/11/09 17:40 eggert Exp $

f.o:

$Id: f.c,v 5.4 1993/11/09 17:40 eggert Exp $

If a C program defines a string like the rcsid but does not use it, lint(1) may complain, and some C compilers will optimize away the string. The most reliable solution is to have the program use the rcsid string, as shown in the example.

ident finds all instances of the $ keyword : text $ pattern, even if keyword is not actually an RCS-supported keyword. This gives you information about nonstandard keywords like $XConsortium$.

Page 263

KEYWORDS

Here is the list of keywords currently maintained by co(1). All times are given in Coordinated Universal Time (UTC, sometimes called GMT by default), but if the FILES were checked out with co's _zzone option, times are given with a numeric time zone indication appended.

$AUTHOR$ The login name of the user who checked in the revision.
$Date$ The date and time the revision was checked in.
$Header$ A standard header containing the full pathname of the RCS file, the revision number, the date and time, the AUTHOR, the state, and the locker (if locked).
$Id$ Same as $Header$, except that the RCS filename is without a path.
$Locker$ The login name of the user who locked the revision (empty if not locked).
$Log$ The log message supplied during checkin. For ident's purposes, this is equivalent to $RCSfile$.
$Name$ The symbolic name used to check out the revision, if any.
$RCSfile$ The name of the RCS file without a path.
$Revision$ The revision number assigned to the revision.
$Source$ The full pathname of the RCS file.
$State$ The state assigned to the revision with the _s option of rcs(1) or ci(1).

co(1) represents the following characters in keyword values by escape sequences to keep keyword strings well formed.

Character Escape Sequence
Tab \t
Newline \n
Space \040
$ \044
\ \\

IDENTIFICATION

AUTHOR: Walter F. Tichy

Manual Page Revision: 5.4; Release date September 11, 1993.

Copyright" 1982, 1988, 1989 Walter F. Tichy. Copyright" 1990, 1992, 1993 Paul Eggert.

SEE ALSO

ci(1), co(1), rcs(1), rcsdiff(1), rcsintro(1), rcsmerge(1), rlog(1), rcsfile(5)

Walter F. Tichy, RCS—A System for Version Control, Software_Practice & Experience 15, 7 (July 1985), 637_654.

GNU, 9 November 1993

ilbmtoppm

ilbmtoppm—Convert an ILBM file into a portable pixmap

SYNOPSIS


ilbmtoppm [-verbose][-ignore<chunkID>] [-isham|-isehb][-adjustcolors][ILBMfile]

DESCRIPTION

ilbmtoppm reads an IFF ILBM file as input and produces a portable pixmap as output. Supported ILBM types are Normal ILBMs with 1_16 planes.

Previous | Table of Contents | Next