fielding 97/07/19 12:13:59
Modified: src Tag: APACHE_1_2_X CHANGES httpd.h Log: Replaced APACHE_RELEASE_DATE with APACHE_RELEASE number, since branching a release makes the date meaningless for feature comparisons. The format is jnnffbb (j = major number, nn = minor, ff = bugfix, bb = beta) Note that 1.2b11 would have been 1020011 and 1.2.0 would be 1020012, since the beta sequence numbers are actually X.X.0 releases. Revision Changes Path No revision No revision 1.286.2.27 +8 -0 apache/src/CHANGES Index: CHANGES =================================================================== RCS file: /export/home/cvs/apache/src/CHANGES,v retrieving revision 1.286.2.26 retrieving revision 1.286.2.27 diff -C3 -r1.286.2.26 -r1.286.2.27 *** CHANGES 1997/07/03 05:59:43 1.286.2.26 --- CHANGES 1997/07/19 19:13:56 1.286.2.27 *************** *** 1,3 **** --- 1,11 ---- + Changes with Apache 1.2.2 + + *) API: Symbol APACHE_RELEASE provides a numeric form of the Apache + release version number, such that it always increases along the + same lines as our source code branching. [Roy Fielding] + + *) Minor oversight on multiple variants fixed. [Paul Sutton] PR#94 + Changes with Apache 1.2.1 *) SECURITY: Don't serve file system objects unless they are plain files, 1.111.2.10 +4 -1 apache/src/httpd.h Index: httpd.h =================================================================== RCS file: /export/home/cvs/apache/src/httpd.h,v retrieving revision 1.111.2.9 retrieving revision 1.111.2.10 diff -C3 -r1.111.2.9 -r1.111.2.10 *** httpd.h 1997/07/06 02:35:15 1.111.2.9 --- httpd.h 1997/07/19 19:13:57 1.111.2.10 *************** *** 263,269 **** #define SERVER_VERSION SERVER_BASEVERSION #endif ! #define APACHE_RELEASE_DATE 19970705 #define SERVER_PROTOCOL "HTTP/1.1" #define SERVER_SUPPORT "http://www.apache.org/" --- 263,272 ---- #define SERVER_VERSION SERVER_BASEVERSION #endif ! /* Numeric release version identifier: major minor bugfix betaseq ! * Always increases along the same track as the source branch. ! */ ! #define APACHE_RELEASE 1020201 #define SERVER_PROTOCOL "HTTP/1.1" #define SERVER_SUPPORT "http://www.apache.org/"