Commit 251a1b13 authored by Ian Holsman's avatar Ian Holsman
Browse files

Doxygen fixup / cleanup

submited by: Neale Ranns neale ranns.org
reviewed by: Ian Holsman



git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@263931 13f79535-47bb-0310-9956-ffa450edef68
parent 52c3d383
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -2,6 +2,8 @@
Changes with Apache 2.3.0
  [Remove entries to the current 2.0 and 2.2 section below, when backported]
  *) Doxygen fixup [Neale Ranns neale ranns.org, Ian Holsman]
  *) prefork and worker MPMs: Support a graceful-stop procedure:
     Server will wait until existing requests are finished or until  
     "GracefulShutdownTimeout" number of seconds before exiting. 
+16 −3
Original line number Diff line number Diff line
PROJECT_NAME=Apache
PROJECT_NAME=Apache2

#INPUT=srclib/apr
# make the generated documentation searchable
SEARCHENGINE=YES
INPUT=.
RECURSIVE=YES
FILE_PATTERNS=*.h

OUTPUT_DIRECTORY=docs/dox

#EXTRACT_STATIC=YES
EXTRACT_ALL=YES

# add documentation for functions that are declared internal use only
INTERNAL_DOCS=YES

ENABLE_PREPROCESSING=YES
MACRO_EXPANSION=YES
QUIET=YES
@@ -16,8 +23,11 @@ EXPAND_ONLY_PREDEF=YES
PREDEFINED="APR_DECLARE(x)=x" \
       "APR_DECLARE_NONSTD(x)=x" \
       "AP_DECLARE_HOOK(ret,name,args)=ret name args;" \
       "APR_DECLARE_OPTIONAL_FN(ret,name,args)=ret name args;" \
       "AP_DECLARE(x)=x" \
       "AP_DECLARE_NONSTD(x)=x" \
       AP_CORE_DECLARE(x)=x \
       "AP_CORE_DECLARE_NONSTD(x)=x" \       
       "APR_HAS_THREADS" \
       "APR_HAS_MMAP" \
	APR_HAS_INLINE \
@@ -49,4 +59,7 @@ OPTIMIZE_OUTPUT_FOR_C=YES

FULL_PATH_NAMES=YES
# some autoconf guru needs to make configure set this correctly...
STRIP_FROM_PATH=/var/www/lxr/source
#STRIP_FROM_PATH=/var/www/lxr/source

#GENERATE_TAGFILE=docs/dox/httpd.tag
#TAGFILES=../apr/docs/dox/apr.tag=/apr ../apr-util/docs/dox/apu.tag=/apr-util
+5 −0
Original line number Diff line number Diff line
@@ -14,6 +14,11 @@
 * limitations under the License.
 */

/**
 * @file  ap_compat.h
 * @brief Redefine Apache 1.3 symbols
 */

#ifndef AP_COMPAT_H
#define AP_COMPAT_H

+9 −6
Original line number Diff line number Diff line
@@ -14,6 +14,11 @@
 * limitations under the License.
 */

/**
 * @file ap_config.h
 * @brief Symbol export macros and hook functions
 */

#ifndef AP_CONFIG_H
#define AP_CONFIG_H

@@ -21,14 +26,12 @@
#include "apr_hooks.h"
#include "apr_optional_hooks.h"

/* Although this file doesn't declare any hooks, declare the hook group here */
/** 
 * @file ap_config.h
 * @brief Symbol export macros and hook functions
 * @defgroup hooks Apache Hooks 
 * @ingroup  APACHE_CORE
 */

/* Although this file doesn't declare any hooks, declare the hook group here */
/** @defgroup hooks Apache Hooks */

#ifdef DOXYGEN
/* define these just so doxygen documents them */

+5 −0
Original line number Diff line number Diff line
@@ -14,6 +14,11 @@
 * limitations under the License.
 */

/**
 * @file  ap_config_layout.h
 * @brief Apache Config Layout
 */

#ifndef AP_CONFIG_LAYOUT_H
#define AP_CONFIG_LAYOUT_H

Loading