From 5b56d06a01a150fc9685e6f913774be3f9deb49f Mon Sep 17 00:00:00 2001 From: Stefan Fritsch Date: Tue, 27 Dec 2011 19:43:09 +0100 Subject: Upstream tarball 2.2.19 --- docs/manual/developer/API.html.en | 2 +- docs/manual/developer/debugging.html.en | 2 +- docs/manual/developer/documenting.html | 4 ++ docs/manual/developer/documenting.html.en | 8 ++- docs/manual/developer/documenting.html.zh-cn | 82 ++++++++++++++++++++++++++++ docs/manual/developer/filters.html.en | 2 +- docs/manual/developer/hooks.html.en | 2 +- docs/manual/developer/index.html | 4 ++ docs/manual/developer/index.html.en | 14 ++--- docs/manual/developer/index.html.zh-cn | 76 ++++++++++++++++++++++++++ docs/manual/developer/modules.html.en | 2 +- docs/manual/developer/modules.html.ja.utf8 | 2 +- docs/manual/developer/request.html.en | 2 +- docs/manual/developer/thread_safety.html.en | 2 +- 14 files changed, 184 insertions(+), 20 deletions(-) create mode 100644 docs/manual/developer/documenting.html.zh-cn create mode 100644 docs/manual/developer/index.html.zh-cn (limited to 'docs/manual/developer') diff --git a/docs/manual/developer/API.html.en b/docs/manual/developer/API.html.en index 33037d87..b161019e 100644 --- a/docs/manual/developer/API.html.en +++ b/docs/manual/developer/API.html.en @@ -1217,6 +1217,6 @@ void *request_config; /* Notes on *this* request */

Available Languages:  en 

\ No newline at end of file diff --git a/docs/manual/developer/debugging.html.en b/docs/manual/developer/debugging.html.en index b77137df..1e218698 100644 --- a/docs/manual/developer/debugging.html.en +++ b/docs/manual/developer/debugging.html.en @@ -192,6 +192,6 @@

Available Languages:  en 

\ No newline at end of file diff --git a/docs/manual/developer/documenting.html b/docs/manual/developer/documenting.html index db57cef3..499eee1c 100644 --- a/docs/manual/developer/documenting.html +++ b/docs/manual/developer/documenting.html @@ -3,3 +3,7 @@ URI: documenting.html.en Content-Language: en Content-type: text/html; charset=ISO-8859-1 + +URI: documenting.html.zh-cn +Content-Language: zh-cn +Content-type: text/html; charset=UTF-8 diff --git a/docs/manual/developer/documenting.html.en b/docs/manual/developer/documenting.html.en index 705f3adc..82da5c0c 100644 --- a/docs/manual/developer/documenting.html.en +++ b/docs/manual/developer/documenting.html.en @@ -18,7 +18,8 @@

Documenting Apache 2.0

-

Available Languages:  en 

+

Available Languages:  en  | + zh-cn 

Apache 2.0 uses Doxygen to @@ -77,8 +78,9 @@ the Doxygen site.

-

Available Languages:  en 

+

Available Languages:  en  | + zh-cn 

\ No newline at end of file diff --git a/docs/manual/developer/documenting.html.zh-cn b/docs/manual/developer/documenting.html.zh-cn new file mode 100644 index 00000000..72f496c3 --- /dev/null +++ b/docs/manual/developer/documenting.html.zh-cn @@ -0,0 +1,82 @@ + + + +Apache 2.0 文档 - Apache HTTP 服务器 + + + + + +
<-
+

Apache 2.0 文档

+
+

可用语言:  en  | + zh-cn 

+
+ +

Apache 2.0 使用 Doxygen 从代码中 + 生成 API 和全局变量的文档。下面是对使用 Doxygen 生成文档的简介。

+
+
top
+
+

简要说明

+

使用 /** 开始文档块
+ 使用 */ 结束文档块

+ +

在文档块中,我们可以使用多个标签:

+ +

+ Description of this functions purpose
+ @param parameter_name description
+ @return description
+ @deffunc signature of the function
+

+ +

一般不需要 deffunc 。DoxyGen 没有完整的解析器,所以任何 + 在返回类型声明中使用宏的原型,都是太复杂了。这些函数就需要使用 deffunc。 + 例如 (使用 &gt; 而不是 >):

+ +

+ /**
+  * return the final element of the pathname
+  * @param pathname The path to get the final element of
+  * @return the final element of the path
+  * @tip Examples:
+  * <pre>
+  * "/foo/bar/gum" -&gt; "gum"
+  * "/foo/bar/gum/" -&gt; ""
+  * "gum" -&gt; "gum"
+  * "wi\\n32\\stuff" -&gt; "stuff"
+  * </pre>
+  * @deffunc const char * ap_filename_of_pathname(const char *pathname)
+  */ +

+ +

总是在头文件开始包含:

+

+ /**
+  * @package Name of library header
+  */ +

+ +

Doxygen 为每个包生成一个新的 HTML 文件,名字是 + {Name_of_library_header}.html,所以请简化名称。

+ +

更深入的讨论,请参见 + Doxygen 站点

+
+
+

可用语言:  en  | + zh-cn 

+
+ \ No newline at end of file diff --git a/docs/manual/developer/filters.html.en b/docs/manual/developer/filters.html.en index 8363d562..6b4637ab 100644 --- a/docs/manual/developer/filters.html.en +++ b/docs/manual/developer/filters.html.en @@ -205,6 +205,6 @@ Default_handler --> sub_request_core

Available Languages:  en 

\ No newline at end of file diff --git a/docs/manual/developer/hooks.html.en b/docs/manual/developer/hooks.html.en index 2d1e5298..13c90bda 100644 --- a/docs/manual/developer/hooks.html.en +++ b/docs/manual/developer/hooks.html.en @@ -234,6 +234,6 @@

Available Languages:  en 

\ No newline at end of file diff --git a/docs/manual/developer/index.html b/docs/manual/developer/index.html index e4d079c3..c260e8bc 100644 --- a/docs/manual/developer/index.html +++ b/docs/manual/developer/index.html @@ -3,3 +3,7 @@ URI: index.html.en Content-Language: en Content-type: text/html; charset=ISO-8859-1 + +URI: index.html.zh-cn +Content-Language: zh-cn +Content-type: text/html; charset=UTF-8 diff --git a/docs/manual/developer/index.html.en b/docs/manual/developer/index.html.en index 26a7afa0..ab2d0bc1 100644 --- a/docs/manual/developer/index.html.en +++ b/docs/manual/developer/index.html.en @@ -18,7 +18,8 @@

Developer Documentation for Apache 2.0

-

Available Languages:  en 

+

Available Languages:  en  | + zh-cn 

Many of the documents on these Developer pages are lifted @@ -48,12 +49,6 @@

External Resources

-

Available Languages:  en 

+

Available Languages:  en  | + zh-cn 

\ No newline at end of file diff --git a/docs/manual/developer/index.html.zh-cn b/docs/manual/developer/index.html.zh-cn new file mode 100644 index 00000000..9ea1aeeb --- /dev/null +++ b/docs/manual/developer/index.html.zh-cn @@ -0,0 +1,76 @@ + + + +Apache 2.0 开发者文档 - Apache HTTP 服务器 + + + + + +
<-
+

Apache 2.0 开发者文档

+
+

可用语言:  en  | + zh-cn 

+
+ +

开发者页面的许多文档都来自于 Apache 1.3。当更新到 Apache 2.0 + 时,它们可能位于不同的阶段。请耐心等待,或者直接向 + dev@httpd.apache.org 邮件列表报告开发者页面的差异或错误。

+
+ +
top
+
top
+
+
+

可用语言:  en  | + zh-cn 

+
+ \ No newline at end of file diff --git a/docs/manual/developer/modules.html.en b/docs/manual/developer/modules.html.en index c4cfe853..79e241ac 100644 --- a/docs/manual/developer/modules.html.en +++ b/docs/manual/developer/modules.html.en @@ -268,6 +268,6 @@ module MODULE_VAR_EXPORT module_name_module =

Available Languages:  en  |  ja 

\ No newline at end of file diff --git a/docs/manual/developer/modules.html.ja.utf8 b/docs/manual/developer/modules.html.ja.utf8 index 30b39b3e..659136ec 100644 --- a/docs/manual/developer/modules.html.ja.utf8 +++ b/docs/manual/developer/modules.html.ja.utf8 @@ -269,6 +269,6 @@ module MODULE_VAR_EXPORT module_name_module =

Available Languages:  en  |  ja 

\ No newline at end of file diff --git a/docs/manual/developer/request.html.en b/docs/manual/developer/request.html.en index c52fd140..58d0648a 100644 --- a/docs/manual/developer/request.html.en +++ b/docs/manual/developer/request.html.en @@ -255,6 +255,6 @@ case SATISFY_ANY:

Available Languages:  en 

\ No newline at end of file diff --git a/docs/manual/developer/thread_safety.html.en b/docs/manual/developer/thread_safety.html.en index ccd31fe4..a5150927 100644 --- a/docs/manual/developer/thread_safety.html.en +++ b/docs/manual/developer/thread_safety.html.en @@ -276,6 +276,6 @@

Available Languages:  en 

\ No newline at end of file -- cgit v1.2.3