##// END OF EJS Templates
mail: ensure that Python2.4 to 2.7 use the same header format...
Nicolas Dumazet -
r11542:594b9884 stable
parent child Browse files
Show More
@@ -1,206 +1,226
1 1 # mail.py - mail sending bits for mercurial
2 2 #
3 3 # Copyright 2006 Matt Mackall <mpm@selenic.com>
4 4 #
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2 or any later version.
7 7
8 8 from i18n import _
9 9 import util, encoding
10 10 import os, smtplib, socket, quopri
11 11 import email.Header, email.MIMEText, email.Utils
12 12
13 _oldheaderinit = email.Header.Header.__init__
14 def _unifiedheaderinit(self, *args, **kw):
15 """
16 Python2.7 introduces a backwards incompatible change
17 (Python issue1974, r70772) in email.Generator.Generator code:
18 pre-2.7 code passed "continuation_ws='\t'" to the Header
19 constructor, and 2.7 removed this parameter.
20
21 Default argument is continuation_ws=' ', which means that the
22 behaviour is different in <2.7 and 2.7
23
24 We consider the 2.7 behaviour to be preferable, but need
25 to have an unified behaviour for versions 2.4 to 2.7
26 """
27 # override continuation_ws
28 kw['continuation_ws'] = ' '
29 _oldheaderinit(self, *args, **kw)
30
31 email.Header.Header.__dict__['__init__'] = _unifiedheaderinit
32
13 33 def _smtp(ui):
14 34 '''build an smtp connection and return a function to send mail'''
15 35 local_hostname = ui.config('smtp', 'local_hostname')
16 36 s = smtplib.SMTP(local_hostname=local_hostname)
17 37 mailhost = ui.config('smtp', 'host')
18 38 if not mailhost:
19 39 raise util.Abort(_('no [smtp]host in hgrc - cannot send mail'))
20 40 mailport = int(ui.config('smtp', 'port', 25))
21 41 ui.note(_('sending mail: smtp host %s, port %s\n') %
22 42 (mailhost, mailport))
23 43 s.connect(host=mailhost, port=mailport)
24 44 if ui.configbool('smtp', 'tls'):
25 45 if not hasattr(socket, 'ssl'):
26 46 raise util.Abort(_("can't use TLS: Python SSL support "
27 47 "not installed"))
28 48 ui.note(_('(using tls)\n'))
29 49 s.ehlo()
30 50 s.starttls()
31 51 s.ehlo()
32 52 username = ui.config('smtp', 'username')
33 53 password = ui.config('smtp', 'password')
34 54 if username and not password:
35 55 password = ui.getpass()
36 56 if username and password:
37 57 ui.note(_('(authenticating to mail server as %s)\n') %
38 58 (username))
39 59 try:
40 60 s.login(username, password)
41 61 except smtplib.SMTPException, inst:
42 62 raise util.Abort(inst)
43 63
44 64 def send(sender, recipients, msg):
45 65 try:
46 66 return s.sendmail(sender, recipients, msg)
47 67 except smtplib.SMTPRecipientsRefused, inst:
48 68 recipients = [r[1] for r in inst.recipients.values()]
49 69 raise util.Abort('\n' + '\n'.join(recipients))
50 70 except smtplib.SMTPException, inst:
51 71 raise util.Abort(inst)
52 72
53 73 return send
54 74
55 75 def _sendmail(ui, sender, recipients, msg):
56 76 '''send mail using sendmail.'''
57 77 program = ui.config('email', 'method')
58 78 cmdline = '%s -f %s %s' % (program, util.email(sender),
59 79 ' '.join(map(util.email, recipients)))
60 80 ui.note(_('sending mail: %s\n') % cmdline)
61 81 fp = util.popen(cmdline, 'w')
62 82 fp.write(msg)
63 83 ret = fp.close()
64 84 if ret:
65 85 raise util.Abort('%s %s' % (
66 86 os.path.basename(program.split(None, 1)[0]),
67 87 util.explain_exit(ret)[0]))
68 88
69 89 def connect(ui):
70 90 '''make a mail connection. return a function to send mail.
71 91 call as sendmail(sender, list-of-recipients, msg).'''
72 92 if ui.config('email', 'method', 'smtp') == 'smtp':
73 93 return _smtp(ui)
74 94 return lambda s, r, m: _sendmail(ui, s, r, m)
75 95
76 96 def sendmail(ui, sender, recipients, msg):
77 97 send = connect(ui)
78 98 return send(sender, recipients, msg)
79 99
80 100 def validateconfig(ui):
81 101 '''determine if we have enough config data to try sending email.'''
82 102 method = ui.config('email', 'method', 'smtp')
83 103 if method == 'smtp':
84 104 if not ui.config('smtp', 'host'):
85 105 raise util.Abort(_('smtp specified as email transport, '
86 106 'but no smtp host configured'))
87 107 else:
88 108 if not util.find_exe(method):
89 109 raise util.Abort(_('%r specified as email transport, '
90 110 'but not in PATH') % method)
91 111
92 112 def mimetextpatch(s, subtype='plain', display=False):
93 113 '''If patch in utf-8 transfer-encode it.'''
94 114
95 115 enc = None
96 116 for line in s.splitlines():
97 117 if len(line) > 950:
98 118 s = quopri.encodestring(s)
99 119 enc = "quoted-printable"
100 120 break
101 121
102 122 cs = 'us-ascii'
103 123 if not display:
104 124 try:
105 125 s.decode('us-ascii')
106 126 except UnicodeDecodeError:
107 127 try:
108 128 s.decode('utf-8')
109 129 cs = 'utf-8'
110 130 except UnicodeDecodeError:
111 131 # We'll go with us-ascii as a fallback.
112 132 pass
113 133
114 134 msg = email.MIMEText.MIMEText(s, subtype, cs)
115 135 if enc:
116 136 del msg['Content-Transfer-Encoding']
117 137 msg['Content-Transfer-Encoding'] = enc
118 138 return msg
119 139
120 140 def _charsets(ui):
121 141 '''Obtains charsets to send mail parts not containing patches.'''
122 142 charsets = [cs.lower() for cs in ui.configlist('email', 'charsets')]
123 143 fallbacks = [encoding.fallbackencoding.lower(),
124 144 encoding.encoding.lower(), 'utf-8']
125 145 for cs in fallbacks: # find unique charsets while keeping order
126 146 if cs not in charsets:
127 147 charsets.append(cs)
128 148 return [cs for cs in charsets if not cs.endswith('ascii')]
129 149
130 150 def _encode(ui, s, charsets):
131 151 '''Returns (converted) string, charset tuple.
132 152 Finds out best charset by cycling through sendcharsets in descending
133 153 order. Tries both encoding and fallbackencoding for input. Only as
134 154 last resort send as is in fake ascii.
135 155 Caveat: Do not use for mail parts containing patches!'''
136 156 try:
137 157 s.decode('ascii')
138 158 except UnicodeDecodeError:
139 159 sendcharsets = charsets or _charsets(ui)
140 160 for ics in (encoding.encoding, encoding.fallbackencoding):
141 161 try:
142 162 u = s.decode(ics)
143 163 except UnicodeDecodeError:
144 164 continue
145 165 for ocs in sendcharsets:
146 166 try:
147 167 return u.encode(ocs), ocs
148 168 except UnicodeEncodeError:
149 169 pass
150 170 except LookupError:
151 171 ui.warn(_('ignoring invalid sendcharset: %s\n') % ocs)
152 172 # if ascii, or all conversion attempts fail, send (broken) ascii
153 173 return s, 'us-ascii'
154 174
155 175 def headencode(ui, s, charsets=None, display=False):
156 176 '''Returns RFC-2047 compliant header from given string.'''
157 177 if not display:
158 178 # split into words?
159 179 s, cs = _encode(ui, s, charsets)
160 180 return str(email.Header.Header(s, cs))
161 181 return s
162 182
163 183 def _addressencode(ui, name, addr, charsets=None):
164 184 name = headencode(ui, name, charsets)
165 185 try:
166 186 acc, dom = addr.split('@')
167 187 acc = acc.encode('ascii')
168 188 dom = dom.decode(encoding.encoding).encode('idna')
169 189 addr = '%s@%s' % (acc, dom)
170 190 except UnicodeDecodeError:
171 191 raise util.Abort(_('invalid email address: %s') % addr)
172 192 except ValueError:
173 193 try:
174 194 # too strict?
175 195 addr = addr.encode('ascii')
176 196 except UnicodeDecodeError:
177 197 raise util.Abort(_('invalid local address: %s') % addr)
178 198 return email.Utils.formataddr((name, addr))
179 199
180 200 def addressencode(ui, address, charsets=None, display=False):
181 201 '''Turns address into RFC-2047 compliant header.'''
182 202 if display or not address:
183 203 return address or ''
184 204 name, addr = email.Utils.parseaddr(address)
185 205 return _addressencode(ui, name, addr, charsets)
186 206
187 207 def addrlistencode(ui, addrs, charsets=None, display=False):
188 208 '''Turns a list of addresses into a list of RFC-2047 compliant headers.
189 209 A single element of input list may contain multiple addresses, but output
190 210 always has one address per item'''
191 211 if display:
192 212 return [a.strip() for a in addrs if a.strip()]
193 213
194 214 result = []
195 215 for name, addr in email.Utils.getaddresses(addrs):
196 216 if name or addr:
197 217 result.append(_addressencode(ui, name, addr, charsets))
198 218 return result
199 219
200 220 def mimeencode(ui, s, charsets=None, display=False):
201 221 '''creates mime text object, encodes it if needed, and sets
202 222 charset and transfer-encoding accordingly.'''
203 223 cs = 'us-ascii'
204 224 if not display:
205 225 s, cs = _encode(ui, s, charsets)
206 226 return email.MIMEText.MIMEText(s, 'plain', cs)
@@ -1,1947 +1,1947
1 1 adding a
2 2 This patch series consists of 1 patches.
3 3
4 4
5 5 Displaying [PATCH] a ...
6 6 Content-Type: text/plain; charset="us-ascii"
7 7 MIME-Version: 1.0
8 8 Content-Transfer-Encoding: 7bit
9 9 Subject: [PATCH] a
10 10 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
11 11 Message-Id: <8580ff50825a50c8f716.60@
12 12 User-Agent: Mercurial-patchbomb
13 13 Date: Thu, 01 Jan 1970 00:01:00 +0000
14 14 From: quux
15 15 To: foo
16 16 Cc: bar
17 17
18 18 # HG changeset patch
19 19 # User test
20 20 # Date 1 0
21 21 # Node ID 8580ff50825a50c8f716709acdf8de0deddcd6ab
22 22 # Parent 0000000000000000000000000000000000000000
23 23 a
24 24
25 25 diff -r 000000000000 -r 8580ff50825a a
26 26 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
27 27 +++ b/a Thu Jan 01 00:00:01 1970 +0000
28 28 @@ -0,0 +1,1 @@
29 29 +a
30 30
31 31 adding b
32 32 This patch series consists of 2 patches.
33 33
34 34
35 35 Write the introductory message for the patch series.
36 36
37 37
38 38 Displaying [PATCH 0 of 2] test ...
39 39 Content-Type: text/plain; charset="us-ascii"
40 40 MIME-Version: 1.0
41 41 Content-Transfer-Encoding: 7bit
42 42 Subject: [PATCH 0 of 2] test
43 43 Message-Id: <patchbomb.120@
44 44 User-Agent: Mercurial-patchbomb
45 45 Date: Thu, 01 Jan 1970 00:02:00 +0000
46 46 From: quux
47 47 To: foo
48 48 Cc: bar
49 49
50 50
51 51 Displaying [PATCH 1 of 2] a ...
52 52 Content-Type: text/plain; charset="us-ascii"
53 53 MIME-Version: 1.0
54 54 Content-Transfer-Encoding: 7bit
55 55 Subject: [PATCH 1 of 2] a
56 56 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
57 57 Message-Id: <8580ff50825a50c8f716.121@
58 58 In-Reply-To: <patchbomb.120@
59 59 References: <patchbomb.120@
60 60 User-Agent: Mercurial-patchbomb
61 61 Date: Thu, 01 Jan 1970 00:02:01 +0000
62 62 From: quux
63 63 To: foo
64 64 Cc: bar
65 65
66 66 # HG changeset patch
67 67 # User test
68 68 # Date 1 0
69 69 # Node ID 8580ff50825a50c8f716709acdf8de0deddcd6ab
70 70 # Parent 0000000000000000000000000000000000000000
71 71 a
72 72
73 73 diff -r 000000000000 -r 8580ff50825a a
74 74 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
75 75 +++ b/a Thu Jan 01 00:00:01 1970 +0000
76 76 @@ -0,0 +1,1 @@
77 77 +a
78 78
79 79 Displaying [PATCH 2 of 2] b ...
80 80 Content-Type: text/plain; charset="us-ascii"
81 81 MIME-Version: 1.0
82 82 Content-Transfer-Encoding: 7bit
83 83 Subject: [PATCH 2 of 2] b
84 84 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
85 85 Message-Id: <97d72e5f12c7e84f8506.122@
86 86 In-Reply-To: <patchbomb.120@
87 87 References: <patchbomb.120@
88 88 User-Agent: Mercurial-patchbomb
89 89 Date: Thu, 01 Jan 1970 00:02:02 +0000
90 90 From: quux
91 91 To: foo
92 92 Cc: bar
93 93
94 94 # HG changeset patch
95 95 # User test
96 96 # Date 2 0
97 97 # Node ID 97d72e5f12c7e84f85064aa72e5a297142c36ed9
98 98 # Parent 8580ff50825a50c8f716709acdf8de0deddcd6ab
99 99 b
100 100
101 101 diff -r 8580ff50825a -r 97d72e5f12c7 b
102 102 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
103 103 +++ b/b Thu Jan 01 00:00:02 1970 +0000
104 104 @@ -0,0 +1,1 @@
105 105 +b
106 106
107 107 This patch series consists of 2 patches.
108 108
109 109
110 110 Write the introductory message for the patch series.
111 111
112 112
113 113 Writing [PATCH 0 of 2] test ...
114 114 Writing [PATCH 1 of 2] a ...
115 115 Writing [PATCH 2 of 2] b ...
116 116 adding c
117 117 % test bundle and description
118 118 searching for changes
119 119 1 changesets found
120 120
121 121 Displaying test ...
122 122 Content-Type: multipart/mixed; boundary="===
123 123 MIME-Version: 1.0
124 124 Subject: test
125 125 Message-Id: <patchbomb.180@
126 126 User-Agent: Mercurial-patchbomb
127 127 Date: Thu, 01 Jan 1970 00:03:00 +0000
128 128 From: quux
129 129 To: foo
130 130 Cc: bar
131 131
132 132 --===
133 133 Content-Type: text/plain; charset="us-ascii"
134 134 MIME-Version: 1.0
135 135 Content-Transfer-Encoding: 7bit
136 136
137 137 a multiline
138 138
139 139 description
140 140
141 141 --===
142 142 Content-Type: application/x-mercurial-bundle
143 143 MIME-Version: 1.0
144 144 Content-Disposition: attachment; filename="bundle.hg"
145 145 Content-Transfer-Encoding: base64
146 146
147 147 SEcxMEJaaDkxQVkmU1nvR7I3AAAN////lFYQWj1/4HwRkdC/AywIAk0E4pfoSIIIgQCgGEQOcLAA
148 148 2tA1VPyp4mkeoG0EaaPU0GTT1GjRiNPIg9CZGBqZ6UbU9J+KFU09DNUaGgAAAAAANAGgAAAAA1U8
149 149 oGgAADQGgAANNANAAAAAAZipFLz3XoakCEQB3PVPyHJVi1iYkAAKQAZQGpQGZESInRnCFMqLDla2
150 150 Bx3qfRQeA2N4lnzKkAmP8kR2asievLLXXebVU8Vg4iEBqcJNJAxIapSU6SM4888ZAciRG6MYAIEE
151 151 SlIBpFisgGkyRjX//TMtfcUAEsGu56+YnE1OlTZmzKm8BSu2rvo4rHAYYaadIFFuTy0LYgIkgLVD
152 152 sgVa2F19D1tx9+hgbAygLgQwaIqcDdgA4BjQgIiz/AEP72++llgDKhKducqodGE4B0ETqF3JFOFC
153 153 Q70eyNw=
154 154 --===
155 155 % utf-8 patch
156 156 adding description
157 157 adding utf
158 158 % no mime encoding for email --test
159 159 % md5sum of 8-bit output
160 160 e726c29b3008e77994c7572563e57c34 mailtest
161 161 % mime encoded mbox (base64)
162 162 This patch series consists of 1 patches.
163 163
164 164
165 165 Writing [PATCH] charset=utf-8; content-transfer-encoding: base64 ...
166 166 From quux Thu Jan 01 00:04:01 1970
167 167 Content-Type: text/plain; charset="utf-8"
168 168 MIME-Version: 1.0
169 169 Content-Transfer-Encoding: base64
170 170 Subject: [PATCH] charset=utf-8; content-transfer-encoding: base64
171 171 X-Mercurial-Node: c3c9e37db9f4fe4882cda39baf42fed6bad8b15a
172 172 Message-Id: <c3c9e37db9f4fe4882cd.240@
173 173 User-Agent: Mercurial-patchbomb
174 174 Date: Thu, 01 Jan 1970 00:04:00 +0000
175 175 From: quux
176 176 To: foo
177 177 Cc: bar
178 178
179 179 IyBIRyBjaGFuZ2VzZXQgcGF0Y2gKIyBVc2VyIHRlc3QKIyBEYXRlIDQgMAojIE5vZGUgSUQgYzNj
180 180 OWUzN2RiOWY0ZmU0ODgyY2RhMzliYWY0MmZlZDZiYWQ4YjE1YQojIFBhcmVudCAgZmYyYzlmYTIw
181 181 MThiMTVmYTc0YjMzMzYzYmRhOTUyNzMyM2UyYTk5ZgpjaGFyc2V0PXV0Zi04OyBjb250ZW50LXRy
182 182 YW5zZmVyLWVuY29kaW5nOiBiYXNlNjQKCmRpZmYgLXIgZmYyYzlmYTIwMThiIC1yIGMzYzllMzdk
183 183 YjlmNCBkZXNjcmlwdGlvbgotLS0gL2Rldi9udWxsCVRodSBKYW4gMDEgMDA6MDA6MDAgMTk3MCAr
184 184 MDAwMAorKysgYi9kZXNjcmlwdGlvbglUaHUgSmFuIDAxIDAwOjAwOjA0IDE5NzAgKzAwMDAKQEAg
185 185 LTAsMCArMSwzIEBACithIG11bHRpbGluZQorCitkZXNjcmlwdGlvbgpkaWZmIC1yIGZmMmM5ZmEy
186 186 MDE4YiAtciBjM2M5ZTM3ZGI5ZjQgdXRmCi0tLSAvZGV2L251bGwJVGh1IEphbiAwMSAwMDowMDow
187 187 MCAxOTcwICswMDAwCisrKyBiL3V0ZglUaHUgSmFuIDAxIDAwOjAwOjA0IDE5NzAgKzAwMDAKQEAg
188 188 LTAsMCArMSwxIEBACitow7ZtbWEhCg==
189 189
190 190
191 191 % mime encoded mbox (quoted-printable)
192 192 adding qp
193 193 % no mime encoding for email --test
194 194 % md5sum of qp output
195 195 0402c7d033e04044e423bb04816f9dae mailtest
196 196 % mime encoded mbox (quoted-printable)
197 197 This patch series consists of 1 patches.
198 198
199 199
200 200 Writing [PATCH] charset=utf-8; content-transfer-encoding: quoted-printable ...
201 201 From quux Thu Jan 01 00:04:01 1970
202 202 Content-Type: text/plain; charset="us-ascii"
203 203 MIME-Version: 1.0
204 204 Content-Transfer-Encoding: quoted-printable
205 205 Subject: [PATCH] charset=utf-8; content-transfer-encoding: quoted-printable
206 206 X-Mercurial-Node: c655633f8c87700bb38cc6a59a2753bdc5a6c376
207 207 Message-Id: <c655633f8c87700bb38c.240@
208 208 User-Agent: Mercurial-patchbomb
209 209 Date: Thu, 01 Jan 1970 00:04:00 +0000
210 210 From: quux
211 211 To: foo
212 212 Cc: bar
213 213
214 214 # HG changeset patch
215 215 # User test
216 216 # Date 4 0
217 217 # Node ID c655633f8c87700bb38cc6a59a2753bdc5a6c376
218 218 # Parent c3c9e37db9f4fe4882cda39baf42fed6bad8b15a
219 219 charset=3Dutf-8; content-transfer-encoding: quoted-printable
220 220
221 221 diff -r c3c9e37db9f4 -r c655633f8c87 qp
222 222 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
223 223 +++ b/qp Thu Jan 01 00:00:04 1970 +0000
224 224 @@ -0,0 +1,4 @@
225 225 +xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
226 226 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
227 227 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
228 228 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
229 229 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
230 230 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
231 231 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
232 232 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
233 233 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
234 234 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
235 235 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
236 236 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
237 237 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
238 238 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
239 239 +foo
240 240 +
241 241 +bar
242 242
243 243
244 244 % iso-8859-1 patch
245 245 adding isolatin
246 246 % fake ascii mbox
247 247 This patch series consists of 1 patches.
248 248
249 249
250 250 Writing [PATCH] charset=us-ascii; content-transfer-encoding: 8bit ...
251 251 % md5sum of 8-bit output
252 252 9ea043d8fc43a71045114508baed144b mboxfix
253 253 % test diffstat for single patch
254 254 This patch series consists of 1 patches.
255 255
256 256 c
257 257
258 258 c | 1 +
259 259 1 files changed, 1 insertions(+), 0 deletions(-)
260 260
261 261
262 262 Displaying [PATCH] test ...
263 263 Content-Type: text/plain; charset="us-ascii"
264 264 MIME-Version: 1.0
265 265 Content-Transfer-Encoding: 7bit
266 266 Subject: [PATCH] test
267 267 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
268 268 Message-Id: <ff2c9fa2018b15fa74b3.60@
269 269 User-Agent: Mercurial-patchbomb
270 270 Date: Thu, 01 Jan 1970 00:01:00 +0000
271 271 From: quux
272 272 To: foo
273 273 Cc: bar
274 274
275 275 c | 1 +
276 276 1 files changed, 1 insertions(+), 0 deletions(-)
277 277
278 278
279 279 # HG changeset patch
280 280 # User test
281 281 # Date 3 0
282 282 # Node ID ff2c9fa2018b15fa74b33363bda9527323e2a99f
283 283 # Parent 97d72e5f12c7e84f85064aa72e5a297142c36ed9
284 284 c
285 285
286 286 diff -r 97d72e5f12c7 -r ff2c9fa2018b c
287 287 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
288 288 +++ b/c Thu Jan 01 00:00:03 1970 +0000
289 289 @@ -0,0 +1,1 @@
290 290 +c
291 291
292 292 % test diffstat for multiple patches
293 293 This patch series consists of 2 patches.
294 294
295 295 a
296 296
297 297 a | 1 +
298 298 1 files changed, 1 insertions(+), 0 deletions(-)
299 299
300 300 b
301 301
302 302 b | 1 +
303 303 1 files changed, 1 insertions(+), 0 deletions(-)
304 304
305 305 Final summary:
306 306
307 307 a | 1 +
308 308 b | 1 +
309 309 2 files changed, 2 insertions(+), 0 deletions(-)
310 310
311 311
312 312 Write the introductory message for the patch series.
313 313
314 314
315 315 Displaying [PATCH 0 of 2] test ...
316 316 Content-Type: text/plain; charset="us-ascii"
317 317 MIME-Version: 1.0
318 318 Content-Transfer-Encoding: 7bit
319 319 Subject: [PATCH 0 of 2] test
320 320 Message-Id: <patchbomb.60@
321 321 User-Agent: Mercurial-patchbomb
322 322 Date: Thu, 01 Jan 1970 00:01:00 +0000
323 323 From: quux
324 324 To: foo
325 325 Cc: bar
326 326
327 327
328 328 a | 1 +
329 329 b | 1 +
330 330 2 files changed, 2 insertions(+), 0 deletions(-)
331 331
332 332 Displaying [PATCH 1 of 2] a ...
333 333 Content-Type: text/plain; charset="us-ascii"
334 334 MIME-Version: 1.0
335 335 Content-Transfer-Encoding: 7bit
336 336 Subject: [PATCH 1 of 2] a
337 337 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
338 338 Message-Id: <8580ff50825a50c8f716.61@
339 339 In-Reply-To: <patchbomb.60@
340 340 References: <patchbomb.60@
341 341 User-Agent: Mercurial-patchbomb
342 342 Date: Thu, 01 Jan 1970 00:01:01 +0000
343 343 From: quux
344 344 To: foo
345 345 Cc: bar
346 346
347 347 a | 1 +
348 348 1 files changed, 1 insertions(+), 0 deletions(-)
349 349
350 350
351 351 # HG changeset patch
352 352 # User test
353 353 # Date 1 0
354 354 # Node ID 8580ff50825a50c8f716709acdf8de0deddcd6ab
355 355 # Parent 0000000000000000000000000000000000000000
356 356 a
357 357
358 358 diff -r 000000000000 -r 8580ff50825a a
359 359 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
360 360 +++ b/a Thu Jan 01 00:00:01 1970 +0000
361 361 @@ -0,0 +1,1 @@
362 362 +a
363 363
364 364 Displaying [PATCH 2 of 2] b ...
365 365 Content-Type: text/plain; charset="us-ascii"
366 366 MIME-Version: 1.0
367 367 Content-Transfer-Encoding: 7bit
368 368 Subject: [PATCH 2 of 2] b
369 369 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
370 370 Message-Id: <97d72e5f12c7e84f8506.62@
371 371 In-Reply-To: <patchbomb.60@
372 372 References: <patchbomb.60@
373 373 User-Agent: Mercurial-patchbomb
374 374 Date: Thu, 01 Jan 1970 00:01:02 +0000
375 375 From: quux
376 376 To: foo
377 377 Cc: bar
378 378
379 379 b | 1 +
380 380 1 files changed, 1 insertions(+), 0 deletions(-)
381 381
382 382
383 383 # HG changeset patch
384 384 # User test
385 385 # Date 2 0
386 386 # Node ID 97d72e5f12c7e84f85064aa72e5a297142c36ed9
387 387 # Parent 8580ff50825a50c8f716709acdf8de0deddcd6ab
388 388 b
389 389
390 390 diff -r 8580ff50825a -r 97d72e5f12c7 b
391 391 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
392 392 +++ b/b Thu Jan 01 00:00:02 1970 +0000
393 393 @@ -0,0 +1,1 @@
394 394 +b
395 395
396 396 % test inline for single patch
397 397 This patch series consists of 1 patches.
398 398
399 399
400 400 Displaying [PATCH] test ...
401 401 Content-Type: multipart/mixed; boundary="===
402 402 MIME-Version: 1.0
403 403 Subject: [PATCH] test
404 404 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
405 405 Message-Id: <ff2c9fa2018b15fa74b3.60@
406 406 User-Agent: Mercurial-patchbomb
407 407 Date: Thu, 01 Jan 1970 00:01:00 +0000
408 408 From: quux
409 409 To: foo
410 410 Cc: bar
411 411
412 412 --===
413 413 Content-Type: text/x-patch; charset="us-ascii"
414 414 MIME-Version: 1.0
415 415 Content-Transfer-Encoding: 7bit
416 416 Content-Disposition: inline; filename=t2.patch
417 417
418 418 # HG changeset patch
419 419 # User test
420 420 # Date 3 0
421 421 # Node ID ff2c9fa2018b15fa74b33363bda9527323e2a99f
422 422 # Parent 97d72e5f12c7e84f85064aa72e5a297142c36ed9
423 423 c
424 424
425 425 diff -r 97d72e5f12c7 -r ff2c9fa2018b c
426 426 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
427 427 +++ b/c Thu Jan 01 00:00:03 1970 +0000
428 428 @@ -0,0 +1,1 @@
429 429 +c
430 430
431 431 --===
432 432 % test inline for single patch (quoted-printable)
433 433 This patch series consists of 1 patches.
434 434
435 435
436 436 Displaying [PATCH] test ...
437 437 Content-Type: multipart/mixed; boundary="===
438 438 MIME-Version: 1.0
439 439 Subject: [PATCH] test
440 440 X-Mercurial-Node: c655633f8c87700bb38cc6a59a2753bdc5a6c376
441 441 Message-Id: <c655633f8c87700bb38c.60@
442 442 User-Agent: Mercurial-patchbomb
443 443 Date: Thu, 01 Jan 1970 00:01:00 +0000
444 444 From: quux
445 445 To: foo
446 446 Cc: bar
447 447
448 448 --===
449 449 Content-Type: text/x-patch; charset="us-ascii"
450 450 MIME-Version: 1.0
451 451 Content-Transfer-Encoding: quoted-printable
452 452 Content-Disposition: inline; filename=t2.patch
453 453
454 454 # HG changeset patch
455 455 # User test
456 456 # Date 4 0
457 457 # Node ID c655633f8c87700bb38cc6a59a2753bdc5a6c376
458 458 # Parent c3c9e37db9f4fe4882cda39baf42fed6bad8b15a
459 459 charset=3Dutf-8; content-transfer-encoding: quoted-printable
460 460
461 461 diff -r c3c9e37db9f4 -r c655633f8c87 qp
462 462 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
463 463 +++ b/qp Thu Jan 01 00:00:04 1970 +0000
464 464 @@ -0,0 +1,4 @@
465 465 +xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
466 466 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
467 467 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
468 468 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
469 469 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
470 470 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
471 471 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
472 472 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
473 473 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
474 474 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
475 475 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
476 476 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
477 477 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
478 478 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
479 479 +foo
480 480 +
481 481 +bar
482 482
483 483 --===
484 484 % test inline for multiple patches
485 485 This patch series consists of 3 patches.
486 486
487 487
488 488 Write the introductory message for the patch series.
489 489
490 490
491 491 Displaying [PATCH 0 of 3] test ...
492 492 Content-Type: text/plain; charset="us-ascii"
493 493 MIME-Version: 1.0
494 494 Content-Transfer-Encoding: 7bit
495 495 Subject: [PATCH 0 of 3] test
496 496 Message-Id: <patchbomb.60@
497 497 User-Agent: Mercurial-patchbomb
498 498 Date: Thu, 01 Jan 1970 00:01:00 +0000
499 499 From: quux
500 500 To: foo
501 501 Cc: bar
502 502
503 503
504 504 Displaying [PATCH 1 of 3] a ...
505 505 Content-Type: multipart/mixed; boundary="===
506 506 MIME-Version: 1.0
507 507 Subject: [PATCH 1 of 3] a
508 508 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
509 509 Message-Id: <8580ff50825a50c8f716.61@
510 510 In-Reply-To: <patchbomb.60@
511 511 References: <patchbomb.60@
512 512 User-Agent: Mercurial-patchbomb
513 513 Date: Thu, 01 Jan 1970 00:01:01 +0000
514 514 From: quux
515 515 To: foo
516 516 Cc: bar
517 517
518 518 --===
519 519 Content-Type: text/x-patch; charset="us-ascii"
520 520 MIME-Version: 1.0
521 521 Content-Transfer-Encoding: 7bit
522 522 Content-Disposition: inline; filename=t2-1.patch
523 523
524 524 # HG changeset patch
525 525 # User test
526 526 # Date 1 0
527 527 # Node ID 8580ff50825a50c8f716709acdf8de0deddcd6ab
528 528 # Parent 0000000000000000000000000000000000000000
529 529 a
530 530
531 531 diff -r 000000000000 -r 8580ff50825a a
532 532 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
533 533 +++ b/a Thu Jan 01 00:00:01 1970 +0000
534 534 @@ -0,0 +1,1 @@
535 535 +a
536 536
537 537 --===
538 538 Displaying [PATCH 2 of 3] b ...
539 539 Content-Type: multipart/mixed; boundary="===
540 540 MIME-Version: 1.0
541 541 Subject: [PATCH 2 of 3] b
542 542 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
543 543 Message-Id: <97d72e5f12c7e84f8506.62@
544 544 In-Reply-To: <patchbomb.60@
545 545 References: <patchbomb.60@
546 546 User-Agent: Mercurial-patchbomb
547 547 Date: Thu, 01 Jan 1970 00:01:02 +0000
548 548 From: quux
549 549 To: foo
550 550 Cc: bar
551 551
552 552 --===
553 553 Content-Type: text/x-patch; charset="us-ascii"
554 554 MIME-Version: 1.0
555 555 Content-Transfer-Encoding: 7bit
556 556 Content-Disposition: inline; filename=t2-2.patch
557 557
558 558 # HG changeset patch
559 559 # User test
560 560 # Date 2 0
561 561 # Node ID 97d72e5f12c7e84f85064aa72e5a297142c36ed9
562 562 # Parent 8580ff50825a50c8f716709acdf8de0deddcd6ab
563 563 b
564 564
565 565 diff -r 8580ff50825a -r 97d72e5f12c7 b
566 566 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
567 567 +++ b/b Thu Jan 01 00:00:02 1970 +0000
568 568 @@ -0,0 +1,1 @@
569 569 +b
570 570
571 571 --===
572 572 Displaying [PATCH 3 of 3] charset=utf-8; content-transfer-encoding: quoted-printable ...
573 573 Content-Type: multipart/mixed; boundary="===
574 574 MIME-Version: 1.0
575 575 Subject: [PATCH 3 of 3] charset=utf-8;
576 content-transfer-encoding: quoted-printable
576 content-transfer-encoding: quoted-printable
577 577 X-Mercurial-Node: c655633f8c87700bb38cc6a59a2753bdc5a6c376
578 578 Message-Id: <c655633f8c87700bb38c.63@
579 579 In-Reply-To: <patchbomb.60@
580 580 References: <patchbomb.60@
581 581 User-Agent: Mercurial-patchbomb
582 582 Date: Thu, 01 Jan 1970 00:01:03 +0000
583 583 From: quux
584 584 To: foo
585 585 Cc: bar
586 586
587 587 --===
588 588 Content-Type: text/x-patch; charset="us-ascii"
589 589 MIME-Version: 1.0
590 590 Content-Transfer-Encoding: quoted-printable
591 591 Content-Disposition: inline; filename=t2-3.patch
592 592
593 593 # HG changeset patch
594 594 # User test
595 595 # Date 4 0
596 596 # Node ID c655633f8c87700bb38cc6a59a2753bdc5a6c376
597 597 # Parent c3c9e37db9f4fe4882cda39baf42fed6bad8b15a
598 598 charset=3Dutf-8; content-transfer-encoding: quoted-printable
599 599
600 600 diff -r c3c9e37db9f4 -r c655633f8c87 qp
601 601 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
602 602 +++ b/qp Thu Jan 01 00:00:04 1970 +0000
603 603 @@ -0,0 +1,4 @@
604 604 +xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
605 605 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
606 606 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
607 607 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
608 608 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
609 609 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
610 610 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
611 611 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
612 612 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
613 613 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
614 614 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
615 615 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
616 616 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
617 617 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
618 618 +foo
619 619 +
620 620 +bar
621 621
622 622 --===
623 623 % test attach for single patch
624 624 This patch series consists of 1 patches.
625 625
626 626
627 627 Displaying [PATCH] test ...
628 628 Content-Type: multipart/mixed; boundary="===
629 629 MIME-Version: 1.0
630 630 Subject: [PATCH] test
631 631 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
632 632 Message-Id: <ff2c9fa2018b15fa74b3.60@
633 633 User-Agent: Mercurial-patchbomb
634 634 Date: Thu, 01 Jan 1970 00:01:00 +0000
635 635 From: quux
636 636 To: foo
637 637 Cc: bar
638 638
639 639 --===
640 640 Content-Type: text/plain; charset="us-ascii"
641 641 MIME-Version: 1.0
642 642 Content-Transfer-Encoding: 7bit
643 643
644 644 Patch subject is complete summary.
645 645
646 646
647 647
648 648 --===
649 649 Content-Type: text/x-patch; charset="us-ascii"
650 650 MIME-Version: 1.0
651 651 Content-Transfer-Encoding: 7bit
652 652 Content-Disposition: attachment; filename=t2.patch
653 653
654 654 # HG changeset patch
655 655 # User test
656 656 # Date 3 0
657 657 # Node ID ff2c9fa2018b15fa74b33363bda9527323e2a99f
658 658 # Parent 97d72e5f12c7e84f85064aa72e5a297142c36ed9
659 659 c
660 660
661 661 diff -r 97d72e5f12c7 -r ff2c9fa2018b c
662 662 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
663 663 +++ b/c Thu Jan 01 00:00:03 1970 +0000
664 664 @@ -0,0 +1,1 @@
665 665 +c
666 666
667 667 --===
668 668 % test attach for single patch (quoted-printable)
669 669 This patch series consists of 1 patches.
670 670
671 671
672 672 Displaying [PATCH] test ...
673 673 Content-Type: multipart/mixed; boundary="===
674 674 MIME-Version: 1.0
675 675 Subject: [PATCH] test
676 676 X-Mercurial-Node: c655633f8c87700bb38cc6a59a2753bdc5a6c376
677 677 Message-Id: <c655633f8c87700bb38c.60@
678 678 User-Agent: Mercurial-patchbomb
679 679 Date: Thu, 01 Jan 1970 00:01:00 +0000
680 680 From: quux
681 681 To: foo
682 682 Cc: bar
683 683
684 684 --===
685 685 Content-Type: text/plain; charset="us-ascii"
686 686 MIME-Version: 1.0
687 687 Content-Transfer-Encoding: 7bit
688 688
689 689 Patch subject is complete summary.
690 690
691 691
692 692
693 693 --===
694 694 Content-Type: text/x-patch; charset="us-ascii"
695 695 MIME-Version: 1.0
696 696 Content-Transfer-Encoding: quoted-printable
697 697 Content-Disposition: attachment; filename=t2.patch
698 698
699 699 # HG changeset patch
700 700 # User test
701 701 # Date 4 0
702 702 # Node ID c655633f8c87700bb38cc6a59a2753bdc5a6c376
703 703 # Parent c3c9e37db9f4fe4882cda39baf42fed6bad8b15a
704 704 charset=3Dutf-8; content-transfer-encoding: quoted-printable
705 705
706 706 diff -r c3c9e37db9f4 -r c655633f8c87 qp
707 707 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
708 708 +++ b/qp Thu Jan 01 00:00:04 1970 +0000
709 709 @@ -0,0 +1,4 @@
710 710 +xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
711 711 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
712 712 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
713 713 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
714 714 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
715 715 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
716 716 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
717 717 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
718 718 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
719 719 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
720 720 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
721 721 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
722 722 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
723 723 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
724 724 +foo
725 725 +
726 726 +bar
727 727
728 728 --===
729 729 % test attach for multiple patches
730 730 This patch series consists of 3 patches.
731 731
732 732
733 733 Write the introductory message for the patch series.
734 734
735 735
736 736 Displaying [PATCH 0 of 3] test ...
737 737 Content-Type: text/plain; charset="us-ascii"
738 738 MIME-Version: 1.0
739 739 Content-Transfer-Encoding: 7bit
740 740 Subject: [PATCH 0 of 3] test
741 741 Message-Id: <patchbomb.60@
742 742 User-Agent: Mercurial-patchbomb
743 743 Date: Thu, 01 Jan 1970 00:01:00 +0000
744 744 From: quux
745 745 To: foo
746 746 Cc: bar
747 747
748 748
749 749 Displaying [PATCH 1 of 3] a ...
750 750 Content-Type: multipart/mixed; boundary="===
751 751 MIME-Version: 1.0
752 752 Subject: [PATCH 1 of 3] a
753 753 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
754 754 Message-Id: <8580ff50825a50c8f716.61@
755 755 In-Reply-To: <patchbomb.60@
756 756 References: <patchbomb.60@
757 757 User-Agent: Mercurial-patchbomb
758 758 Date: Thu, 01 Jan 1970 00:01:01 +0000
759 759 From: quux
760 760 To: foo
761 761 Cc: bar
762 762
763 763 --===
764 764 Content-Type: text/plain; charset="us-ascii"
765 765 MIME-Version: 1.0
766 766 Content-Transfer-Encoding: 7bit
767 767
768 768 Patch subject is complete summary.
769 769
770 770
771 771
772 772 --===
773 773 Content-Type: text/x-patch; charset="us-ascii"
774 774 MIME-Version: 1.0
775 775 Content-Transfer-Encoding: 7bit
776 776 Content-Disposition: attachment; filename=t2-1.patch
777 777
778 778 # HG changeset patch
779 779 # User test
780 780 # Date 1 0
781 781 # Node ID 8580ff50825a50c8f716709acdf8de0deddcd6ab
782 782 # Parent 0000000000000000000000000000000000000000
783 783 a
784 784
785 785 diff -r 000000000000 -r 8580ff50825a a
786 786 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
787 787 +++ b/a Thu Jan 01 00:00:01 1970 +0000
788 788 @@ -0,0 +1,1 @@
789 789 +a
790 790
791 791 --===
792 792 Displaying [PATCH 2 of 3] b ...
793 793 Content-Type: multipart/mixed; boundary="===
794 794 MIME-Version: 1.0
795 795 Subject: [PATCH 2 of 3] b
796 796 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
797 797 Message-Id: <97d72e5f12c7e84f8506.62@
798 798 In-Reply-To: <patchbomb.60@
799 799 References: <patchbomb.60@
800 800 User-Agent: Mercurial-patchbomb
801 801 Date: Thu, 01 Jan 1970 00:01:02 +0000
802 802 From: quux
803 803 To: foo
804 804 Cc: bar
805 805
806 806 --===
807 807 Content-Type: text/plain; charset="us-ascii"
808 808 MIME-Version: 1.0
809 809 Content-Transfer-Encoding: 7bit
810 810
811 811 Patch subject is complete summary.
812 812
813 813
814 814
815 815 --===
816 816 Content-Type: text/x-patch; charset="us-ascii"
817 817 MIME-Version: 1.0
818 818 Content-Transfer-Encoding: 7bit
819 819 Content-Disposition: attachment; filename=t2-2.patch
820 820
821 821 # HG changeset patch
822 822 # User test
823 823 # Date 2 0
824 824 # Node ID 97d72e5f12c7e84f85064aa72e5a297142c36ed9
825 825 # Parent 8580ff50825a50c8f716709acdf8de0deddcd6ab
826 826 b
827 827
828 828 diff -r 8580ff50825a -r 97d72e5f12c7 b
829 829 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
830 830 +++ b/b Thu Jan 01 00:00:02 1970 +0000
831 831 @@ -0,0 +1,1 @@
832 832 +b
833 833
834 834 --===
835 835 Displaying [PATCH 3 of 3] charset=utf-8; content-transfer-encoding: quoted-printable ...
836 836 Content-Type: multipart/mixed; boundary="===
837 837 MIME-Version: 1.0
838 838 Subject: [PATCH 3 of 3] charset=utf-8;
839 content-transfer-encoding: quoted-printable
839 content-transfer-encoding: quoted-printable
840 840 X-Mercurial-Node: c655633f8c87700bb38cc6a59a2753bdc5a6c376
841 841 Message-Id: <c655633f8c87700bb38c.63@
842 842 In-Reply-To: <patchbomb.60@
843 843 References: <patchbomb.60@
844 844 User-Agent: Mercurial-patchbomb
845 845 Date: Thu, 01 Jan 1970 00:01:03 +0000
846 846 From: quux
847 847 To: foo
848 848 Cc: bar
849 849
850 850 --===
851 851 Content-Type: text/plain; charset="us-ascii"
852 852 MIME-Version: 1.0
853 853 Content-Transfer-Encoding: 7bit
854 854
855 855 Patch subject is complete summary.
856 856
857 857
858 858
859 859 --===
860 860 Content-Type: text/x-patch; charset="us-ascii"
861 861 MIME-Version: 1.0
862 862 Content-Transfer-Encoding: quoted-printable
863 863 Content-Disposition: attachment; filename=t2-3.patch
864 864
865 865 # HG changeset patch
866 866 # User test
867 867 # Date 4 0
868 868 # Node ID c655633f8c87700bb38cc6a59a2753bdc5a6c376
869 869 # Parent c3c9e37db9f4fe4882cda39baf42fed6bad8b15a
870 870 charset=3Dutf-8; content-transfer-encoding: quoted-printable
871 871
872 872 diff -r c3c9e37db9f4 -r c655633f8c87 qp
873 873 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
874 874 +++ b/qp Thu Jan 01 00:00:04 1970 +0000
875 875 @@ -0,0 +1,4 @@
876 876 +xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
877 877 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
878 878 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
879 879 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
880 880 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
881 881 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
882 882 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
883 883 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
884 884 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
885 885 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
886 886 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
887 887 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
888 888 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
889 889 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
890 890 +foo
891 891 +
892 892 +bar
893 893
894 894 --===
895 895 % test intro for single patch
896 896 This patch series consists of 1 patches.
897 897
898 898
899 899 Write the introductory message for the patch series.
900 900
901 901
902 902 Displaying [PATCH 0 of 1] test ...
903 903 Content-Type: text/plain; charset="us-ascii"
904 904 MIME-Version: 1.0
905 905 Content-Transfer-Encoding: 7bit
906 906 Subject: [PATCH 0 of 1] test
907 907 Message-Id: <patchbomb.60@
908 908 User-Agent: Mercurial-patchbomb
909 909 Date: Thu, 01 Jan 1970 00:01:00 +0000
910 910 From: quux
911 911 To: foo
912 912 Cc: bar
913 913
914 914
915 915 Displaying [PATCH 1 of 1] c ...
916 916 Content-Type: text/plain; charset="us-ascii"
917 917 MIME-Version: 1.0
918 918 Content-Transfer-Encoding: 7bit
919 919 Subject: [PATCH 1 of 1] c
920 920 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
921 921 Message-Id: <ff2c9fa2018b15fa74b3.61@
922 922 In-Reply-To: <patchbomb.60@
923 923 References: <patchbomb.60@
924 924 User-Agent: Mercurial-patchbomb
925 925 Date: Thu, 01 Jan 1970 00:01:01 +0000
926 926 From: quux
927 927 To: foo
928 928 Cc: bar
929 929
930 930 # HG changeset patch
931 931 # User test
932 932 # Date 3 0
933 933 # Node ID ff2c9fa2018b15fa74b33363bda9527323e2a99f
934 934 # Parent 97d72e5f12c7e84f85064aa72e5a297142c36ed9
935 935 c
936 936
937 937 diff -r 97d72e5f12c7 -r ff2c9fa2018b c
938 938 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
939 939 +++ b/c Thu Jan 01 00:00:03 1970 +0000
940 940 @@ -0,0 +1,1 @@
941 941 +c
942 942
943 943 % test --desc without --intro for a single patch
944 944 This patch series consists of 1 patches.
945 945
946 946
947 947 Displaying [PATCH 0 of 1] test ...
948 948 Content-Type: text/plain; charset="us-ascii"
949 949 MIME-Version: 1.0
950 950 Content-Transfer-Encoding: 7bit
951 951 Subject: [PATCH 0 of 1] test
952 952 Message-Id: <patchbomb.60@
953 953 User-Agent: Mercurial-patchbomb
954 954 Date: Thu, 01 Jan 1970 00:01:00 +0000
955 955 From: quux
956 956 To: foo
957 957 Cc: bar
958 958
959 959 foo
960 960
961 961 Displaying [PATCH 1 of 1] c ...
962 962 Content-Type: text/plain; charset="us-ascii"
963 963 MIME-Version: 1.0
964 964 Content-Transfer-Encoding: 7bit
965 965 Subject: [PATCH 1 of 1] c
966 966 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
967 967 Message-Id: <ff2c9fa2018b15fa74b3.61@
968 968 In-Reply-To: <patchbomb.60@
969 969 References: <patchbomb.60@
970 970 User-Agent: Mercurial-patchbomb
971 971 Date: Thu, 01 Jan 1970 00:01:01 +0000
972 972 From: quux
973 973 To: foo
974 974 Cc: bar
975 975
976 976 # HG changeset patch
977 977 # User test
978 978 # Date 3 0
979 979 # Node ID ff2c9fa2018b15fa74b33363bda9527323e2a99f
980 980 # Parent 97d72e5f12c7e84f85064aa72e5a297142c36ed9
981 981 c
982 982
983 983 diff -r 97d72e5f12c7 -r ff2c9fa2018b c
984 984 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
985 985 +++ b/c Thu Jan 01 00:00:03 1970 +0000
986 986 @@ -0,0 +1,1 @@
987 987 +c
988 988
989 989 % test intro for multiple patches
990 990 This patch series consists of 2 patches.
991 991
992 992
993 993 Write the introductory message for the patch series.
994 994
995 995
996 996 Displaying [PATCH 0 of 2] test ...
997 997 Content-Type: text/plain; charset="us-ascii"
998 998 MIME-Version: 1.0
999 999 Content-Transfer-Encoding: 7bit
1000 1000 Subject: [PATCH 0 of 2] test
1001 1001 Message-Id: <patchbomb.60@
1002 1002 User-Agent: Mercurial-patchbomb
1003 1003 Date: Thu, 01 Jan 1970 00:01:00 +0000
1004 1004 From: quux
1005 1005 To: foo
1006 1006 Cc: bar
1007 1007
1008 1008
1009 1009 Displaying [PATCH 1 of 2] a ...
1010 1010 Content-Type: text/plain; charset="us-ascii"
1011 1011 MIME-Version: 1.0
1012 1012 Content-Transfer-Encoding: 7bit
1013 1013 Subject: [PATCH 1 of 2] a
1014 1014 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
1015 1015 Message-Id: <8580ff50825a50c8f716.61@
1016 1016 In-Reply-To: <patchbomb.60@
1017 1017 References: <patchbomb.60@
1018 1018 User-Agent: Mercurial-patchbomb
1019 1019 Date: Thu, 01 Jan 1970 00:01:01 +0000
1020 1020 From: quux
1021 1021 To: foo
1022 1022 Cc: bar
1023 1023
1024 1024 # HG changeset patch
1025 1025 # User test
1026 1026 # Date 1 0
1027 1027 # Node ID 8580ff50825a50c8f716709acdf8de0deddcd6ab
1028 1028 # Parent 0000000000000000000000000000000000000000
1029 1029 a
1030 1030
1031 1031 diff -r 000000000000 -r 8580ff50825a a
1032 1032 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1033 1033 +++ b/a Thu Jan 01 00:00:01 1970 +0000
1034 1034 @@ -0,0 +1,1 @@
1035 1035 +a
1036 1036
1037 1037 Displaying [PATCH 2 of 2] b ...
1038 1038 Content-Type: text/plain; charset="us-ascii"
1039 1039 MIME-Version: 1.0
1040 1040 Content-Transfer-Encoding: 7bit
1041 1041 Subject: [PATCH 2 of 2] b
1042 1042 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
1043 1043 Message-Id: <97d72e5f12c7e84f8506.62@
1044 1044 In-Reply-To: <patchbomb.60@
1045 1045 References: <patchbomb.60@
1046 1046 User-Agent: Mercurial-patchbomb
1047 1047 Date: Thu, 01 Jan 1970 00:01:02 +0000
1048 1048 From: quux
1049 1049 To: foo
1050 1050 Cc: bar
1051 1051
1052 1052 # HG changeset patch
1053 1053 # User test
1054 1054 # Date 2 0
1055 1055 # Node ID 97d72e5f12c7e84f85064aa72e5a297142c36ed9
1056 1056 # Parent 8580ff50825a50c8f716709acdf8de0deddcd6ab
1057 1057 b
1058 1058
1059 1059 diff -r 8580ff50825a -r 97d72e5f12c7 b
1060 1060 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1061 1061 +++ b/b Thu Jan 01 00:00:02 1970 +0000
1062 1062 @@ -0,0 +1,1 @@
1063 1063 +b
1064 1064
1065 1065 % test reply-to via config
1066 1066 This patch series consists of 1 patches.
1067 1067
1068 1068
1069 1069 Displaying [PATCH] test ...
1070 1070 Content-Type: text/plain; charset="us-ascii"
1071 1071 MIME-Version: 1.0
1072 1072 Content-Transfer-Encoding: 7bit
1073 1073 Subject: [PATCH] test
1074 1074 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
1075 1075 Message-Id: <ff2c9fa2018b15fa74b3.60@
1076 1076 User-Agent: Mercurial-patchbomb
1077 1077 Date: Thu, 01 Jan 1970 00:01:00 +0000
1078 1078 From: quux
1079 1079 To: foo
1080 1080 Cc: bar
1081 1081 Reply-To: baz@example.com
1082 1082
1083 1083 # HG changeset patch
1084 1084 # User test
1085 1085 # Date 3 0
1086 1086 # Node ID ff2c9fa2018b15fa74b33363bda9527323e2a99f
1087 1087 # Parent 97d72e5f12c7e84f85064aa72e5a297142c36ed9
1088 1088 c
1089 1089
1090 1090 diff -r 97d72e5f12c7 -r ff2c9fa2018b c
1091 1091 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1092 1092 +++ b/c Thu Jan 01 00:00:03 1970 +0000
1093 1093 @@ -0,0 +1,1 @@
1094 1094 +c
1095 1095
1096 1096 % test reply-to via command line
1097 1097 This patch series consists of 1 patches.
1098 1098
1099 1099
1100 1100 Displaying [PATCH] test ...
1101 1101 Content-Type: text/plain; charset="us-ascii"
1102 1102 MIME-Version: 1.0
1103 1103 Content-Transfer-Encoding: 7bit
1104 1104 Subject: [PATCH] test
1105 1105 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
1106 1106 Message-Id: <ff2c9fa2018b15fa74b3.60@
1107 1107 User-Agent: Mercurial-patchbomb
1108 1108 Date: Thu, 01 Jan 1970 00:01:00 +0000
1109 1109 From: quux
1110 1110 To: foo
1111 1111 Cc: bar
1112 1112 Reply-To: baz, fred
1113 1113
1114 1114 # HG changeset patch
1115 1115 # User test
1116 1116 # Date 3 0
1117 1117 # Node ID ff2c9fa2018b15fa74b33363bda9527323e2a99f
1118 1118 # Parent 97d72e5f12c7e84f85064aa72e5a297142c36ed9
1119 1119 c
1120 1120
1121 1121 diff -r 97d72e5f12c7 -r ff2c9fa2018b c
1122 1122 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1123 1123 +++ b/c Thu Jan 01 00:00:03 1970 +0000
1124 1124 @@ -0,0 +1,1 @@
1125 1125 +c
1126 1126
1127 1127 % tagging csets
1128 1128 % test inline for single named patch
1129 1129 This patch series consists of 1 patches.
1130 1130
1131 1131
1132 1132 Displaying [PATCH] test ...
1133 1133 Content-Type: multipart/mixed; boundary="===
1134 1134 MIME-Version: 1.0
1135 1135 Subject: [PATCH] test
1136 1136 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
1137 1137 Message-Id: <ff2c9fa2018b15fa74b3.60@
1138 1138 User-Agent: Mercurial-patchbomb
1139 1139 Date: Thu, 01 Jan 1970 00:01:00 +0000
1140 1140 From: quux
1141 1141 To: foo
1142 1142 Cc: bar
1143 1143
1144 1144 --===
1145 1145 Content-Type: text/x-patch; charset="us-ascii"
1146 1146 MIME-Version: 1.0
1147 1147 Content-Transfer-Encoding: 7bit
1148 1148 Content-Disposition: inline; filename=two.diff
1149 1149
1150 1150 # HG changeset patch
1151 1151 # User test
1152 1152 # Date 3 0
1153 1153 # Node ID ff2c9fa2018b15fa74b33363bda9527323e2a99f
1154 1154 # Parent 97d72e5f12c7e84f85064aa72e5a297142c36ed9
1155 1155 c
1156 1156
1157 1157 diff -r 97d72e5f12c7 -r ff2c9fa2018b c
1158 1158 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1159 1159 +++ b/c Thu Jan 01 00:00:03 1970 +0000
1160 1160 @@ -0,0 +1,1 @@
1161 1161 +c
1162 1162
1163 1163 --===
1164 1164 % test inline for multiple named/unnamed patches
1165 1165 This patch series consists of 2 patches.
1166 1166
1167 1167
1168 1168 Write the introductory message for the patch series.
1169 1169
1170 1170
1171 1171 Displaying [PATCH 0 of 2] test ...
1172 1172 Content-Type: text/plain; charset="us-ascii"
1173 1173 MIME-Version: 1.0
1174 1174 Content-Transfer-Encoding: 7bit
1175 1175 Subject: [PATCH 0 of 2] test
1176 1176 Message-Id: <patchbomb.60@
1177 1177 User-Agent: Mercurial-patchbomb
1178 1178 Date: Thu, 01 Jan 1970 00:01:00 +0000
1179 1179 From: quux
1180 1180 To: foo
1181 1181 Cc: bar
1182 1182
1183 1183
1184 1184 Displaying [PATCH 1 of 2] a ...
1185 1185 Content-Type: multipart/mixed; boundary="===
1186 1186 MIME-Version: 1.0
1187 1187 Subject: [PATCH 1 of 2] a
1188 1188 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
1189 1189 Message-Id: <8580ff50825a50c8f716.61@
1190 1190 In-Reply-To: <patchbomb.60@
1191 1191 References: <patchbomb.60@
1192 1192 User-Agent: Mercurial-patchbomb
1193 1193 Date: Thu, 01 Jan 1970 00:01:01 +0000
1194 1194 From: quux
1195 1195 To: foo
1196 1196 Cc: bar
1197 1197
1198 1198 --===
1199 1199 Content-Type: text/x-patch; charset="us-ascii"
1200 1200 MIME-Version: 1.0
1201 1201 Content-Transfer-Encoding: 7bit
1202 1202 Content-Disposition: inline; filename=t2-1.patch
1203 1203
1204 1204 # HG changeset patch
1205 1205 # User test
1206 1206 # Date 1 0
1207 1207 # Node ID 8580ff50825a50c8f716709acdf8de0deddcd6ab
1208 1208 # Parent 0000000000000000000000000000000000000000
1209 1209 a
1210 1210
1211 1211 diff -r 000000000000 -r 8580ff50825a a
1212 1212 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1213 1213 +++ b/a Thu Jan 01 00:00:01 1970 +0000
1214 1214 @@ -0,0 +1,1 @@
1215 1215 +a
1216 1216
1217 1217 --===
1218 1218 Displaying [PATCH 2 of 2] b ...
1219 1219 Content-Type: multipart/mixed; boundary="===
1220 1220 MIME-Version: 1.0
1221 1221 Subject: [PATCH 2 of 2] b
1222 1222 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
1223 1223 Message-Id: <97d72e5f12c7e84f8506.62@
1224 1224 In-Reply-To: <patchbomb.60@
1225 1225 References: <patchbomb.60@
1226 1226 User-Agent: Mercurial-patchbomb
1227 1227 Date: Thu, 01 Jan 1970 00:01:02 +0000
1228 1228 From: quux
1229 1229 To: foo
1230 1230 Cc: bar
1231 1231
1232 1232 --===
1233 1233 Content-Type: text/x-patch; charset="us-ascii"
1234 1234 MIME-Version: 1.0
1235 1235 Content-Transfer-Encoding: 7bit
1236 1236 Content-Disposition: inline; filename=one.patch
1237 1237
1238 1238 # HG changeset patch
1239 1239 # User test
1240 1240 # Date 2 0
1241 1241 # Node ID 97d72e5f12c7e84f85064aa72e5a297142c36ed9
1242 1242 # Parent 8580ff50825a50c8f716709acdf8de0deddcd6ab
1243 1243 b
1244 1244
1245 1245 diff -r 8580ff50825a -r 97d72e5f12c7 b
1246 1246 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1247 1247 +++ b/b Thu Jan 01 00:00:02 1970 +0000
1248 1248 @@ -0,0 +1,1 @@
1249 1249 +b
1250 1250
1251 1251 --===
1252 1252 % test inreplyto
1253 1253 This patch series consists of 1 patches.
1254 1254
1255 1255
1256 1256 Displaying [PATCH] Added tag two, two.diff for changeset ff2c9fa2018b ...
1257 1257 Content-Type: text/plain; charset="us-ascii"
1258 1258 MIME-Version: 1.0
1259 1259 Content-Transfer-Encoding: 7bit
1260 1260 Subject: [PATCH] Added tag two, two.diff for changeset ff2c9fa2018b
1261 1261 X-Mercurial-Node: e317db6a6f288748d1f6cb064f3810fcba66b1b6
1262 1262 Message-Id: <e317db6a6f288748d1f6.60@
1263 1263 In-Reply-To: <baz>
1264 1264 References: <baz>
1265 1265 User-Agent: Mercurial-patchbomb
1266 1266 Date: Thu, 01 Jan 1970 00:01:00 +0000
1267 1267 From: quux
1268 1268 To: foo
1269 1269 Cc: bar
1270 1270
1271 1271 # HG changeset patch
1272 1272 # User test
1273 1273 # Date 0 0
1274 1274 # Node ID e317db6a6f288748d1f6cb064f3810fcba66b1b6
1275 1275 # Parent eae5fcf795eee29d0e45ffc9f519a91cd79fc9ff
1276 1276 Added tag two, two.diff for changeset ff2c9fa2018b
1277 1277
1278 1278 diff -r eae5fcf795ee -r e317db6a6f28 .hgtags
1279 1279 --- a/.hgtags Thu Jan 01 00:00:00 1970 +0000
1280 1280 +++ b/.hgtags Thu Jan 01 00:00:00 1970 +0000
1281 1281 @@ -2,3 +2,5 @@
1282 1282 8580ff50825a50c8f716709acdf8de0deddcd6ab zero.foo
1283 1283 97d72e5f12c7e84f85064aa72e5a297142c36ed9 one
1284 1284 97d72e5f12c7e84f85064aa72e5a297142c36ed9 one.patch
1285 1285 +ff2c9fa2018b15fa74b33363bda9527323e2a99f two
1286 1286 +ff2c9fa2018b15fa74b33363bda9527323e2a99f two.diff
1287 1287
1288 1288 abort: Subject: [PATCH 0 of 2] Please enter a valid value
1289 1289 This patch series consists of 2 patches.
1290 1290
1291 1291 This patch series consists of 2 patches.
1292 1292
1293 1293
1294 1294 Write the introductory message for the patch series.
1295 1295
1296 1296
1297 1297 Displaying [PATCH 0 of 2] test ...
1298 1298 Content-Type: text/plain; charset="us-ascii"
1299 1299 MIME-Version: 1.0
1300 1300 Content-Transfer-Encoding: 7bit
1301 1301 Subject: [PATCH 0 of 2] test
1302 1302 Message-Id: <patchbomb.60@
1303 1303 In-Reply-To: <baz>
1304 1304 References: <baz>
1305 1305 User-Agent: Mercurial-patchbomb
1306 1306 Date: Thu, 01 Jan 1970 00:01:00 +0000
1307 1307 From: quux
1308 1308 To: foo
1309 1309 Cc: bar
1310 1310
1311 1311
1312 1312 Displaying [PATCH 1 of 2] a ...
1313 1313 Content-Type: text/plain; charset="us-ascii"
1314 1314 MIME-Version: 1.0
1315 1315 Content-Transfer-Encoding: 7bit
1316 1316 Subject: [PATCH 1 of 2] a
1317 1317 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
1318 1318 Message-Id: <8580ff50825a50c8f716.61@
1319 1319 In-Reply-To: <patchbomb.60@
1320 1320 References: <patchbomb.60@
1321 1321 User-Agent: Mercurial-patchbomb
1322 1322 Date: Thu, 01 Jan 1970 00:01:01 +0000
1323 1323 From: quux
1324 1324 To: foo
1325 1325 Cc: bar
1326 1326
1327 1327 # HG changeset patch
1328 1328 # User test
1329 1329 # Date 1 0
1330 1330 # Node ID 8580ff50825a50c8f716709acdf8de0deddcd6ab
1331 1331 # Parent 0000000000000000000000000000000000000000
1332 1332 a
1333 1333
1334 1334 diff -r 000000000000 -r 8580ff50825a a
1335 1335 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1336 1336 +++ b/a Thu Jan 01 00:00:01 1970 +0000
1337 1337 @@ -0,0 +1,1 @@
1338 1338 +a
1339 1339
1340 1340 Displaying [PATCH 2 of 2] b ...
1341 1341 Content-Type: text/plain; charset="us-ascii"
1342 1342 MIME-Version: 1.0
1343 1343 Content-Transfer-Encoding: 7bit
1344 1344 Subject: [PATCH 2 of 2] b
1345 1345 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
1346 1346 Message-Id: <97d72e5f12c7e84f8506.62@
1347 1347 In-Reply-To: <patchbomb.60@
1348 1348 References: <patchbomb.60@
1349 1349 User-Agent: Mercurial-patchbomb
1350 1350 Date: Thu, 01 Jan 1970 00:01:02 +0000
1351 1351 From: quux
1352 1352 To: foo
1353 1353 Cc: bar
1354 1354
1355 1355 # HG changeset patch
1356 1356 # User test
1357 1357 # Date 2 0
1358 1358 # Node ID 97d72e5f12c7e84f85064aa72e5a297142c36ed9
1359 1359 # Parent 8580ff50825a50c8f716709acdf8de0deddcd6ab
1360 1360 b
1361 1361
1362 1362 diff -r 8580ff50825a -r 97d72e5f12c7 b
1363 1363 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1364 1364 +++ b/b Thu Jan 01 00:00:02 1970 +0000
1365 1365 @@ -0,0 +1,1 @@
1366 1366 +b
1367 1367
1368 1368 % test single flag for single patch
1369 1369 This patch series consists of 1 patches.
1370 1370
1371 1371
1372 1372 Displaying [PATCH fooFlag] test ...
1373 1373 Content-Type: text/plain; charset="us-ascii"
1374 1374 MIME-Version: 1.0
1375 1375 Content-Transfer-Encoding: 7bit
1376 1376 Subject: [PATCH fooFlag] test
1377 1377 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
1378 1378 Message-Id: <ff2c9fa2018b15fa74b3.60@
1379 1379 User-Agent: Mercurial-patchbomb
1380 1380 Date: Thu, 01 Jan 1970 00:01:00 +0000
1381 1381 From: quux
1382 1382 To: foo
1383 1383 Cc: bar
1384 1384
1385 1385 # HG changeset patch
1386 1386 # User test
1387 1387 # Date 3 0
1388 1388 # Node ID ff2c9fa2018b15fa74b33363bda9527323e2a99f
1389 1389 # Parent 97d72e5f12c7e84f85064aa72e5a297142c36ed9
1390 1390 c
1391 1391
1392 1392 diff -r 97d72e5f12c7 -r ff2c9fa2018b c
1393 1393 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1394 1394 +++ b/c Thu Jan 01 00:00:03 1970 +0000
1395 1395 @@ -0,0 +1,1 @@
1396 1396 +c
1397 1397
1398 1398 % test single flag for multiple patches
1399 1399 This patch series consists of 2 patches.
1400 1400
1401 1401
1402 1402 Write the introductory message for the patch series.
1403 1403
1404 1404
1405 1405 Displaying [PATCH 0 of 2 fooFlag] test ...
1406 1406 Content-Type: text/plain; charset="us-ascii"
1407 1407 MIME-Version: 1.0
1408 1408 Content-Transfer-Encoding: 7bit
1409 1409 Subject: [PATCH 0 of 2 fooFlag] test
1410 1410 Message-Id: <patchbomb.60@
1411 1411 User-Agent: Mercurial-patchbomb
1412 1412 Date: Thu, 01 Jan 1970 00:01:00 +0000
1413 1413 From: quux
1414 1414 To: foo
1415 1415 Cc: bar
1416 1416
1417 1417
1418 1418 Displaying [PATCH 1 of 2 fooFlag] a ...
1419 1419 Content-Type: text/plain; charset="us-ascii"
1420 1420 MIME-Version: 1.0
1421 1421 Content-Transfer-Encoding: 7bit
1422 1422 Subject: [PATCH 1 of 2 fooFlag] a
1423 1423 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
1424 1424 Message-Id: <8580ff50825a50c8f716.61@
1425 1425 In-Reply-To: <patchbomb.60@
1426 1426 References: <patchbomb.60@
1427 1427 User-Agent: Mercurial-patchbomb
1428 1428 Date: Thu, 01 Jan 1970 00:01:01 +0000
1429 1429 From: quux
1430 1430 To: foo
1431 1431 Cc: bar
1432 1432
1433 1433 # HG changeset patch
1434 1434 # User test
1435 1435 # Date 1 0
1436 1436 # Node ID 8580ff50825a50c8f716709acdf8de0deddcd6ab
1437 1437 # Parent 0000000000000000000000000000000000000000
1438 1438 a
1439 1439
1440 1440 diff -r 000000000000 -r 8580ff50825a a
1441 1441 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1442 1442 +++ b/a Thu Jan 01 00:00:01 1970 +0000
1443 1443 @@ -0,0 +1,1 @@
1444 1444 +a
1445 1445
1446 1446 Displaying [PATCH 2 of 2 fooFlag] b ...
1447 1447 Content-Type: text/plain; charset="us-ascii"
1448 1448 MIME-Version: 1.0
1449 1449 Content-Transfer-Encoding: 7bit
1450 1450 Subject: [PATCH 2 of 2 fooFlag] b
1451 1451 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
1452 1452 Message-Id: <97d72e5f12c7e84f8506.62@
1453 1453 In-Reply-To: <patchbomb.60@
1454 1454 References: <patchbomb.60@
1455 1455 User-Agent: Mercurial-patchbomb
1456 1456 Date: Thu, 01 Jan 1970 00:01:02 +0000
1457 1457 From: quux
1458 1458 To: foo
1459 1459 Cc: bar
1460 1460
1461 1461 # HG changeset patch
1462 1462 # User test
1463 1463 # Date 2 0
1464 1464 # Node ID 97d72e5f12c7e84f85064aa72e5a297142c36ed9
1465 1465 # Parent 8580ff50825a50c8f716709acdf8de0deddcd6ab
1466 1466 b
1467 1467
1468 1468 diff -r 8580ff50825a -r 97d72e5f12c7 b
1469 1469 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1470 1470 +++ b/b Thu Jan 01 00:00:02 1970 +0000
1471 1471 @@ -0,0 +1,1 @@
1472 1472 +b
1473 1473
1474 1474 % test mutiple flags for single patch
1475 1475 This patch series consists of 1 patches.
1476 1476
1477 1477
1478 1478 Displaying [PATCH fooFlag barFlag] test ...
1479 1479 Content-Type: text/plain; charset="us-ascii"
1480 1480 MIME-Version: 1.0
1481 1481 Content-Transfer-Encoding: 7bit
1482 1482 Subject: [PATCH fooFlag barFlag] test
1483 1483 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
1484 1484 Message-Id: <ff2c9fa2018b15fa74b3.60@
1485 1485 User-Agent: Mercurial-patchbomb
1486 1486 Date: Thu, 01 Jan 1970 00:01:00 +0000
1487 1487 From: quux
1488 1488 To: foo
1489 1489 Cc: bar
1490 1490
1491 1491 # HG changeset patch
1492 1492 # User test
1493 1493 # Date 3 0
1494 1494 # Node ID ff2c9fa2018b15fa74b33363bda9527323e2a99f
1495 1495 # Parent 97d72e5f12c7e84f85064aa72e5a297142c36ed9
1496 1496 c
1497 1497
1498 1498 diff -r 97d72e5f12c7 -r ff2c9fa2018b c
1499 1499 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1500 1500 +++ b/c Thu Jan 01 00:00:03 1970 +0000
1501 1501 @@ -0,0 +1,1 @@
1502 1502 +c
1503 1503
1504 1504 % test multiple flags for multiple patches
1505 1505 This patch series consists of 2 patches.
1506 1506
1507 1507
1508 1508 Write the introductory message for the patch series.
1509 1509
1510 1510
1511 1511 Displaying [PATCH 0 of 2 fooFlag barFlag] test ...
1512 1512 Content-Type: text/plain; charset="us-ascii"
1513 1513 MIME-Version: 1.0
1514 1514 Content-Transfer-Encoding: 7bit
1515 1515 Subject: [PATCH 0 of 2 fooFlag barFlag] test
1516 1516 Message-Id: <patchbomb.60@
1517 1517 User-Agent: Mercurial-patchbomb
1518 1518 Date: Thu, 01 Jan 1970 00:01:00 +0000
1519 1519 From: quux
1520 1520 To: foo
1521 1521 Cc: bar
1522 1522
1523 1523
1524 1524 Displaying [PATCH 1 of 2 fooFlag barFlag] a ...
1525 1525 Content-Type: text/plain; charset="us-ascii"
1526 1526 MIME-Version: 1.0
1527 1527 Content-Transfer-Encoding: 7bit
1528 1528 Subject: [PATCH 1 of 2 fooFlag barFlag] a
1529 1529 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
1530 1530 Message-Id: <8580ff50825a50c8f716.61@
1531 1531 In-Reply-To: <patchbomb.60@
1532 1532 References: <patchbomb.60@
1533 1533 User-Agent: Mercurial-patchbomb
1534 1534 Date: Thu, 01 Jan 1970 00:01:01 +0000
1535 1535 From: quux
1536 1536 To: foo
1537 1537 Cc: bar
1538 1538
1539 1539 # HG changeset patch
1540 1540 # User test
1541 1541 # Date 1 0
1542 1542 # Node ID 8580ff50825a50c8f716709acdf8de0deddcd6ab
1543 1543 # Parent 0000000000000000000000000000000000000000
1544 1544 a
1545 1545
1546 1546 diff -r 000000000000 -r 8580ff50825a a
1547 1547 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1548 1548 +++ b/a Thu Jan 01 00:00:01 1970 +0000
1549 1549 @@ -0,0 +1,1 @@
1550 1550 +a
1551 1551
1552 1552 Displaying [PATCH 2 of 2 fooFlag barFlag] b ...
1553 1553 Content-Type: text/plain; charset="us-ascii"
1554 1554 MIME-Version: 1.0
1555 1555 Content-Transfer-Encoding: 7bit
1556 1556 Subject: [PATCH 2 of 2 fooFlag barFlag] b
1557 1557 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
1558 1558 Message-Id: <97d72e5f12c7e84f8506.62@
1559 1559 In-Reply-To: <patchbomb.60@
1560 1560 References: <patchbomb.60@
1561 1561 User-Agent: Mercurial-patchbomb
1562 1562 Date: Thu, 01 Jan 1970 00:01:02 +0000
1563 1563 From: quux
1564 1564 To: foo
1565 1565 Cc: bar
1566 1566
1567 1567 # HG changeset patch
1568 1568 # User test
1569 1569 # Date 2 0
1570 1570 # Node ID 97d72e5f12c7e84f85064aa72e5a297142c36ed9
1571 1571 # Parent 8580ff50825a50c8f716709acdf8de0deddcd6ab
1572 1572 b
1573 1573
1574 1574 diff -r 8580ff50825a -r 97d72e5f12c7 b
1575 1575 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1576 1576 +++ b/b Thu Jan 01 00:00:02 1970 +0000
1577 1577 @@ -0,0 +1,1 @@
1578 1578 +b
1579 1579
1580 1580 % test multi-address parsing
1581 1581 This patch series consists of 1 patches.
1582 1582
1583 1583
1584 1584 Writing [PATCH] test ...
1585 1585 From quux Tue Jan 01 00:01:01 1980
1586 1586 Content-Type: text/plain; charset="us-ascii"
1587 1587 MIME-Version: 1.0
1588 1588 Content-Transfer-Encoding: 7bit
1589 1589 Subject: [PATCH] test
1590 1590 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
1591 1591 Message-Id: <8580ff50825a50c8f716.315532860@
1592 1592 User-Agent: Mercurial-patchbomb
1593 1593 Date: Tue, 01 Jan 1980 00:01:00 +0000
1594 1594 From: quux
1595 1595 To: spam <spam>, eggs, toast
1596 1596 Cc: foo, bar@example.com, "A, B <>" <a@example.com>
1597 1597 Bcc: "Quux, A." <quux>
1598 1598
1599 1599 # HG changeset patch
1600 1600 # User test
1601 1601 # Date 1 0
1602 1602 # Node ID 8580ff50825a50c8f716709acdf8de0deddcd6ab
1603 1603 # Parent 0000000000000000000000000000000000000000
1604 1604 a
1605 1605
1606 1606 diff -r 000000000000 -r 8580ff50825a a
1607 1607 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1608 1608 +++ b/a Thu Jan 01 00:00:01 1970 +0000
1609 1609 @@ -0,0 +1,1 @@
1610 1610 +a
1611 1611
1612 1612
1613 1613 % test multi-byte domain parsing
1614 1614 This patch series consists of 1 patches.
1615 1615
1616 1616
1617 1617 Writing [PATCH] test ...
1618 1618 From quux Tue Jan 01 00:01:01 1980
1619 1619 Content-Type: text/plain; charset="us-ascii"
1620 1620 MIME-Version: 1.0
1621 1621 Content-Transfer-Encoding: 7bit
1622 1622 Subject: [PATCH] test
1623 1623 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
1624 1624 Message-Id: <8580ff50825a50c8f716.315532860@
1625 1625 User-Agent: Mercurial-patchbomb
1626 1626 Date: Tue, 01 Jan 1980 00:01:00 +0000
1627 1627 From: quux
1628 1628 To: bar@xn--nicode-2ya.com
1629 1629
1630 1630 # HG changeset patch
1631 1631 # User test
1632 1632 # Date 1 0
1633 1633 # Node ID 8580ff50825a50c8f716709acdf8de0deddcd6ab
1634 1634 # Parent 0000000000000000000000000000000000000000
1635 1635 a
1636 1636
1637 1637 diff -r 000000000000 -r 8580ff50825a a
1638 1638 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1639 1639 +++ b/a Thu Jan 01 00:00:01 1970 +0000
1640 1640 @@ -0,0 +1,1 @@
1641 1641 +a
1642 1642
1643 1643
1644 1644 % test outgoing
1645 1645 0 files updated, 0 files merged, 6 files removed, 0 files unresolved
1646 1646 marked working directory as branch test
1647 1647 comparing with ../t
1648 1648 searching for changes
1649 1649 This patch series consists of 8 patches.
1650 1650
1651 1651
1652 1652 Write the introductory message for the patch series.
1653 1653
1654 1654
1655 1655 Displaying [PATCH 0 of 8] test ...
1656 1656 Content-Type: text/plain; charset="us-ascii"
1657 1657 MIME-Version: 1.0
1658 1658 Content-Transfer-Encoding: 7bit
1659 1659 Subject: [PATCH 0 of 8] test
1660 1660 Message-Id: <patchbomb.315532860@
1661 1661 User-Agent: Mercurial-patchbomb
1662 1662 Date: Tue, 01 Jan 1980 00:01:00 +0000
1663 1663 From: test
1664 1664 To: foo
1665 1665
1666 1666
1667 1667 Displaying [PATCH 1 of 8] c ...
1668 1668 Content-Type: text/plain; charset="us-ascii"
1669 1669 MIME-Version: 1.0
1670 1670 Content-Transfer-Encoding: 7bit
1671 1671 Subject: [PATCH 1 of 8] c
1672 1672 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
1673 1673 Message-Id: <ff2c9fa2018b15fa74b3.315532861@
1674 1674 In-Reply-To: <patchbomb.315532860@
1675 1675 References: <patchbomb.315532860@
1676 1676 User-Agent: Mercurial-patchbomb
1677 1677 Date: Tue, 01 Jan 1980 00:01:01 +0000
1678 1678 From: test
1679 1679 To: foo
1680 1680
1681 1681 # HG changeset patch
1682 1682 # User test
1683 1683 # Date 3 0
1684 1684 # Node ID ff2c9fa2018b15fa74b33363bda9527323e2a99f
1685 1685 # Parent 97d72e5f12c7e84f85064aa72e5a297142c36ed9
1686 1686 c
1687 1687
1688 1688 diff -r 97d72e5f12c7 -r ff2c9fa2018b c
1689 1689 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1690 1690 +++ b/c Thu Jan 01 00:00:03 1970 +0000
1691 1691 @@ -0,0 +1,1 @@
1692 1692 +c
1693 1693
1694 1694 Displaying [PATCH 2 of 8] charset=utf-8; content-transfer-encoding: base64 ...
1695 1695 Content-Type: text/plain; charset="us-ascii"
1696 1696 MIME-Version: 1.0
1697 1697 Content-Transfer-Encoding: 8bit
1698 1698 Subject: [PATCH 2 of 8] charset=utf-8; content-transfer-encoding: base64
1699 1699 X-Mercurial-Node: c3c9e37db9f4fe4882cda39baf42fed6bad8b15a
1700 1700 Message-Id: <c3c9e37db9f4fe4882cd.315532862@
1701 1701 In-Reply-To: <patchbomb.315532860@
1702 1702 References: <patchbomb.315532860@
1703 1703 User-Agent: Mercurial-patchbomb
1704 1704 Date: Tue, 01 Jan 1980 00:01:02 +0000
1705 1705 From: test
1706 1706 To: foo
1707 1707
1708 1708 # HG changeset patch
1709 1709 # User test
1710 1710 # Date 4 0
1711 1711 # Node ID c3c9e37db9f4fe4882cda39baf42fed6bad8b15a
1712 1712 # Parent ff2c9fa2018b15fa74b33363bda9527323e2a99f
1713 1713 charset=utf-8; content-transfer-encoding: base64
1714 1714
1715 1715 diff -r ff2c9fa2018b -r c3c9e37db9f4 description
1716 1716 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1717 1717 +++ b/description Thu Jan 01 00:00:04 1970 +0000
1718 1718 @@ -0,0 +1,3 @@
1719 1719 +a multiline
1720 1720 +
1721 1721 +description
1722 1722 diff -r ff2c9fa2018b -r c3c9e37db9f4 utf
1723 1723 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1724 1724 +++ b/utf Thu Jan 01 00:00:04 1970 +0000
1725 1725 @@ -0,0 +1,1 @@
1726 1726 +hömma!
1727 1727
1728 1728 Displaying [PATCH 3 of 8] charset=utf-8; content-transfer-encoding: quoted-printable ...
1729 1729 Content-Type: text/plain; charset="us-ascii"
1730 1730 MIME-Version: 1.0
1731 1731 Content-Transfer-Encoding: quoted-printable
1732 1732 Subject: [PATCH 3 of 8] charset=utf-8;
1733 content-transfer-encoding: quoted-printable
1733 content-transfer-encoding: quoted-printable
1734 1734 X-Mercurial-Node: c655633f8c87700bb38cc6a59a2753bdc5a6c376
1735 1735 Message-Id: <c655633f8c87700bb38c.315532863@
1736 1736 In-Reply-To: <patchbomb.315532860@
1737 1737 References: <patchbomb.315532860@
1738 1738 User-Agent: Mercurial-patchbomb
1739 1739 Date: Tue, 01 Jan 1980 00:01:03 +0000
1740 1740 From: test
1741 1741 To: foo
1742 1742
1743 1743 # HG changeset patch
1744 1744 # User test
1745 1745 # Date 4 0
1746 1746 # Node ID c655633f8c87700bb38cc6a59a2753bdc5a6c376
1747 1747 # Parent c3c9e37db9f4fe4882cda39baf42fed6bad8b15a
1748 1748 charset=3Dutf-8; content-transfer-encoding: quoted-printable
1749 1749
1750 1750 diff -r c3c9e37db9f4 -r c655633f8c87 qp
1751 1751 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1752 1752 +++ b/qp Thu Jan 01 00:00:04 1970 +0000
1753 1753 @@ -0,0 +1,4 @@
1754 1754 +xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
1755 1755 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
1756 1756 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
1757 1757 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
1758 1758 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
1759 1759 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
1760 1760 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
1761 1761 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
1762 1762 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
1763 1763 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
1764 1764 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
1765 1765 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
1766 1766 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
1767 1767 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
1768 1768 +foo
1769 1769 +
1770 1770 +bar
1771 1771
1772 1772 Displaying [PATCH 4 of 8] charset=us-ascii; content-transfer-encoding: 8bit ...
1773 1773 Content-Type: text/plain; charset="us-ascii"
1774 1774 MIME-Version: 1.0
1775 1775 Content-Transfer-Encoding: 8bit
1776 1776 Subject: [PATCH 4 of 8] charset=us-ascii; content-transfer-encoding: 8bit
1777 1777 X-Mercurial-Node: 22d0f96be12f5945fd67d101af58f7bc8263c835
1778 1778 Message-Id: <22d0f96be12f5945fd67.315532864@
1779 1779 In-Reply-To: <patchbomb.315532860@
1780 1780 References: <patchbomb.315532860@
1781 1781 User-Agent: Mercurial-patchbomb
1782 1782 Date: Tue, 01 Jan 1980 00:01:04 +0000
1783 1783 From: test
1784 1784 To: foo
1785 1785
1786 1786 # HG changeset patch
1787 1787 # User test
1788 1788 # Date 5 0
1789 1789 # Node ID 22d0f96be12f5945fd67d101af58f7bc8263c835
1790 1790 # Parent c655633f8c87700bb38cc6a59a2753bdc5a6c376
1791 1791 charset=us-ascii; content-transfer-encoding: 8bit
1792 1792
1793 1793 diff -r c655633f8c87 -r 22d0f96be12f isolatin
1794 1794 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1795 1795 +++ b/isolatin Thu Jan 01 00:00:05 1970 +0000
1796 1796 @@ -0,0 +1,1 @@
1797 1797 +h�mma!
1798 1798
1799 1799 Displaying [PATCH 5 of 8] Added tag zero, zero.foo for changeset 8580ff50825a ...
1800 1800 Content-Type: text/plain; charset="us-ascii"
1801 1801 MIME-Version: 1.0
1802 1802 Content-Transfer-Encoding: 7bit
1803 1803 Subject: [PATCH 5 of 8] Added tag zero, zero.foo for changeset 8580ff50825a
1804 1804 X-Mercurial-Node: dd9c2b4b8a8a0934d5523c15f2c119b362360903
1805 1805 Message-Id: <dd9c2b4b8a8a0934d552.315532865@
1806 1806 In-Reply-To: <patchbomb.315532860@
1807 1807 References: <patchbomb.315532860@
1808 1808 User-Agent: Mercurial-patchbomb
1809 1809 Date: Tue, 01 Jan 1980 00:01:05 +0000
1810 1810 From: test
1811 1811 To: foo
1812 1812
1813 1813 # HG changeset patch
1814 1814 # User test
1815 1815 # Date 0 0
1816 1816 # Node ID dd9c2b4b8a8a0934d5523c15f2c119b362360903
1817 1817 # Parent 22d0f96be12f5945fd67d101af58f7bc8263c835
1818 1818 Added tag zero, zero.foo for changeset 8580ff50825a
1819 1819
1820 1820 diff -r 22d0f96be12f -r dd9c2b4b8a8a .hgtags
1821 1821 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1822 1822 +++ b/.hgtags Thu Jan 01 00:00:00 1970 +0000
1823 1823 @@ -0,0 +1,2 @@
1824 1824 +8580ff50825a50c8f716709acdf8de0deddcd6ab zero
1825 1825 +8580ff50825a50c8f716709acdf8de0deddcd6ab zero.foo
1826 1826
1827 1827 Displaying [PATCH 6 of 8] Added tag one, one.patch for changeset 97d72e5f12c7 ...
1828 1828 Content-Type: text/plain; charset="us-ascii"
1829 1829 MIME-Version: 1.0
1830 1830 Content-Transfer-Encoding: 7bit
1831 1831 Subject: [PATCH 6 of 8] Added tag one, one.patch for changeset 97d72e5f12c7
1832 1832 X-Mercurial-Node: eae5fcf795eee29d0e45ffc9f519a91cd79fc9ff
1833 1833 Message-Id: <eae5fcf795eee29d0e45.315532866@
1834 1834 In-Reply-To: <patchbomb.315532860@
1835 1835 References: <patchbomb.315532860@
1836 1836 User-Agent: Mercurial-patchbomb
1837 1837 Date: Tue, 01 Jan 1980 00:01:06 +0000
1838 1838 From: test
1839 1839 To: foo
1840 1840
1841 1841 # HG changeset patch
1842 1842 # User test
1843 1843 # Date 0 0
1844 1844 # Node ID eae5fcf795eee29d0e45ffc9f519a91cd79fc9ff
1845 1845 # Parent dd9c2b4b8a8a0934d5523c15f2c119b362360903
1846 1846 Added tag one, one.patch for changeset 97d72e5f12c7
1847 1847
1848 1848 diff -r dd9c2b4b8a8a -r eae5fcf795ee .hgtags
1849 1849 --- a/.hgtags Thu Jan 01 00:00:00 1970 +0000
1850 1850 +++ b/.hgtags Thu Jan 01 00:00:00 1970 +0000
1851 1851 @@ -1,2 +1,4 @@
1852 1852 8580ff50825a50c8f716709acdf8de0deddcd6ab zero
1853 1853 8580ff50825a50c8f716709acdf8de0deddcd6ab zero.foo
1854 1854 +97d72e5f12c7e84f85064aa72e5a297142c36ed9 one
1855 1855 +97d72e5f12c7e84f85064aa72e5a297142c36ed9 one.patch
1856 1856
1857 1857 Displaying [PATCH 7 of 8] Added tag two, two.diff for changeset ff2c9fa2018b ...
1858 1858 Content-Type: text/plain; charset="us-ascii"
1859 1859 MIME-Version: 1.0
1860 1860 Content-Transfer-Encoding: 7bit
1861 1861 Subject: [PATCH 7 of 8] Added tag two, two.diff for changeset ff2c9fa2018b
1862 1862 X-Mercurial-Node: e317db6a6f288748d1f6cb064f3810fcba66b1b6
1863 1863 Message-Id: <e317db6a6f288748d1f6.315532867@
1864 1864 In-Reply-To: <patchbomb.315532860@
1865 1865 References: <patchbomb.315532860@
1866 1866 User-Agent: Mercurial-patchbomb
1867 1867 Date: Tue, 01 Jan 1980 00:01:07 +0000
1868 1868 From: test
1869 1869 To: foo
1870 1870
1871 1871 # HG changeset patch
1872 1872 # User test
1873 1873 # Date 0 0
1874 1874 # Node ID e317db6a6f288748d1f6cb064f3810fcba66b1b6
1875 1875 # Parent eae5fcf795eee29d0e45ffc9f519a91cd79fc9ff
1876 1876 Added tag two, two.diff for changeset ff2c9fa2018b
1877 1877
1878 1878 diff -r eae5fcf795ee -r e317db6a6f28 .hgtags
1879 1879 --- a/.hgtags Thu Jan 01 00:00:00 1970 +0000
1880 1880 +++ b/.hgtags Thu Jan 01 00:00:00 1970 +0000
1881 1881 @@ -2,3 +2,5 @@
1882 1882 8580ff50825a50c8f716709acdf8de0deddcd6ab zero.foo
1883 1883 97d72e5f12c7e84f85064aa72e5a297142c36ed9 one
1884 1884 97d72e5f12c7e84f85064aa72e5a297142c36ed9 one.patch
1885 1885 +ff2c9fa2018b15fa74b33363bda9527323e2a99f two
1886 1886 +ff2c9fa2018b15fa74b33363bda9527323e2a99f two.diff
1887 1887
1888 1888 Displaying [PATCH 8 of 8] d ...
1889 1889 Content-Type: text/plain; charset="us-ascii"
1890 1890 MIME-Version: 1.0
1891 1891 Content-Transfer-Encoding: 7bit
1892 1892 Subject: [PATCH 8 of 8] d
1893 1893 X-Mercurial-Node: 2f9fa9b998c5fe3ac2bd9a2b14bfcbeecbc7c268
1894 1894 Message-Id: <2f9fa9b998c5fe3ac2bd.315532868@
1895 1895 In-Reply-To: <patchbomb.315532860@
1896 1896 References: <patchbomb.315532860@
1897 1897 User-Agent: Mercurial-patchbomb
1898 1898 Date: Tue, 01 Jan 1980 00:01:08 +0000
1899 1899 From: test
1900 1900 To: foo
1901 1901
1902 1902 # HG changeset patch
1903 1903 # User test
1904 1904 # Date 4 0
1905 1905 # Branch test
1906 1906 # Node ID 2f9fa9b998c5fe3ac2bd9a2b14bfcbeecbc7c268
1907 1907 # Parent 97d72e5f12c7e84f85064aa72e5a297142c36ed9
1908 1908 d
1909 1909
1910 1910 diff -r 97d72e5f12c7 -r 2f9fa9b998c5 d
1911 1911 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1912 1912 +++ b/d Thu Jan 01 00:00:04 1970 +0000
1913 1913 @@ -0,0 +1,1 @@
1914 1914 +d
1915 1915
1916 1916 % dest#branch URIs
1917 1917 comparing with ../t
1918 1918 searching for changes
1919 1919 This patch series consists of 1 patches.
1920 1920
1921 1921
1922 1922 Displaying [PATCH] test ...
1923 1923 Content-Type: text/plain; charset="us-ascii"
1924 1924 MIME-Version: 1.0
1925 1925 Content-Transfer-Encoding: 7bit
1926 1926 Subject: [PATCH] test
1927 1927 X-Mercurial-Node: 2f9fa9b998c5fe3ac2bd9a2b14bfcbeecbc7c268
1928 1928 Message-Id: <2f9fa9b998c5fe3ac2bd.315532860@
1929 1929 User-Agent: Mercurial-patchbomb
1930 1930 Date: Tue, 01 Jan 1980 00:01:00 +0000
1931 1931 From: test
1932 1932 To: foo
1933 1933
1934 1934 # HG changeset patch
1935 1935 # User test
1936 1936 # Date 4 0
1937 1937 # Branch test
1938 1938 # Node ID 2f9fa9b998c5fe3ac2bd9a2b14bfcbeecbc7c268
1939 1939 # Parent 97d72e5f12c7e84f85064aa72e5a297142c36ed9
1940 1940 d
1941 1941
1942 1942 diff -r 97d72e5f12c7 -r 2f9fa9b998c5 d
1943 1943 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1944 1944 +++ b/d Thu Jan 01 00:00:04 1970 +0000
1945 1945 @@ -0,0 +1,1 @@
1946 1946 +d
1947 1947
General Comments 0
You need to be logged in to leave comments. Login now