coar 98/04/06 10:10:41
Modified: . API.html add_member.html binaries.html bug_track.html home.html how-to-release.html members.html ports.html voting.html Log: Some long-outstanding HTML cleanups. Revision Changes Path 1.3 +17 -12 apache-devsite/API.html Index: API.html =================================================================== RCS file: /export/home/cvs/apache-devsite/API.html,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- API.html 1998/02/12 14:39:19 1.2 +++ API.html 1998/04/06 17:10:37 1.3 @@ -1,4 +1,8 @@ +<HTML> +<HEAD> <TITLE>Shambhala API notes</TITLE> +</HEAD> +<BODY> <H1>Shambhala API notes</H1> These are some notes on the Shambhala API and the data structures you @@ -731,33 +735,33 @@ int find_ct(request_rec *r) { int i; - char *fn = pstrdup (r->pool, r->filename); + char *fn = pstrdup (r->pool, r->filename); mime_dir_config *conf = - (mime_dir_config *)get_module_config(r->per_dir_config, &mime_module); + (mime_dir_config *)get_module_config(r->per_dir_config, &mime_module); char *type; - if (S_ISDIR(r->finfo.st_mode)) { - r->content_type = DIR_MAGIC_TYPE; + if (S_ISDIR(r->finfo.st_mode)) { + r->content_type = DIR_MAGIC_TYPE; return OK; } - if((i=rind(fn,'.')) < 0) return DECLINED; + if((i=rind(fn,'.')) < 0) return DECLINED; ++i; - if ((type = table_get (conf->encoding_types, &fn[i]))) + if ((type = table_get (conf->encoding_types, &fn[i]))) { - r->content_encoding = type; + r->content_encoding = type; /* go back to previous extension to try to use it as a type */ fn[i-1] = '\0'; - if((i=rind(fn,'.')) < 0) return OK; + if((i=rind(fn,'.')) < 0) return OK; ++i; } - if ((type = table_get (conf->forced_types, &fn[i]))) + if ((type = table_get (conf->forced_types, &fn[i]))) { - r->content_type = type; + r->content_type = type; } return OK; @@ -787,7 +791,7 @@ <PRE> char *add_redirect(cmd_parms *cmd, void *dummy, char *f, char *url) { - server_rec *s = cmd->server; + server_rec *s = cmd->server; alias_server_conf *conf = (alias_server_conf *)get_module_config(s->module_config,&alias_module); alias_entry *new = push_array (conf->redirects); @@ -798,4 +802,5 @@ return NULL; } </PRE> - +</BODY> +</HTML> 1.2 +6 -2 apache-devsite/add_member.html Index: add_member.html =================================================================== RCS file: /export/home/cvs/apache-devsite/add_member.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- add_member.html 1997/06/17 10:43:27 1.1 +++ add_member.html 1998/04/06 17:10:37 1.2 @@ -1,7 +1,10 @@ <HTML> -<IMG SRC="images/apache_logo.gif"> -<P><HR><P> +<HEAD> +<TITLE>Who knows?</TITLE> +</HEAD> <BODY> +<IMG SRC="images/apache_logo.gif" ALT=""> +<P><HR><P> <FORM METHOD="POST" ACTION="/httpd/cgi-bin/add_member.cgi"> <INPUT NAME="whom" SIZE="40"> Name<BR> <INPUT NAME="email" SIZE="40"> Email address<BR> @@ -16,5 +19,6 @@ <P> <INPUT TYPE="submit" VALUE="Submit"> <INPUT TYPE="reset" VALUE="Reset"> +</FORM> </BODY> </HTML> 1.4 +3 -2 apache-devsite/binaries.html Index: binaries.html =================================================================== RCS file: /export/home/cvs/apache-devsite/binaries.html,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- binaries.html 1998/02/12 14:39:19 1.3 +++ binaries.html 1998/04/06 17:10:38 1.4 @@ -58,7 +58,7 @@ <LI>i386-unknown-bsdi2.0: Brian Behlendorf <LI>i386-unknown-freebsd2.1: Andrew Wilson, Brian Tao <LI>i386-unknown-linux(ELF): Aram Mirzadeh, Michael Douglass -<LI>i386-unknown-netBSD: Bill <[EMAIL PROTECTED]> +<LI>i386-unknown-netBSD: Bill <[EMAIL PROTECTED]> <LI>i386-unknown-sco3: Ben Laurie <LI>i386-unknown-sco5: Ben Laurie <LI>m68k-apple-aux3.1.1: Jim Jagielski @@ -78,4 +78,5 @@ minor-number revisions, i.e. 1.1.0 -> 1.1.1. <HR> - +</BODY> +</HTML> 1.3 +1 -0 apache-devsite/bug_track.html Index: bug_track.html =================================================================== RCS file: /export/home/cvs/apache-devsite/bug_track.html,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- bug_track.html 1998/02/12 14:39:20 1.2 +++ bug_track.html 1998/04/06 17:10:38 1.3 @@ -50,3 +50,4 @@ Apache is released.</P> </BODY> +</HTML> 1.3 +1 -1 apache-devsite/home.html Index: home.html =================================================================== RCS file: /export/home/cvs/apache-devsite/home.html,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- home.html 1998/02/12 14:39:21 1.2 +++ home.html 1998/04/06 17:10:38 1.3 @@ -1,10 +1,10 @@ <HTML> <HEAD> <TITLE>Apache HTTP Server Project</TITLE> -<IMG SRC="images/apache_logo.gif" ALT=""> </HEAD> <BODY> +<IMG SRC="images/apache_logo.gif" ALT=""> <H3>Welcome to the Apache HTTP Server Project</H3> <P><HR> 1.31 +1 -1 apache-devsite/how-to-release.html Index: how-to-release.html =================================================================== RCS file: /export/home/cvs/apache-devsite/how-to-release.html,v retrieving revision 1.30 retrieving revision 1.31 diff -u -r1.30 -r1.31 --- how-to-release.html 1998/03/05 15:33:57 1.30 +++ how-to-release.html 1998/04/06 17:10:38 1.31 @@ -202,7 +202,7 @@ <CODE><STRONG>$ pgp -sba apache_1.X.Y.tar.Z</STRONG></CODE><BR> <UL> <LI><FONT COLOR="red">Note:</FONT> Be sure your PGP key is already in the - <CODE>KEYS</CODE> file</EM>!)<BR> + <CODE>KEYS</CODE> file!)<BR> </UL> <P> <LI> Make the tarball available for testing purposes:<BR> 1.3 +11 -10 apache-devsite/members.html Index: members.html =================================================================== RCS file: /export/home/cvs/apache-devsite/members.html,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- members.html 1998/02/12 14:39:22 1.2 +++ members.html 1998/04/06 17:10:38 1.3 @@ -1,15 +1,16 @@ <HTML> <HEAD> <TITLE>Apache HTTP Server, Project Members</TITLE> -<IMG SRC="images/apache_logo.gif" ALT=""> </HEAD> <BODY> +<IMG SRC="images/apache_logo.gif" ALT=""> <P><HR><P> <STRONG>Name:</STRONG> Brian Behlendorf<BR> -<STRONG>email:</STRONG> <A HREF="mailto:[EMAIL PROTECTED] or [EMAIL PROTECTED]">[EMAIL PROTECTED] or [EMAIL PROTECTED]</A><BR> +<STRONG>email:</STRONG> <A HREF="mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]</A> + or <A HREF="mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]</A><BR> <STRONG>URL:</STRONG> <A HREF="http://www.organic.com/Staff/brian/">http://www.organic.com/Staff/brian/</A><BR> -<STRONG>Company:</STRONG> Organic</A><BR> +<STRONG>Company:</STRONG> Organic<BR> <STRONG>Occupation:</STRONG> Chief Technical Officer<BR> <STRONG>Location:</STRONG> San FranDisco, CA, USA<BR> <STRONG>Comments:</STRONG> The Midwife<BR> @@ -41,14 +42,14 @@ <STRONG>Name:</STRONG> Eric Hagberg<BR> <STRONG>email:</STRONG> <A HREF="mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]</A><BR> <STRONG>URL:</STRONG> <A HREF="http://www2.med.cornell.edu/~hagberg/">http://www2.med.cornell.edu/~hagberg/</A><BR> -<STRONG>Company:</STRONG> Cornell Medical College</A><BR> +<STRONG>Company:</STRONG> Cornell Medical College<BR> <STRONG>Occupation:</STRONG> User Services Manager<BR> <STRONG>Location:</STRONG> New York, NY, USA<BR> <STRONG>Comments:</STRONG> <BR> <P> -<STRONG>Name:</STRONG> Rob Hartill</A><BR> +<STRONG>Name:</STRONG> Rob Hartill<BR> <STRONG>email:</STRONG> <A HREF="mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]</A><BR> <STRONG>URL:</STRONG> <A HREF="http://www.cm.cf.ac.uk/People/Robert.Hartill.html"> Rob's stuff<BR></A> <STRONG>Company:</STRONG> Los Alamos National Laboratory<BR> @@ -61,7 +62,7 @@ <STRONG>Name:</STRONG> Kipp Jones<BR> <STRONG>email:</STRONG> <A HREF="mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]</A><BR> <STRONG>URL:</STRONG> <A HREF="http://www.cc.gatech.edu/grads/j/Kipp.Jones/">http://www.cc.gatech.edu/grads/j/Kipp.Jones/</A><BR> -<STRONG>Company:</STRONG> Georgia Tech</A><BR> +<STRONG>Company:</STRONG> Georgia Tech<BR> <STRONG>Occupation:</STRONG> Graduate Research Assistant<BR> <STRONG>Location:</STRONG> Atlanta, Ga, USA<BR> <STRONG>Comments:</STRONG> I would like to be involved some of the publishing aspects for www servers.<BR> @@ -71,7 +72,7 @@ <STRONG>Name:</STRONG> Nicolas Pioch<BR> <STRONG>email:</STRONG> <A HREF="mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]</A><BR> <STRONG>URL:</STRONG> <A HREF="http://mistral.enst.fr/">http://mistral.enst.fr/</A><BR> -<STRONG>Company:</STRONG> Free mind.</A><BR> +<STRONG>Company:</STRONG> Free mind.<BR> <STRONG>Occupation:</STRONG> Too many.<BR> <STRONG>Location:</STRONG> Paris, France, Outside USA<BR> <STRONG>Comments:</STRONG> <BR> @@ -101,7 +102,7 @@ <STRONG>Name:</STRONG> Randy Terbush<BR> <STRONG>email:</STRONG> <A HREF="mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]</A><BR> <STRONG>URL:</STRONG> <A HREF="http://www.zyzzyva.com/zyzzyva/">http://www.zyzzyva.com/zyzzyva/</A><BR> -<STRONG>Company:</STRONG> Zyzzyva Enterprises</A><BR> +<STRONG>Company:</STRONG> Zyzzyva Enterprises<BR> <STRONG>Occupation:</STRONG> Internet Services, Sysadmin, Webmaster<BR> <STRONG>Location:</STRONG> Lincoln, NE, USA<BR> <STRONG>Comments:</STRONG> <BR> @@ -111,14 +112,14 @@ <STRONG>Name:</STRONG> Robert Thau<BR> <STRONG>email:</STRONG> <A HREF="mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]</A><BR> <STRONG>URL:</STRONG> <A HREF="http://www.ai.mit.edu/people/rst/rst.html">http://www.ai.mit.edu/people/rst/rst.html</A><BR> -<STRONG>Company:</STRONG> MIT</A><BR> +<STRONG>Company:</STRONG> MIT<BR> <STRONG>Occupation:</STRONG> grad student<BR> <STRONG>Location:</STRONG> Boston, Mass., USA<BR> <STRONG>Comments:</STRONG> <BR> <P> -<STRONG>Name:</STRONG> Andrew Wilson</A><BR> +<STRONG>Name:</STRONG> Andrew Wilson<BR> <STRONG>email:</STRONG> <A HREF="mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]</A><BR> <STRONG>URL:</STRONG> <A HREF="http://www.cm.cf.ac.uk/User/Andrew.Wilson/"> http://www.cm.cf.ac.uk/User/Andrew.Wilson/<BR></A> <STRONG>Company:</STRONG><BR> 1.3 +6 -4 apache-devsite/ports.html Index: ports.html =================================================================== RCS file: /export/home/cvs/apache-devsite/ports.html,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ports.html 1998/02/12 14:39:23 1.2 +++ ports.html 1998/04/06 17:10:39 1.3 @@ -10,11 +10,11 @@ <P> -<NOTE><STRONG>mod_auth_msql can be excluded from the "all distribution modules +<BLOCKQUOTE><STRONG>mod_auth_msql can be excluded from the "all distribution modules compile" list since most people do not have MSQL on their systems. Likewise, mod_dld is also excluded from this list. Perhaps the "Configuration" file should mention which platforms DLD support exists -on.</STRONG></NOTE> +on.</STRONG></BLOCKQUOTE> <P> @@ -71,8 +71,8 @@ "mod_auth.c", line 180: warning: implicitly declaring function to return int: crypt()<BR> "mod_auth_dbm.c", line 170: warning: implicitly declaring function to return int: crypt()<BR> "mod_cookies.c", line 133: warning: implicitly declaring function to return int:gettimeofday()<BR> -"mod_proxy.c", line 756: warning: semantics of "<" change in ANSI C; use explicit cast<BR> -"mod_proxy.c", line 1649: warning: semantics of "<" change in ANSI C; use explicit cast<BR> +"mod_proxy.c", line 756: warning: semantics of "<" change in ANSI C; use explicit cast<BR> +"mod_proxy.c", line 1649: warning: semantics of "<" change in ANSI C; use explicit cast<BR> "mod_proxy.c", line 2658: warning: statement not reached <BR>no mod_auth_db </TR> <TR><TD>Solaris 2.5, gcc <TD> <TD> <TD> <TD> </TR> @@ -83,3 +83,5 @@ <TR><TD>UnixWare 2.x, cc <TD> <TD> <TD> <TD> </TR> </TABLE> +</BODY> +</HTML> 1.6 +2 -2 apache-devsite/voting.html Index: voting.html =================================================================== RCS file: /export/home/cvs/apache-devsite/voting.html,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- voting.html 1998/02/12 14:39:24 1.5 +++ voting.html 1998/04/06 17:10:39 1.6 @@ -96,7 +96,7 @@ <H2><IMG SRC="images/apache_feather_bullet.gif" ALT="o "> Casting Votes</H2> - +<P> Anyone on the mailing list may vote on any issue. However, the act of voting carries certain obligations -- voting members are not only stating their opinion, they are agreeing to help do the work of the @@ -152,7 +152,7 @@ <P>Action items (usually patches) are uploaded to hyperreal (apache.org) via FTP, either directly into the directory for patches to <STRONG>CURRENT</STRONG> (/httpd/patches/for_Apache_<STRONG>C_VERSION</STRONG>/), or into an incoming -FTP directory for later transfer into the patch directory.</LI><P> +FTP directory for later transfer into the patch directory.<P> <P>Each filename should at least hint at the action objective and include reference to: