annotate xml/en/docs/contributing_changes.xml @ 1775:a469e77d446f

Fixed links to Mercurial SCM site.
author Ruslan Ermilov <ru@nginx.com>
date Wed, 07 Sep 2016 14:39:54 +0300
parents 47e98e05b8dc
children ccc41545bf55
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"
1775
a469e77d446f Fixed links to Mercurial SCM site.
Ruslan Ermilov <ru@nginx.com>
parents: 1351
diff changeset
12 rev="3">
912
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>
1775
a469e77d446f Fixed links to Mercurial SCM site.
Ruslan Ermilov <ru@nginx.com>
parents: 1351
diff changeset
17 <link url="https://www.mercurial-scm.org">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
1775
a469e77d446f Fixed links to Mercurial SCM site.
Ruslan Ermilov <ru@nginx.com>
parents: 1351
diff changeset
63 <link url="https://www.mercurial-scm.org/wiki/ChangeSet">changeset</link>.
912
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
64 Please ensure that the specified
1775
a469e77d446f Fixed links to Mercurial SCM site.
Ruslan Ermilov <ru@nginx.com>
parents: 1351
diff changeset
65 <link url="https://www.mercurial-scm.org/wiki/QuickStart#Setting_a_username">e-mail</link>
912
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
1351
47e98e05b8dc Added a couple of words about the nginx test suite.
Ruslan Ermilov <ru@nginx.com>
parents: 928
diff changeset
120 <listitem>
47e98e05b8dc Added a couple of words about the nginx test suite.
Ruslan Ermilov <ru@nginx.com>
parents: 928
diff changeset
121 Passing your changes through the test suite is a good way to ensure
47e98e05b8dc Added a couple of words about the nginx test suite.
Ruslan Ermilov <ru@nginx.com>
parents: 928
diff changeset
122 that they do not cause a regression.
47e98e05b8dc Added a couple of words about the nginx test suite.
Ruslan Ermilov <ru@nginx.com>
parents: 928
diff changeset
123 The <link url="http://hg.nginx.org/nginx-tests">repository</link> with
47e98e05b8dc Added a couple of words about the nginx test suite.
Ruslan Ermilov <ru@nginx.com>
parents: 928
diff changeset
124 tests can be cloned with the following command:
47e98e05b8dc Added a couple of words about the nginx test suite.
Ruslan Ermilov <ru@nginx.com>
parents: 928
diff changeset
125 <programlisting>
47e98e05b8dc Added a couple of words about the nginx test suite.
Ruslan Ermilov <ru@nginx.com>
parents: 928
diff changeset
126 hg clone http://hg.nginx.org/nginx-tests
47e98e05b8dc Added a couple of words about the nginx test suite.
Ruslan Ermilov <ru@nginx.com>
parents: 928
diff changeset
127 </programlisting>
47e98e05b8dc Added a couple of words about the nginx test suite.
Ruslan Ermilov <ru@nginx.com>
parents: 928
diff changeset
128 </listitem>
47e98e05b8dc Added a couple of words about the nginx test suite.
Ruslan Ermilov <ru@nginx.com>
parents: 928
diff changeset
129
912
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
130 </list>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
131 </para>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
132
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
133 </section>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
134
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
135
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
136 <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
137
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
138 <para>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
139 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
140 <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
141 mailing list.
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
142 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
143 is with the
1775
a469e77d446f Fixed links to Mercurial SCM site.
Ruslan Ermilov <ru@nginx.com>
parents: 1351
diff changeset
144 <link url="https://www.mercurial-scm.org/wiki/PatchbombExtension">patchbomb</link>
912
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
145 extension.
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
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
151 <section id="license" name="License">
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
152
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
153 <para>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
154 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
155 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
156 </para>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
157
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
158 </section>
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
159
7bee6f82db95 Actually added new files for the "Contributing Changes" article.
Vladimir Homutov <vl@nginx.com>
parents:
diff changeset
160 </article>