annotate xml/en/docs/contributing_changes.xml @ 928:b568f0c47599

Rewrote sentences to avoid use of "nginx" at the beginning.
author Valentin Bartenev <vbart@nginx.com>
date Tue, 04 Jun 2013 17:20:00 +0400
parents 7bee6f82db95
children 47e98e05b8dc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
912
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
1 <?xml version="1.0"?>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
2
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
3 <!--
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
4 Copyright (C) Nginx, Inc.
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
5 -->
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
6
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
7 <!DOCTYPE article SYSTEM "../../../dtd/article.dtd">
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
8
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
9 <article name="Contributing Changes"
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
10 link="/en/docs/contributing_changes.html"
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
11 lang="en"
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
12 rev="1">
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
13
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
14 <section id="getting_sources" name="Getting Sources">
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
15
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
16 <para>
928
b568f0c47599 Rewrote sentences to avoid use of "nginx" at the beginning.
Valentin Bartenev <vbart@nginx.com>
parents: 912
diff changeset
17 <link url="http://mercurial.selenic.com">Mercurial</link> is used
912
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
18 to store source code.
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
19 The <link url="http://hg.nginx.org/nginx">repository</link> can be cloned
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
20 with the following command:
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
21 <programlisting>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
22 hg clone http://hg.nginx.org/nginx
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
23 </programlisting>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
24 </para>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
25
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
26 </section>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
27
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
28
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
29 <section id="formatting_changes" name="Formatting Changes">
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
30
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
31 <para>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
32 Changes should be formatted according to the code style used by nginx.
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
33 Code formatting should not rely on such editor features like syntax
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
34 highlighting or automatic line breaking.
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
35 Below are some basic rules:
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
36 <list type="bullet">
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
37
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
38 <listitem>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
39 maximum text width is 80 characters
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
40 </listitem>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
41
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
42 <listitem>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
43 indentation is four spaces
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
44 </listitem>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
45
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
46 <listitem>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
47 no tabs
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
48 </listitem>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
49
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
50 <listitem>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
51 logical code blocks in a file are separated with two empty lines
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
52 </listitem>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
53
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
54 </list>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
55 Examine how existing nginx sources are formatted and mimic this style
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
56 in your code.
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
57 Changes will more likely be accepted if style corresponds to the surrounding
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
58 code.
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
59 </para>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
60
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
61 <para>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
62 Commit the changes to create a Mercurial
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
63 <link url="http://mercurial.selenic.com/wiki/ChangeSet">changeset</link>.
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
64 Please ensure that the specified
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
65 <link url="http://mercurial.selenic.com/wiki/QuickStart#Setting_a_username">e-mail</link>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
66 address and real name of the change’s author are correct.
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
67 </para>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
68
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
69 <para>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
70 The commit message should have a single-line synopsis followed by verbose
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
71 description after an empty line.
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
72 It is desirable that the first line is no longer than 67 symbols.
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
73 The resulting changeset as a patch can be obtained using the
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
74 <literal>hg export</literal> command:
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
75 <programlisting>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
76 # HG changeset patch
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
77 # User Filipe Da Silva &lt;username@example.com>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
78 # Date 1368089668 -7200
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
79 # Thu May 09 10:54:28 2013 +0200
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
80 # Node ID 2220de0521ca2c0b664a8ea1e201ce1cb90fd7a2
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
81 # Parent 822b82191940ef309cd1e6502f94d50d811252a1
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
82 Mail: removed surplus ngx_close_connection() call.
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
83
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
84 It is already called for a peer connection a few lines above.
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
85
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
86 diff -r 822b82191940 -r 2220de0521ca src/mail/ngx_mail_auth_http_module.c
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
87 --- a/src/mail/ngx_mail_auth_http_module.c Wed May 15 15:04:49 2013 +0400
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
88 +++ b/src/mail/ngx_mail_auth_http_module.c Thu May 09 10:54:28 2013 +0200
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
89 @@ -699,7 +699,6 @@ ngx_mail_auth_http_process_headers(ngx_m
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
90
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
91 p = ngx_pnalloc(s->connection->pool, ctx->err.len);
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
92 if (p == NULL) {
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
93 - ngx_close_connection(ctx->peer.connection);
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
94 ngx_destroy_pool(ctx->pool);
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
95 ngx_mail_session_internal_server_error(s);
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
96 return;
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
97 </programlisting>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
98 </para>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
99
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
100 </section>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
101
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
102
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
103 <section id="before_submitting" name="Before Submitting">
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
104
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
105 <para>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
106 Several points are worth to consider before submitting changes:
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
107 <list type="bullet">
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
108
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
109 <listitem>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
110 The proposed changes should work properly on a wide range of
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
111 <link doc="../index.xml" id="tested_os_and_platforms">supported
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
112 platforms</link>.
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
113 </listitem>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
114
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
115 <listitem>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
116 Try to make it clear why the suggested change is needed, and provide a use
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
117 case, if possible.
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
118 </listitem>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
119
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
120 </list>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
121 </para>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
122
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
123 </section>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
124
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
125
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
126 <section id="submitting_changes" name="Submitting Changes">
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
127
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
128 <para>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
129 The proposed changes should be sent to the
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
130 <link doc="../support.xml" id="nginx_devel">nginx development</link>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
131 mailing list.
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
132 The preferred and convenient method of submitting changesets
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
133 is with the
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
134 <link url="http://mercurial.selenic.com/wiki/PatchbombExtension">patchbomb</link>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
135 extension.
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
136 </para>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
137
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
138 </section>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
139
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
140
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
141 <section id="license" name="License">
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
142
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
143 <para>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
144 Submitting changes implies granting project a permission to use it under
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
145 an appropriate <link url="../../LICENSE">license</link>.
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
146 </para>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
147
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
148 </section>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
149
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
150 </article>