comparison xml/ru/docs/http/ngx_http_autoindex_module.xml @ 76:4a4caa566120

Russian documentation import. Changes in module.dtd: <example> now allowed to contain <value> and <emphasis> elements (we need this to show important parts in examples), less strict checking of <directive> syntax (we don't want to fully document some directives, notably deprecated ones). Known issues: 1. <syntax> elements are preserved as is, they will require manual conversion (likely to some not-yet-existed format a la DocBook cmdsynopsis, as currently used one seems to be incomplete); 2. <value> no longer corresponds to replaceable content, and it's use in examples isn't correct; 3. <link doc="document#fragment"> doesn't work with current xslt, either should be supported or changed to <link doc="document" id="fragment">. The following files are intentionally omitted: maillists.xml (support.xml should be used instead), experimental.xml (obsolete), faq.xml (conflicts with existing one, needs discussion). Not yet linked to site.
author Maxim Dounin <mdounin@mdounin.ru>
date Tue, 11 Oct 2011 12:57:50 +0000
parents
children c76a257f3fd4
comparison
equal deleted inserted replaced
75:2bf4cd2787c5 76:4a4caa566120
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd">
4
5 <module name="Директивы модуля ngx_http_autoindex_module"
6 link="/ru/docs/http/ngx_http_autoindex_module.html"
7 lang="ru">
8
9 <section name="" id="summary">
10
11 <para>
12 Модуль ngx_http_autoindex_module выдаёт листинг каталога.
13 Обычно запрос попадает к модулю ngx_http_autoindex_module,
14 когда модуль <link doc="ngx_http_index_module.xml">ngx_http_index_module</link> не нашёл индексный файл.
15 </para>
16
17 </section>
18
19
20 <section name="Пример конфигурации" id="example">
21
22 <para>
23 <example>
24 location / {
25 autoindex on;
26 }
27 </example>
28 </para>
29
30 </section>
31
32
33 <section name="Директивы" id="directives">
34
35 <directive name="autoindex">
36 <syntax>autoindex <value>[on|off]</value></syntax>
37 <default>autoindex off</default>
38 <context>http, server, location</context>
39
40 <para>
41 Директива разрешает или запрещает вывод листинга каталога.
42 </para>
43
44 </directive>
45
46
47 <directive name="autoindex_exact_size">
48 <syntax>autoindex_exact_size <value>[on|off]</value></syntax>
49 <default>autoindex_exact_size on</default>
50 <context>http, server, location</context>
51
52 <para>
53 Директива определяет, как выводить размеры файлов в листинге
54 каталога — точно, или округляя до килобайт, мегабайт и гигабайт.
55 </para>
56
57
58
59 </directive>
60
61
62 <directive name="autoindex_localtime">
63 <syntax>autoindex_localtime <value>[on|off]</value></syntax>
64 <default>autoindex_localtime off</default>
65 <context>http, server, location</context>
66
67 <para>
68 Директива определяет, в какой временной зоне выводить время в листинге
69 каталога — в локальной или в GMT.
70 </para>
71
72 </directive>
73
74 </section>
75
76 </module>