You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by fa...@apache.org on 2001/01/04 05:12:43 UTC

cvs commit: apache-1.3/src/modules/standard mod_status.c

fanf        01/01/03 20:12:43

  Modified:    src      CHANGES
               src/modules/standard mod_status.c
  Log:
  Remove some human-readable fluff from the machine-readable mod_status display.
  PR:		7025
  Submitted by:	Youichirou Koga <y-...@apache.or.jp>
  
  Revision  Changes    Path
  1.1612    +3 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1611
  retrieving revision 1.1612
  diff -u -u -r1.1611 -r1.1612
  --- CHANGES	2000/12/27 21:45:10	1.1611
  +++ CHANGES	2001/01/04 04:12:41	1.1612
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.15
   
  +  *) Remove some human-readable fluff from the machine-readable mod_status
  +     display. PR#7025 [Youichirou Koga <y-...@apache.or.jp>]
  +
     *) The new Win32 command line option, -k config, replaces the default
        options for the existing, named service with the options given on 
        the -k config command line.  Apache -n servicename -t now displays
  
  
  
  1.118     +4 -2      apache-1.3/src/modules/standard/mod_status.c
  
  Index: mod_status.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/modules/standard/mod_status.c,v
  retrieving revision 1.117
  retrieving revision 1.118
  diff -u -u -r1.117 -r1.118
  --- mod_status.c	2000/12/13 05:10:41	1.117
  +++ mod_status.c	2001/01/04 04:12:42	1.118
  @@ -713,8 +713,10 @@
   
       } else {
   
  -    ap_rputs("<hr>To obtain a full report with current status information ", r);
  -    ap_rputs("you need to use the <code>ExtendedStatus On</code> directive. \n", r);
  +	if (!short_report) {
  +	    ap_rputs("<hr>To obtain a full report with current status information ", r);
  +	    ap_rputs("you need to use the <code>ExtendedStatus On</code> directive. \n", r);
  +	}
   
       }