annotate docs/xslt/content.xslt @ 4019:5364d2e711cc

SIGWINCH/NOACCEPT signal is disabled now in non-daemon mode. Non-daemon mode is currently used by supervisord, daemontools and so on or during debugging. The NOACCEPT signal is only used for online upgrade which is not supported when nginx is run under supervisord, etc., so this change should not break existant setups.
author Igor Sysoev <igor@sysoev.ru>
date Mon, 22 Aug 2011 12:34:48 +0000
parents 131adbb6c82d
children da811964e37c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
1 <?xml version="1.0" encoding="utf-8"?>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
3
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
4 <xsl:template match="section[@name and @title]">
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
5
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
6 <a name="{@name}"/>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
7 <center>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
8 <h4>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
9 <xsl:value-of select="@title"/>
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
10 </h4>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
11 </center>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
12
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
13 <xsl:apply-templates/>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
14 </xsl:template>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
15
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
16 <xsl:template match="section[not(@name) and @title]">
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
17
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
18 <center>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
19 <h4>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
20 <xsl:value-of select="@title"/>
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
21 </h4>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
22 </center>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
23
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
24 <xsl:apply-templates/>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
25 </xsl:template>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
26
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
27 <xsl:template match="section[not(@name) and not(@title)]">
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
28 <xsl:apply-templates/>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
29 </xsl:template>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
30
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
31 <xsl:template match="para">
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
32 <p>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
33 <xsl:apply-templates/>
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
34 </p>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
35 </xsl:template>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
36
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
37 <xsl:template match="value">
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
38 <i>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
39 <xsl:apply-templates/>
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
40 </i>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
41 </xsl:template>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
42
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
43 </xsl:stylesheet>