diff xml/cn/docs/http/ngx_http_addition_module.xml @ 720:9934338f83af

Updated the Chinese documentation.
author Ruslan Ermilov <ru@nginx.com>
date Thu, 11 Oct 2012 10:23:05 +0000
parents
children ceb8a4e374b7
line wrap: on
line diff
new file mode 100644
--- /dev/null
+++ b/xml/cn/docs/http/ngx_http_addition_module.xml
@@ -0,0 +1,83 @@
+<?xml version="1.0"?>
+
+<!--
+  Copyright (C) Igor Sysoev
+  Copyright (C) Nginx, Inc.
+  -->
+
+<!DOCTYPE module SYSTEM "../../../../dtd/module.dtd">
+
+<module name="ngx_http_addition_module模块"
+        link="/cn/docs/http/ngx_http_addition_module.html"
+        lang="cn"
+        translator="Weibin Yao"
+        rev="1">
+
+<section id="summary">
+
+<para>
+<literal>ngx_http_addition_module</literal> 是一个过滤模块,它可以在回复正文前后加上内容。
+这个模块默认不会编译进去,若要开启需加上编译选项:<literal>--with-http_addition_module</literal>。
+</para>
+
+</section>
+
+
+<section id="example" name="Example Configuration">
+
+<para>
+<example>
+location / {
+    add_before_body /before_action;
+    add_after_body  /after_action;
+}
+</example>
+</para>
+
+</section>
+
+
+<section id="directives" name="Directives">
+
+<directive name="add_before_body">
+<syntax><value>uri</value></syntax>
+<default/>
+<context>location</context>
+
+<para>
+在回复正文之前加入一段文字,nginx会发起一个子请求去获取这些文字。
+</para>
+
+</directive>
+
+
+<directive name="add_after_body">
+<syntax><value>uri</value></syntax>
+<default/>
+<context>location</context>
+
+<para>
+在回复正文之后加入一段文字,nginx会发起一个子请求去获取这些文字。
+</para>
+
+</directive>
+
+
+<directive name="addition_types">
+<syntax><value>mime-type</value> ...</syntax>
+<default>text/html</default>
+<context>http</context>
+<context>server</context>
+<context>location</context>
+<appeared-in>0.7.9</appeared-in>
+
+<para>
+指定生效的回复MIME类型,默认始终包含“<literal>text/html</literal>”。
+如果设置类型为“<literal>*</literal>”,就会匹配任何类型的回复(0.8.29)。
+</para>
+
+</directive>
+
+</section>
+
+</module>