Show More
@@ -509,9 +509,12 b' def patchbomb(ui, repo, *revs, **opts):' | |||||
509 | sender_addr = email.Utils.parseaddr(sender)[1] |
|
509 | sender_addr = email.Utils.parseaddr(sender)[1] | |
510 | sender = mail.addressencode(ui, sender, _charsets, opts.get('test')) |
|
510 | sender = mail.addressencode(ui, sender, _charsets, opts.get('test')) | |
511 | sendmail = None |
|
511 | sendmail = None | |
|
512 | firstpatch = None | |||
512 | for i, (m, subj, ds) in enumerate(msgs): |
|
513 | for i, (m, subj, ds) in enumerate(msgs): | |
513 | try: |
|
514 | try: | |
514 | m['Message-Id'] = genmsgid(m['X-Mercurial-Node']) |
|
515 | m['Message-Id'] = genmsgid(m['X-Mercurial-Node']) | |
|
516 | if not firstpatch: | |||
|
517 | firstpatch = m['Message-Id'] | |||
515 | except TypeError: |
|
518 | except TypeError: | |
516 | m['Message-Id'] = genmsgid('patchbomb') |
|
519 | m['Message-Id'] = genmsgid('patchbomb') | |
517 | if parent: |
|
520 | if parent: | |
@@ -519,7 +522,10 b' def patchbomb(ui, repo, *revs, **opts):' | |||||
519 | m['References'] = parent |
|
522 | m['References'] = parent | |
520 | if not parent or 'X-Mercurial-Node' not in m: |
|
523 | if not parent or 'X-Mercurial-Node' not in m: | |
521 | parent = m['Message-Id'] |
|
524 | parent = m['Message-Id'] | |
522 | m['X-Mercurial-Series-Id'] = parent |
|
525 | # For 0 of N messages, we won't have seen a patch yet, so | |
|
526 | # don't try and produce an X-Mercurial-Series-Id. | |||
|
527 | if firstpatch: | |||
|
528 | m['X-Mercurial-Series-Id'] = firstpatch | |||
523 |
|
529 | |||
524 | m['User-Agent'] = 'Mercurial-patchbomb/%s' % util.version() |
|
530 | m['User-Agent'] = 'Mercurial-patchbomb/%s' % util.version() | |
525 | m['Date'] = email.Utils.formatdate(start_time[0], localtime=True) |
|
531 | m['Date'] = email.Utils.formatdate(start_time[0], localtime=True) |
@@ -87,7 +87,6 b' Mercurial-patchbomb/.* -> Mercurial-patc' | |||||
87 | Content-Transfer-Encoding: 7bit |
|
87 | Content-Transfer-Encoding: 7bit | |
88 | Subject: [PATCH 0 of 2] test |
|
88 | Subject: [PATCH 0 of 2] test | |
89 | Message-Id: <patchbomb.120@*> (glob) |
|
89 | Message-Id: <patchbomb.120@*> (glob) | |
90 | X-Mercurial-Series-Id: <patchbomb.120@*> (glob) |
|
|||
91 | User-Agent: Mercurial-patchbomb/* (glob) |
|
90 | User-Agent: Mercurial-patchbomb/* (glob) | |
92 | Date: Thu, 01 Jan 1970 00:02:00 +0000 |
|
91 | Date: Thu, 01 Jan 1970 00:02:00 +0000 | |
93 | From: quux |
|
92 | From: quux | |
@@ -106,7 +105,7 b' Mercurial-patchbomb/.* -> Mercurial-patc' | |||||
106 | Message-Id: <8580ff50825a50c8f716.121@*> (glob) |
|
105 | Message-Id: <8580ff50825a50c8f716.121@*> (glob) | |
107 | In-Reply-To: <patchbomb.120@*> (glob) |
|
106 | In-Reply-To: <patchbomb.120@*> (glob) | |
108 | References: <patchbomb.120@*> (glob) |
|
107 | References: <patchbomb.120@*> (glob) | |
109 |
X-Mercurial-Series-Id: < |
|
108 | X-Mercurial-Series-Id: <8580ff50825a50c8f716.121@*> (glob) | |
110 | User-Agent: Mercurial-patchbomb/* (glob) |
|
109 | User-Agent: Mercurial-patchbomb/* (glob) | |
111 | Date: Thu, 01 Jan 1970 00:02:01 +0000 |
|
110 | Date: Thu, 01 Jan 1970 00:02:01 +0000 | |
112 | From: quux |
|
111 | From: quux | |
@@ -138,7 +137,7 b' Mercurial-patchbomb/.* -> Mercurial-patc' | |||||
138 | Message-Id: <97d72e5f12c7e84f8506.122@*> (glob) |
|
137 | Message-Id: <97d72e5f12c7e84f8506.122@*> (glob) | |
139 | In-Reply-To: <patchbomb.120@*> (glob) |
|
138 | In-Reply-To: <patchbomb.120@*> (glob) | |
140 | References: <patchbomb.120@*> (glob) |
|
139 | References: <patchbomb.120@*> (glob) | |
141 |
X-Mercurial-Series-Id: < |
|
140 | X-Mercurial-Series-Id: <8580ff50825a50c8f716.121@*> (glob) | |
142 | User-Agent: Mercurial-patchbomb/* (glob) |
|
141 | User-Agent: Mercurial-patchbomb/* (glob) | |
143 | Date: Thu, 01 Jan 1970 00:02:02 +0000 |
|
142 | Date: Thu, 01 Jan 1970 00:02:02 +0000 | |
144 | From: quux |
|
143 | From: quux | |
@@ -224,7 +223,6 b' test bundle and description:' | |||||
224 | MIME-Version: 1.0 |
|
223 | MIME-Version: 1.0 | |
225 | Subject: test |
|
224 | Subject: test | |
226 | Message-Id: <patchbomb.180@*> (glob) |
|
225 | Message-Id: <patchbomb.180@*> (glob) | |
227 | X-Mercurial-Series-Id: <patchbomb.180@*> (glob) |
|
|||
228 | User-Agent: Mercurial-patchbomb/* (glob) |
|
226 | User-Agent: Mercurial-patchbomb/* (glob) | |
229 | Date: Thu, 01 Jan 1970 00:03:00 +0000 |
|
227 | Date: Thu, 01 Jan 1970 00:03:00 +0000 | |
230 | From: quux |
|
228 | From: quux | |
@@ -606,7 +604,6 b' test diffstat for multiple patches:' | |||||
606 | Content-Transfer-Encoding: 7bit |
|
604 | Content-Transfer-Encoding: 7bit | |
607 | Subject: [PATCH 0 of 2] test |
|
605 | Subject: [PATCH 0 of 2] test | |
608 | Message-Id: <patchbomb.60@*> (glob) |
|
606 | Message-Id: <patchbomb.60@*> (glob) | |
609 | X-Mercurial-Series-Id: <patchbomb.60@*> (glob) |
|
|||
610 | User-Agent: Mercurial-patchbomb/* (glob) |
|
607 | User-Agent: Mercurial-patchbomb/* (glob) | |
611 | Date: Thu, 01 Jan 1970 00:01:00 +0000 |
|
608 | Date: Thu, 01 Jan 1970 00:01:00 +0000 | |
612 | From: quux |
|
609 | From: quux | |
@@ -629,7 +626,7 b' test diffstat for multiple patches:' | |||||
629 | Message-Id: <8580ff50825a50c8f716.61@*> (glob) |
|
626 | Message-Id: <8580ff50825a50c8f716.61@*> (glob) | |
630 | In-Reply-To: <patchbomb.60@*> (glob) |
|
627 | In-Reply-To: <patchbomb.60@*> (glob) | |
631 | References: <patchbomb.60@*> (glob) |
|
628 | References: <patchbomb.60@*> (glob) | |
632 |
X-Mercurial-Series-Id: < |
|
629 | X-Mercurial-Series-Id: <8580ff50825a50c8f716.61@*> (glob) | |
633 | User-Agent: Mercurial-patchbomb/* (glob) |
|
630 | User-Agent: Mercurial-patchbomb/* (glob) | |
634 | Date: Thu, 01 Jan 1970 00:01:01 +0000 |
|
631 | Date: Thu, 01 Jan 1970 00:01:01 +0000 | |
635 | From: quux |
|
632 | From: quux | |
@@ -665,7 +662,7 b' test diffstat for multiple patches:' | |||||
665 | Message-Id: <97d72e5f12c7e84f8506.62@*> (glob) |
|
662 | Message-Id: <97d72e5f12c7e84f8506.62@*> (glob) | |
666 | In-Reply-To: <patchbomb.60@*> (glob) |
|
663 | In-Reply-To: <patchbomb.60@*> (glob) | |
667 | References: <patchbomb.60@*> (glob) |
|
664 | References: <patchbomb.60@*> (glob) | |
668 |
X-Mercurial-Series-Id: < |
|
665 | X-Mercurial-Series-Id: <8580ff50825a50c8f716.61@*> (glob) | |
669 | User-Agent: Mercurial-patchbomb/* (glob) |
|
666 | User-Agent: Mercurial-patchbomb/* (glob) | |
670 | Date: Thu, 01 Jan 1970 00:01:02 +0000 |
|
667 | Date: Thu, 01 Jan 1970 00:01:02 +0000 | |
671 | From: quux |
|
668 | From: quux | |
@@ -807,7 +804,6 b' test inline for multiple patches:' | |||||
807 | Content-Transfer-Encoding: 7bit |
|
804 | Content-Transfer-Encoding: 7bit | |
808 | Subject: [PATCH 0 of 3] test |
|
805 | Subject: [PATCH 0 of 3] test | |
809 | Message-Id: <patchbomb.60@*> (glob) |
|
806 | Message-Id: <patchbomb.60@*> (glob) | |
810 | X-Mercurial-Series-Id: <patchbomb.60@*> (glob) |
|
|||
811 | User-Agent: Mercurial-patchbomb/* (glob) |
|
807 | User-Agent: Mercurial-patchbomb/* (glob) | |
812 | Date: Thu, 01 Jan 1970 00:01:00 +0000 |
|
808 | Date: Thu, 01 Jan 1970 00:01:00 +0000 | |
813 | From: quux |
|
809 | From: quux | |
@@ -825,7 +821,7 b' test inline for multiple patches:' | |||||
825 | Message-Id: <8580ff50825a50c8f716.61@*> (glob) |
|
821 | Message-Id: <8580ff50825a50c8f716.61@*> (glob) | |
826 | In-Reply-To: <patchbomb.60@*> (glob) |
|
822 | In-Reply-To: <patchbomb.60@*> (glob) | |
827 | References: <patchbomb.60@*> (glob) |
|
823 | References: <patchbomb.60@*> (glob) | |
828 |
X-Mercurial-Series-Id: < |
|
824 | X-Mercurial-Series-Id: <8580ff50825a50c8f716.61@*> (glob) | |
829 | User-Agent: Mercurial-patchbomb/* (glob) |
|
825 | User-Agent: Mercurial-patchbomb/* (glob) | |
830 | Date: Thu, 01 Jan 1970 00:01:01 +0000 |
|
826 | Date: Thu, 01 Jan 1970 00:01:01 +0000 | |
831 | From: quux |
|
827 | From: quux | |
@@ -863,7 +859,7 b' test inline for multiple patches:' | |||||
863 | Message-Id: <97d72e5f12c7e84f8506.62@*> (glob) |
|
859 | Message-Id: <97d72e5f12c7e84f8506.62@*> (glob) | |
864 | In-Reply-To: <patchbomb.60@*> (glob) |
|
860 | In-Reply-To: <patchbomb.60@*> (glob) | |
865 | References: <patchbomb.60@*> (glob) |
|
861 | References: <patchbomb.60@*> (glob) | |
866 |
X-Mercurial-Series-Id: < |
|
862 | X-Mercurial-Series-Id: <8580ff50825a50c8f716.61@*> (glob) | |
867 | User-Agent: Mercurial-patchbomb/* (glob) |
|
863 | User-Agent: Mercurial-patchbomb/* (glob) | |
868 | Date: Thu, 01 Jan 1970 00:01:02 +0000 |
|
864 | Date: Thu, 01 Jan 1970 00:01:02 +0000 | |
869 | From: quux |
|
865 | From: quux | |
@@ -901,7 +897,7 b' test inline for multiple patches:' | |||||
901 | Message-Id: <a2ea8fc83dd8b93cfd86.63@*> (glob) |
|
897 | Message-Id: <a2ea8fc83dd8b93cfd86.63@*> (glob) | |
902 | In-Reply-To: <patchbomb.60@*> (glob) |
|
898 | In-Reply-To: <patchbomb.60@*> (glob) | |
903 | References: <patchbomb.60@*> (glob) |
|
899 | References: <patchbomb.60@*> (glob) | |
904 |
X-Mercurial-Series-Id: < |
|
900 | X-Mercurial-Series-Id: <8580ff50825a50c8f716.61@*> (glob) | |
905 | User-Agent: Mercurial-patchbomb/* (glob) |
|
901 | User-Agent: Mercurial-patchbomb/* (glob) | |
906 | Date: Thu, 01 Jan 1970 00:01:03 +0000 |
|
902 | Date: Thu, 01 Jan 1970 00:01:03 +0000 | |
907 | From: quux |
|
903 | From: quux | |
@@ -1140,7 +1136,6 b' test attach for multiple patches:' | |||||
1140 | Content-Transfer-Encoding: 7bit |
|
1136 | Content-Transfer-Encoding: 7bit | |
1141 | Subject: [PATCH 0 of 3] test |
|
1137 | Subject: [PATCH 0 of 3] test | |
1142 | Message-Id: <patchbomb.60@*> (glob) |
|
1138 | Message-Id: <patchbomb.60@*> (glob) | |
1143 | X-Mercurial-Series-Id: <patchbomb.60@*> (glob) |
|
|||
1144 | User-Agent: Mercurial-patchbomb/* (glob) |
|
1139 | User-Agent: Mercurial-patchbomb/* (glob) | |
1145 | Date: Thu, 01 Jan 1970 00:01:00 +0000 |
|
1140 | Date: Thu, 01 Jan 1970 00:01:00 +0000 | |
1146 | From: quux |
|
1141 | From: quux | |
@@ -1158,7 +1153,7 b' test attach for multiple patches:' | |||||
1158 | Message-Id: <8580ff50825a50c8f716.61@*> (glob) |
|
1153 | Message-Id: <8580ff50825a50c8f716.61@*> (glob) | |
1159 | In-Reply-To: <patchbomb.60@*> (glob) |
|
1154 | In-Reply-To: <patchbomb.60@*> (glob) | |
1160 | References: <patchbomb.60@*> (glob) |
|
1155 | References: <patchbomb.60@*> (glob) | |
1161 |
X-Mercurial-Series-Id: < |
|
1156 | X-Mercurial-Series-Id: <8580ff50825a50c8f716.61@*> (glob) | |
1162 | User-Agent: Mercurial-patchbomb/* (glob) |
|
1157 | User-Agent: Mercurial-patchbomb/* (glob) | |
1163 | Date: Thu, 01 Jan 1970 00:01:01 +0000 |
|
1158 | Date: Thu, 01 Jan 1970 00:01:01 +0000 | |
1164 | From: quux |
|
1159 | From: quux | |
@@ -1205,7 +1200,7 b' test attach for multiple patches:' | |||||
1205 | Message-Id: <97d72e5f12c7e84f8506.62@*> (glob) |
|
1200 | Message-Id: <97d72e5f12c7e84f8506.62@*> (glob) | |
1206 | In-Reply-To: <patchbomb.60@*> (glob) |
|
1201 | In-Reply-To: <patchbomb.60@*> (glob) | |
1207 | References: <patchbomb.60@*> (glob) |
|
1202 | References: <patchbomb.60@*> (glob) | |
1208 |
X-Mercurial-Series-Id: < |
|
1203 | X-Mercurial-Series-Id: <8580ff50825a50c8f716.61@*> (glob) | |
1209 | User-Agent: Mercurial-patchbomb/* (glob) |
|
1204 | User-Agent: Mercurial-patchbomb/* (glob) | |
1210 | Date: Thu, 01 Jan 1970 00:01:02 +0000 |
|
1205 | Date: Thu, 01 Jan 1970 00:01:02 +0000 | |
1211 | From: quux |
|
1206 | From: quux | |
@@ -1252,7 +1247,7 b' test attach for multiple patches:' | |||||
1252 | Message-Id: <a2ea8fc83dd8b93cfd86.63@*> (glob) |
|
1247 | Message-Id: <a2ea8fc83dd8b93cfd86.63@*> (glob) | |
1253 | In-Reply-To: <patchbomb.60@*> (glob) |
|
1248 | In-Reply-To: <patchbomb.60@*> (glob) | |
1254 | References: <patchbomb.60@*> (glob) |
|
1249 | References: <patchbomb.60@*> (glob) | |
1255 |
X-Mercurial-Series-Id: < |
|
1250 | X-Mercurial-Series-Id: <8580ff50825a50c8f716.61@*> (glob) | |
1256 | User-Agent: Mercurial-patchbomb/* (glob) |
|
1251 | User-Agent: Mercurial-patchbomb/* (glob) | |
1257 | Date: Thu, 01 Jan 1970 00:01:03 +0000 |
|
1252 | Date: Thu, 01 Jan 1970 00:01:03 +0000 | |
1258 | From: quux |
|
1253 | From: quux | |
@@ -1321,7 +1316,6 b' test intro for single patch:' | |||||
1321 | Content-Transfer-Encoding: 7bit |
|
1316 | Content-Transfer-Encoding: 7bit | |
1322 | Subject: [PATCH 0 of 1] test |
|
1317 | Subject: [PATCH 0 of 1] test | |
1323 | Message-Id: <patchbomb.60@*> (glob) |
|
1318 | Message-Id: <patchbomb.60@*> (glob) | |
1324 | X-Mercurial-Series-Id: <patchbomb.60@*> (glob) |
|
|||
1325 | User-Agent: Mercurial-patchbomb/* (glob) |
|
1319 | User-Agent: Mercurial-patchbomb/* (glob) | |
1326 | Date: Thu, 01 Jan 1970 00:01:00 +0000 |
|
1320 | Date: Thu, 01 Jan 1970 00:01:00 +0000 | |
1327 | From: quux |
|
1321 | From: quux | |
@@ -1340,7 +1334,7 b' test intro for single patch:' | |||||
1340 | Message-Id: <ff2c9fa2018b15fa74b3.61@*> (glob) |
|
1334 | Message-Id: <ff2c9fa2018b15fa74b3.61@*> (glob) | |
1341 | In-Reply-To: <patchbomb.60@*> (glob) |
|
1335 | In-Reply-To: <patchbomb.60@*> (glob) | |
1342 | References: <patchbomb.60@*> (glob) |
|
1336 | References: <patchbomb.60@*> (glob) | |
1343 |
X-Mercurial-Series-Id: < |
|
1337 | X-Mercurial-Series-Id: <ff2c9fa2018b15fa74b3.61@*> (glob) | |
1344 | User-Agent: Mercurial-patchbomb/* (glob) |
|
1338 | User-Agent: Mercurial-patchbomb/* (glob) | |
1345 | Date: Thu, 01 Jan 1970 00:01:01 +0000 |
|
1339 | Date: Thu, 01 Jan 1970 00:01:01 +0000 | |
1346 | From: quux |
|
1340 | From: quux | |
@@ -1375,7 +1369,6 b' test --desc without --intro for a single' | |||||
1375 | Content-Transfer-Encoding: 7bit |
|
1369 | Content-Transfer-Encoding: 7bit | |
1376 | Subject: [PATCH 0 of 1] test |
|
1370 | Subject: [PATCH 0 of 1] test | |
1377 | Message-Id: <patchbomb.60@*> (glob) |
|
1371 | Message-Id: <patchbomb.60@*> (glob) | |
1378 | X-Mercurial-Series-Id: <patchbomb.60@*> (glob) |
|
|||
1379 | User-Agent: Mercurial-patchbomb/* (glob) |
|
1372 | User-Agent: Mercurial-patchbomb/* (glob) | |
1380 | Date: Thu, 01 Jan 1970 00:01:00 +0000 |
|
1373 | Date: Thu, 01 Jan 1970 00:01:00 +0000 | |
1381 | From: quux |
|
1374 | From: quux | |
@@ -1395,7 +1388,7 b' test --desc without --intro for a single' | |||||
1395 | Message-Id: <ff2c9fa2018b15fa74b3.61@*> (glob) |
|
1388 | Message-Id: <ff2c9fa2018b15fa74b3.61@*> (glob) | |
1396 | In-Reply-To: <patchbomb.60@*> (glob) |
|
1389 | In-Reply-To: <patchbomb.60@*> (glob) | |
1397 | References: <patchbomb.60@*> (glob) |
|
1390 | References: <patchbomb.60@*> (glob) | |
1398 |
X-Mercurial-Series-Id: < |
|
1391 | X-Mercurial-Series-Id: <ff2c9fa2018b15fa74b3.61@*> (glob) | |
1399 | User-Agent: Mercurial-patchbomb/* (glob) |
|
1392 | User-Agent: Mercurial-patchbomb/* (glob) | |
1400 | Date: Thu, 01 Jan 1970 00:01:01 +0000 |
|
1393 | Date: Thu, 01 Jan 1970 00:01:01 +0000 | |
1401 | From: quux |
|
1394 | From: quux | |
@@ -1432,7 +1425,6 b' test intro for multiple patches:' | |||||
1432 | Content-Transfer-Encoding: 7bit |
|
1425 | Content-Transfer-Encoding: 7bit | |
1433 | Subject: [PATCH 0 of 2] test |
|
1426 | Subject: [PATCH 0 of 2] test | |
1434 | Message-Id: <patchbomb.60@*> (glob) |
|
1427 | Message-Id: <patchbomb.60@*> (glob) | |
1435 | X-Mercurial-Series-Id: <patchbomb.60@*> (glob) |
|
|||
1436 | User-Agent: Mercurial-patchbomb/* (glob) |
|
1428 | User-Agent: Mercurial-patchbomb/* (glob) | |
1437 | Date: Thu, 01 Jan 1970 00:01:00 +0000 |
|
1429 | Date: Thu, 01 Jan 1970 00:01:00 +0000 | |
1438 | From: quux |
|
1430 | From: quux | |
@@ -1451,7 +1443,7 b' test intro for multiple patches:' | |||||
1451 | Message-Id: <8580ff50825a50c8f716.61@*> (glob) |
|
1443 | Message-Id: <8580ff50825a50c8f716.61@*> (glob) | |
1452 | In-Reply-To: <patchbomb.60@*> (glob) |
|
1444 | In-Reply-To: <patchbomb.60@*> (glob) | |
1453 | References: <patchbomb.60@*> (glob) |
|
1445 | References: <patchbomb.60@*> (glob) | |
1454 |
X-Mercurial-Series-Id: < |
|
1446 | X-Mercurial-Series-Id: <8580ff50825a50c8f716.61@*> (glob) | |
1455 | User-Agent: Mercurial-patchbomb/* (glob) |
|
1447 | User-Agent: Mercurial-patchbomb/* (glob) | |
1456 | Date: Thu, 01 Jan 1970 00:01:01 +0000 |
|
1448 | Date: Thu, 01 Jan 1970 00:01:01 +0000 | |
1457 | From: quux |
|
1449 | From: quux | |
@@ -1483,7 +1475,7 b' test intro for multiple patches:' | |||||
1483 | Message-Id: <97d72e5f12c7e84f8506.62@*> (glob) |
|
1475 | Message-Id: <97d72e5f12c7e84f8506.62@*> (glob) | |
1484 | In-Reply-To: <patchbomb.60@*> (glob) |
|
1476 | In-Reply-To: <patchbomb.60@*> (glob) | |
1485 | References: <patchbomb.60@*> (glob) |
|
1477 | References: <patchbomb.60@*> (glob) | |
1486 |
X-Mercurial-Series-Id: < |
|
1478 | X-Mercurial-Series-Id: <8580ff50825a50c8f716.61@*> (glob) | |
1487 | User-Agent: Mercurial-patchbomb/* (glob) |
|
1479 | User-Agent: Mercurial-patchbomb/* (glob) | |
1488 | Date: Thu, 01 Jan 1970 00:01:02 +0000 |
|
1480 | Date: Thu, 01 Jan 1970 00:01:02 +0000 | |
1489 | From: quux |
|
1481 | From: quux | |
@@ -1642,7 +1634,6 b' test inline for multiple named/unnamed p' | |||||
1642 | Content-Transfer-Encoding: 7bit |
|
1634 | Content-Transfer-Encoding: 7bit | |
1643 | Subject: [PATCH 0 of 2] test |
|
1635 | Subject: [PATCH 0 of 2] test | |
1644 | Message-Id: <patchbomb.60@*> (glob) |
|
1636 | Message-Id: <patchbomb.60@*> (glob) | |
1645 | X-Mercurial-Series-Id: <patchbomb.60@*> (glob) |
|
|||
1646 | User-Agent: Mercurial-patchbomb/* (glob) |
|
1637 | User-Agent: Mercurial-patchbomb/* (glob) | |
1647 | Date: Thu, 01 Jan 1970 00:01:00 +0000 |
|
1638 | Date: Thu, 01 Jan 1970 00:01:00 +0000 | |
1648 | From: quux |
|
1639 | From: quux | |
@@ -1660,7 +1651,7 b' test inline for multiple named/unnamed p' | |||||
1660 | Message-Id: <8580ff50825a50c8f716.61@*> (glob) |
|
1651 | Message-Id: <8580ff50825a50c8f716.61@*> (glob) | |
1661 | In-Reply-To: <patchbomb.60@*> (glob) |
|
1652 | In-Reply-To: <patchbomb.60@*> (glob) | |
1662 | References: <patchbomb.60@*> (glob) |
|
1653 | References: <patchbomb.60@*> (glob) | |
1663 |
X-Mercurial-Series-Id: < |
|
1654 | X-Mercurial-Series-Id: <8580ff50825a50c8f716.61@*> (glob) | |
1664 | User-Agent: Mercurial-patchbomb/* (glob) |
|
1655 | User-Agent: Mercurial-patchbomb/* (glob) | |
1665 | Date: Thu, 01 Jan 1970 00:01:01 +0000 |
|
1656 | Date: Thu, 01 Jan 1970 00:01:01 +0000 | |
1666 | From: quux |
|
1657 | From: quux | |
@@ -1698,7 +1689,7 b' test inline for multiple named/unnamed p' | |||||
1698 | Message-Id: <97d72e5f12c7e84f8506.62@*> (glob) |
|
1689 | Message-Id: <97d72e5f12c7e84f8506.62@*> (glob) | |
1699 | In-Reply-To: <patchbomb.60@*> (glob) |
|
1690 | In-Reply-To: <patchbomb.60@*> (glob) | |
1700 | References: <patchbomb.60@*> (glob) |
|
1691 | References: <patchbomb.60@*> (glob) | |
1701 |
X-Mercurial-Series-Id: < |
|
1692 | X-Mercurial-Series-Id: <8580ff50825a50c8f716.61@*> (glob) | |
1702 | User-Agent: Mercurial-patchbomb/* (glob) |
|
1693 | User-Agent: Mercurial-patchbomb/* (glob) | |
1703 | Date: Thu, 01 Jan 1970 00:01:02 +0000 |
|
1694 | Date: Thu, 01 Jan 1970 00:01:02 +0000 | |
1704 | From: quux |
|
1695 | From: quux | |
@@ -1745,7 +1736,7 b' test inreplyto:' | |||||
1745 | Message-Id: <7aead2484924c445ad8c.60@*> (glob) |
|
1736 | Message-Id: <7aead2484924c445ad8c.60@*> (glob) | |
1746 | In-Reply-To: <baz> |
|
1737 | In-Reply-To: <baz> | |
1747 | References: <baz> |
|
1738 | References: <baz> | |
1748 |
X-Mercurial-Series-Id: < |
|
1739 | X-Mercurial-Series-Id: <7aead2484924c445ad8c.60@*> (glob) | |
1749 | User-Agent: Mercurial-patchbomb/* (glob) |
|
1740 | User-Agent: Mercurial-patchbomb/* (glob) | |
1750 | Date: Thu, 01 Jan 1970 00:01:00 +0000 |
|
1741 | Date: Thu, 01 Jan 1970 00:01:00 +0000 | |
1751 | From: quux |
|
1742 | From: quux | |
@@ -1788,7 +1779,7 b' no intro message in non-interactive mode' | |||||
1788 | Message-Id: <8580ff50825a50c8f716.60@*> (glob) |
|
1779 | Message-Id: <8580ff50825a50c8f716.60@*> (glob) | |
1789 | In-Reply-To: <baz> |
|
1780 | In-Reply-To: <baz> | |
1790 | References: <baz> |
|
1781 | References: <baz> | |
1791 |
X-Mercurial-Series-Id: < |
|
1782 | X-Mercurial-Series-Id: <8580ff50825a50c8f716.60@*> (glob) | |
1792 | User-Agent: Mercurial-patchbomb/* (glob) |
|
1783 | User-Agent: Mercurial-patchbomb/* (glob) | |
1793 | Date: Thu, 01 Jan 1970 00:01:00 +0000 |
|
1784 | Date: Thu, 01 Jan 1970 00:01:00 +0000 | |
1794 | From: quux |
|
1785 | From: quux | |
@@ -1820,7 +1811,7 b' no intro message in non-interactive mode' | |||||
1820 | Message-Id: <97d72e5f12c7e84f8506.61@*> (glob) |
|
1811 | Message-Id: <97d72e5f12c7e84f8506.61@*> (glob) | |
1821 | In-Reply-To: <baz> |
|
1812 | In-Reply-To: <baz> | |
1822 | References: <baz> |
|
1813 | References: <baz> | |
1823 |
X-Mercurial-Series-Id: < |
|
1814 | X-Mercurial-Series-Id: <8580ff50825a50c8f716.60@*> (glob) | |
1824 | User-Agent: Mercurial-patchbomb/* (glob) |
|
1815 | User-Agent: Mercurial-patchbomb/* (glob) | |
1825 | Date: Thu, 01 Jan 1970 00:01:01 +0000 |
|
1816 | Date: Thu, 01 Jan 1970 00:01:01 +0000 | |
1826 | From: quux |
|
1817 | From: quux | |
@@ -1860,7 +1851,6 b' no intro message in non-interactive mode' | |||||
1860 | Message-Id: <patchbomb.60@*> (glob) |
|
1851 | Message-Id: <patchbomb.60@*> (glob) | |
1861 | In-Reply-To: <baz> |
|
1852 | In-Reply-To: <baz> | |
1862 | References: <baz> |
|
1853 | References: <baz> | |
1863 | X-Mercurial-Series-Id: <patchbomb.60@*> (glob) |
|
|||
1864 | User-Agent: Mercurial-patchbomb/* (glob) |
|
1854 | User-Agent: Mercurial-patchbomb/* (glob) | |
1865 | Date: Thu, 01 Jan 1970 00:01:00 +0000 |
|
1855 | Date: Thu, 01 Jan 1970 00:01:00 +0000 | |
1866 | From: quux |
|
1856 | From: quux | |
@@ -1879,7 +1869,7 b' no intro message in non-interactive mode' | |||||
1879 | Message-Id: <8580ff50825a50c8f716.61@*> (glob) |
|
1869 | Message-Id: <8580ff50825a50c8f716.61@*> (glob) | |
1880 | In-Reply-To: <patchbomb.60@*> (glob) |
|
1870 | In-Reply-To: <patchbomb.60@*> (glob) | |
1881 | References: <patchbomb.60@*> (glob) |
|
1871 | References: <patchbomb.60@*> (glob) | |
1882 |
X-Mercurial-Series-Id: < |
|
1872 | X-Mercurial-Series-Id: <8580ff50825a50c8f716.61@*> (glob) | |
1883 | User-Agent: Mercurial-patchbomb/* (glob) |
|
1873 | User-Agent: Mercurial-patchbomb/* (glob) | |
1884 | Date: Thu, 01 Jan 1970 00:01:01 +0000 |
|
1874 | Date: Thu, 01 Jan 1970 00:01:01 +0000 | |
1885 | From: quux |
|
1875 | From: quux | |
@@ -1911,7 +1901,7 b' no intro message in non-interactive mode' | |||||
1911 | Message-Id: <97d72e5f12c7e84f8506.62@*> (glob) |
|
1901 | Message-Id: <97d72e5f12c7e84f8506.62@*> (glob) | |
1912 | In-Reply-To: <patchbomb.60@*> (glob) |
|
1902 | In-Reply-To: <patchbomb.60@*> (glob) | |
1913 | References: <patchbomb.60@*> (glob) |
|
1903 | References: <patchbomb.60@*> (glob) | |
1914 |
X-Mercurial-Series-Id: < |
|
1904 | X-Mercurial-Series-Id: <8580ff50825a50c8f716.61@*> (glob) | |
1915 | User-Agent: Mercurial-patchbomb/* (glob) |
|
1905 | User-Agent: Mercurial-patchbomb/* (glob) | |
1916 | Date: Thu, 01 Jan 1970 00:01:02 +0000 |
|
1906 | Date: Thu, 01 Jan 1970 00:01:02 +0000 | |
1917 | From: quux |
|
1907 | From: quux | |
@@ -1988,7 +1978,6 b' test single flag for multiple patches (a' | |||||
1988 | Content-Transfer-Encoding: 7bit |
|
1978 | Content-Transfer-Encoding: 7bit | |
1989 | Subject: [PATCH 0 of 2 fooFlag] test |
|
1979 | Subject: [PATCH 0 of 2 fooFlag] test | |
1990 | Message-Id: <patchbomb.60@*> (glob) |
|
1980 | Message-Id: <patchbomb.60@*> (glob) | |
1991 | X-Mercurial-Series-Id: <patchbomb.60@*> (glob) |
|
|||
1992 | User-Agent: Mercurial-patchbomb/* (glob) |
|
1981 | User-Agent: Mercurial-patchbomb/* (glob) | |
1993 | Date: Thu, 01 Jan 1970 00:01:00 +0000 |
|
1982 | Date: Thu, 01 Jan 1970 00:01:00 +0000 | |
1994 | From: quux |
|
1983 | From: quux | |
@@ -2007,7 +1996,7 b' test single flag for multiple patches (a' | |||||
2007 | Message-Id: <8580ff50825a50c8f716.61@*> (glob) |
|
1996 | Message-Id: <8580ff50825a50c8f716.61@*> (glob) | |
2008 | In-Reply-To: <patchbomb.60@*> (glob) |
|
1997 | In-Reply-To: <patchbomb.60@*> (glob) | |
2009 | References: <patchbomb.60@*> (glob) |
|
1998 | References: <patchbomb.60@*> (glob) | |
2010 |
X-Mercurial-Series-Id: < |
|
1999 | X-Mercurial-Series-Id: <8580ff50825a50c8f716.61@*> (glob) | |
2011 | User-Agent: Mercurial-patchbomb/* (glob) |
|
2000 | User-Agent: Mercurial-patchbomb/* (glob) | |
2012 | Date: Thu, 01 Jan 1970 00:01:01 +0000 |
|
2001 | Date: Thu, 01 Jan 1970 00:01:01 +0000 | |
2013 | From: quux |
|
2002 | From: quux | |
@@ -2039,7 +2028,7 b' test single flag for multiple patches (a' | |||||
2039 | Message-Id: <97d72e5f12c7e84f8506.62@*> (glob) |
|
2028 | Message-Id: <97d72e5f12c7e84f8506.62@*> (glob) | |
2040 | In-Reply-To: <patchbomb.60@*> (glob) |
|
2029 | In-Reply-To: <patchbomb.60@*> (glob) | |
2041 | References: <patchbomb.60@*> (glob) |
|
2030 | References: <patchbomb.60@*> (glob) | |
2042 |
X-Mercurial-Series-Id: < |
|
2031 | X-Mercurial-Series-Id: <8580ff50825a50c8f716.61@*> (glob) | |
2043 | User-Agent: Mercurial-patchbomb/* (glob) |
|
2032 | User-Agent: Mercurial-patchbomb/* (glob) | |
2044 | Date: Thu, 01 Jan 1970 00:01:02 +0000 |
|
2033 | Date: Thu, 01 Jan 1970 00:01:02 +0000 | |
2045 | From: quux |
|
2034 | From: quux | |
@@ -2115,7 +2104,6 b' test multiple flags for multiple patches' | |||||
2115 | Content-Transfer-Encoding: 7bit |
|
2104 | Content-Transfer-Encoding: 7bit | |
2116 | Subject: [PATCH 0 of 2 fooFlag barFlag] test |
|
2105 | Subject: [PATCH 0 of 2 fooFlag barFlag] test | |
2117 | Message-Id: <patchbomb.60@*> (glob) |
|
2106 | Message-Id: <patchbomb.60@*> (glob) | |
2118 | X-Mercurial-Series-Id: <patchbomb.60@*> (glob) |
|
|||
2119 | User-Agent: Mercurial-patchbomb/* (glob) |
|
2107 | User-Agent: Mercurial-patchbomb/* (glob) | |
2120 | Date: Thu, 01 Jan 1970 00:01:00 +0000 |
|
2108 | Date: Thu, 01 Jan 1970 00:01:00 +0000 | |
2121 | From: quux |
|
2109 | From: quux | |
@@ -2134,7 +2122,7 b' test multiple flags for multiple patches' | |||||
2134 | Message-Id: <8580ff50825a50c8f716.61@*> (glob) |
|
2122 | Message-Id: <8580ff50825a50c8f716.61@*> (glob) | |
2135 | In-Reply-To: <patchbomb.60@*> (glob) |
|
2123 | In-Reply-To: <patchbomb.60@*> (glob) | |
2136 | References: <patchbomb.60@*> (glob) |
|
2124 | References: <patchbomb.60@*> (glob) | |
2137 |
X-Mercurial-Series-Id: < |
|
2125 | X-Mercurial-Series-Id: <8580ff50825a50c8f716.61@*> (glob) | |
2138 | User-Agent: Mercurial-patchbomb/* (glob) |
|
2126 | User-Agent: Mercurial-patchbomb/* (glob) | |
2139 | Date: Thu, 01 Jan 1970 00:01:01 +0000 |
|
2127 | Date: Thu, 01 Jan 1970 00:01:01 +0000 | |
2140 | From: quux |
|
2128 | From: quux | |
@@ -2166,7 +2154,7 b' test multiple flags for multiple patches' | |||||
2166 | Message-Id: <97d72e5f12c7e84f8506.62@*> (glob) |
|
2154 | Message-Id: <97d72e5f12c7e84f8506.62@*> (glob) | |
2167 | In-Reply-To: <patchbomb.60@*> (glob) |
|
2155 | In-Reply-To: <patchbomb.60@*> (glob) | |
2168 | References: <patchbomb.60@*> (glob) |
|
2156 | References: <patchbomb.60@*> (glob) | |
2169 |
X-Mercurial-Series-Id: < |
|
2157 | X-Mercurial-Series-Id: <8580ff50825a50c8f716.61@*> (glob) | |
2170 | User-Agent: Mercurial-patchbomb/* (glob) |
|
2158 | User-Agent: Mercurial-patchbomb/* (glob) | |
2171 | Date: Thu, 01 Jan 1970 00:01:02 +0000 |
|
2159 | Date: Thu, 01 Jan 1970 00:01:02 +0000 | |
2172 | From: quux |
|
2160 | From: quux | |
@@ -2326,7 +2314,6 b' test outgoing:' | |||||
2326 | Content-Transfer-Encoding: 7bit |
|
2314 | Content-Transfer-Encoding: 7bit | |
2327 | Subject: [PATCH 0 of 6] test |
|
2315 | Subject: [PATCH 0 of 6] test | |
2328 | Message-Id: <patchbomb.315532860@*> (glob) |
|
2316 | Message-Id: <patchbomb.315532860@*> (glob) | |
2329 | X-Mercurial-Series-Id: <patchbomb.315532860@*> (glob) |
|
|||
2330 | User-Agent: Mercurial-patchbomb/* (glob) |
|
2317 | User-Agent: Mercurial-patchbomb/* (glob) | |
2331 | Date: Tue, 01 Jan 1980 00:01:00 +0000 |
|
2318 | Date: Tue, 01 Jan 1980 00:01:00 +0000 | |
2332 | From: test |
|
2319 | From: test | |
@@ -2344,7 +2331,7 b' test outgoing:' | |||||
2344 | Message-Id: <ff2c9fa2018b15fa74b3.315532861@*> (glob) |
|
2331 | Message-Id: <ff2c9fa2018b15fa74b3.315532861@*> (glob) | |
2345 | In-Reply-To: <patchbomb.315532860@*> (glob) |
|
2332 | In-Reply-To: <patchbomb.315532860@*> (glob) | |
2346 | References: <patchbomb.315532860@*> (glob) |
|
2333 | References: <patchbomb.315532860@*> (glob) | |
2347 |
X-Mercurial-Series-Id: < |
|
2334 | X-Mercurial-Series-Id: <ff2c9fa2018b15fa74b3.315532861@*> (glob) | |
2348 | User-Agent: Mercurial-patchbomb/* (glob) |
|
2335 | User-Agent: Mercurial-patchbomb/* (glob) | |
2349 | Date: Tue, 01 Jan 1980 00:01:01 +0000 |
|
2336 | Date: Tue, 01 Jan 1980 00:01:01 +0000 | |
2350 | From: test |
|
2337 | From: test | |
@@ -2375,7 +2362,7 b' test outgoing:' | |||||
2375 | Message-Id: <909a00e13e9d78b575ae.315532862@*> (glob) |
|
2362 | Message-Id: <909a00e13e9d78b575ae.315532862@*> (glob) | |
2376 | In-Reply-To: <patchbomb.315532860@*> (glob) |
|
2363 | In-Reply-To: <patchbomb.315532860@*> (glob) | |
2377 | References: <patchbomb.315532860@*> (glob) |
|
2364 | References: <patchbomb.315532860@*> (glob) | |
2378 |
X-Mercurial-Series-Id: < |
|
2365 | X-Mercurial-Series-Id: <ff2c9fa2018b15fa74b3.315532861@*> (glob) | |
2379 | User-Agent: Mercurial-patchbomb/* (glob) |
|
2366 | User-Agent: Mercurial-patchbomb/* (glob) | |
2380 | Date: Tue, 01 Jan 1980 00:01:02 +0000 |
|
2367 | Date: Tue, 01 Jan 1980 00:01:02 +0000 | |
2381 | From: test |
|
2368 | From: test | |
@@ -2413,7 +2400,7 b' test outgoing:' | |||||
2413 | Message-Id: <a2ea8fc83dd8b93cfd86.315532863@*> (glob) |
|
2400 | Message-Id: <a2ea8fc83dd8b93cfd86.315532863@*> (glob) | |
2414 | In-Reply-To: <patchbomb.315532860@*> (glob) |
|
2401 | In-Reply-To: <patchbomb.315532860@*> (glob) | |
2415 | References: <patchbomb.315532860@*> (glob) |
|
2402 | References: <patchbomb.315532860@*> (glob) | |
2416 |
X-Mercurial-Series-Id: < |
|
2403 | X-Mercurial-Series-Id: <ff2c9fa2018b15fa74b3.315532861@*> (glob) | |
2417 | User-Agent: Mercurial-patchbomb/* (glob) |
|
2404 | User-Agent: Mercurial-patchbomb/* (glob) | |
2418 | Date: Tue, 01 Jan 1980 00:01:03 +0000 |
|
2405 | Date: Tue, 01 Jan 1980 00:01:03 +0000 | |
2419 | From: test |
|
2406 | From: test | |
@@ -2460,7 +2447,7 b' test outgoing:' | |||||
2460 | Message-Id: <240fb913fc1b7ff15ddb.315532864@*> (glob) |
|
2447 | Message-Id: <240fb913fc1b7ff15ddb.315532864@*> (glob) | |
2461 | In-Reply-To: <patchbomb.315532860@*> (glob) |
|
2448 | In-Reply-To: <patchbomb.315532860@*> (glob) | |
2462 | References: <patchbomb.315532860@*> (glob) |
|
2449 | References: <patchbomb.315532860@*> (glob) | |
2463 |
X-Mercurial-Series-Id: < |
|
2450 | X-Mercurial-Series-Id: <ff2c9fa2018b15fa74b3.315532861@*> (glob) | |
2464 | User-Agent: Mercurial-patchbomb/* (glob) |
|
2451 | User-Agent: Mercurial-patchbomb/* (glob) | |
2465 | Date: Tue, 01 Jan 1980 00:01:04 +0000 |
|
2452 | Date: Tue, 01 Jan 1980 00:01:04 +0000 | |
2466 | From: test |
|
2453 | From: test | |
@@ -2491,7 +2478,7 b' test outgoing:' | |||||
2491 | Message-Id: <5d5ef15dfe5e7bd3a4ee.315532865@*> (glob) |
|
2478 | Message-Id: <5d5ef15dfe5e7bd3a4ee.315532865@*> (glob) | |
2492 | In-Reply-To: <patchbomb.315532860@*> (glob) |
|
2479 | In-Reply-To: <patchbomb.315532860@*> (glob) | |
2493 | References: <patchbomb.315532860@*> (glob) |
|
2480 | References: <patchbomb.315532860@*> (glob) | |
2494 |
X-Mercurial-Series-Id: < |
|
2481 | X-Mercurial-Series-Id: <ff2c9fa2018b15fa74b3.315532861@*> (glob) | |
2495 | User-Agent: Mercurial-patchbomb/* (glob) |
|
2482 | User-Agent: Mercurial-patchbomb/* (glob) | |
2496 | Date: Tue, 01 Jan 1980 00:01:05 +0000 |
|
2483 | Date: Tue, 01 Jan 1980 00:01:05 +0000 | |
2497 | From: test |
|
2484 | From: test | |
@@ -2523,7 +2510,7 b' test outgoing:' | |||||
2523 | Message-Id: <2f9fa9b998c5fe3ac2bd.315532866@*> (glob) |
|
2510 | Message-Id: <2f9fa9b998c5fe3ac2bd.315532866@*> (glob) | |
2524 | In-Reply-To: <patchbomb.315532860@*> (glob) |
|
2511 | In-Reply-To: <patchbomb.315532860@*> (glob) | |
2525 | References: <patchbomb.315532860@*> (glob) |
|
2512 | References: <patchbomb.315532860@*> (glob) | |
2526 |
X-Mercurial-Series-Id: < |
|
2513 | X-Mercurial-Series-Id: <ff2c9fa2018b15fa74b3.315532861@*> (glob) | |
2527 | User-Agent: Mercurial-patchbomb/* (glob) |
|
2514 | User-Agent: Mercurial-patchbomb/* (glob) | |
2528 | Date: Tue, 01 Jan 1980 00:01:06 +0000 |
|
2515 | Date: Tue, 01 Jan 1980 00:01:06 +0000 | |
2529 | From: test |
|
2516 | From: test |
General Comments 0
You need to be logged in to leave comments.
Login now