##// END OF EJS Templates
patchbomb: lowercase status messages
Martin Geisler -
r16931:ee388b0a default
parent child Browse files
Show More
@@ -361,7 +361,7 b' def patchbomb(ui, repo, *revs, **opts):'
361 361 def getpatchmsgs(patches, patchnames=None):
362 362 msgs = []
363 363
364 ui.write(_('This patch series consists of %d patches.\n\n')
364 ui.write(_('this patch series consists of %d patches.\n\n')
365 365 % len(patches))
366 366
367 367 # build the intro message, or skip it if the user declines
@@ -526,7 +526,7 b' def patchbomb(ui, repo, *revs, **opts):'
526 526 if replyto:
527 527 m['Reply-To'] = ', '.join(replyto)
528 528 if opts.get('test'):
529 ui.status(_('Displaying '), subj, ' ...\n')
529 ui.status(_('displaying '), subj, ' ...\n')
530 530 ui.flush()
531 531 if 'PAGER' in os.environ and not ui.plain():
532 532 fp = util.popen(os.environ['PAGER'], 'w')
@@ -544,7 +544,7 b' def patchbomb(ui, repo, *revs, **opts):'
544 544 else:
545 545 if not sendmail:
546 546 sendmail = mail.connect(ui, mbox=mbox)
547 ui.status(_('Sending '), subj, ' ...\n')
547 ui.status(_('sending '), subj, ' ...\n')
548 548 ui.progress(_('sending'), i, item=subj, total=len(msgs))
549 549 if not mbox:
550 550 # Exim does not remove the Bcc field
@@ -8,10 +8,10 b''
8 8 adding a
9 9
10 10 $ hg email --date '1970-1-1 0:1' -n -f quux -t foo -c bar -r tip
11 This patch series consists of 1 patches.
11 this patch series consists of 1 patches.
12 12
13 13
14 Displaying [PATCH] a ...
14 displaying [PATCH] a ...
15 15 Content-Type: text/plain; charset="us-ascii"
16 16 MIME-Version: 1.0
17 17 Content-Transfer-Encoding: 7bit
@@ -41,7 +41,7 b''
41 41 $ hg --config ui.interactive=1 email --confirm -n -f quux -t foo -c bar -r tip<<EOF
42 42 > n
43 43 > EOF
44 This patch series consists of 1 patches.
44 this patch series consists of 1 patches.
45 45
46 46
47 47 Final summary:
@@ -61,13 +61,13 b''
61 61 adding b
62 62
63 63 $ hg email --date '1970-1-1 0:2' -n -f quux -t foo -c bar -s test -r 0:tip
64 This patch series consists of 2 patches.
64 this patch series consists of 2 patches.
65 65
66 66
67 67 Write the introductory message for the patch series.
68 68
69 69
70 Displaying [PATCH 0 of 2] test ...
70 displaying [PATCH 0 of 2] test ...
71 71 Content-Type: text/plain; charset="us-ascii"
72 72 MIME-Version: 1.0
73 73 Content-Transfer-Encoding: 7bit
@@ -80,7 +80,7 b''
80 80 Cc: bar
81 81
82 82
83 Displaying [PATCH 1 of 2] a ...
83 displaying [PATCH 1 of 2] a ...
84 84 Content-Type: text/plain; charset="us-ascii"
85 85 MIME-Version: 1.0
86 86 Content-Transfer-Encoding: 7bit
@@ -108,7 +108,7 b''
108 108 @@ -0,0 +1,1 @@
109 109 +a
110 110
111 Displaying [PATCH 2 of 2] b ...
111 displaying [PATCH 2 of 2] b ...
112 112 Content-Type: text/plain; charset="us-ascii"
113 113 MIME-Version: 1.0
114 114 Content-Transfer-Encoding: 7bit
@@ -151,7 +151,7 b''
151 151 > --config progress.delay=0 --config progress.refresh=0 \
152 152 > --config progress.width=60 2>&1 | \
153 153 > python "$TESTDIR/filtercr.py"
154 This patch series consists of 2 patches.
154 this patch series consists of 2 patches.
155 155
156 156
157 157 Write the introductory message for the patch series.
@@ -168,9 +168,9 b''
168 168 sending [=============================> ] 2/3
169 169 sending [=============================> ] 2/3
170 170 \r (esc)
171 Sending [PATCH 0 of 2] test ...
172 Sending [PATCH 1 of 2] a ...
173 Sending [PATCH 2 of 2] b ...
171 sending [PATCH 0 of 2] test ...
172 sending [PATCH 1 of 2] a ...
173 sending [PATCH 2 of 2] b ...
174 174
175 175
176 176 $ cd ..
@@ -194,7 +194,7 b' test bundle and description:'
194 194 searching for changes
195 195 1 changesets found
196 196
197 Displaying test ...
197 displaying test ...
198 198 Content-Type: multipart/mixed; boundary="===*" (glob)
199 199 MIME-Version: 1.0
200 200 Subject: test
@@ -237,10 +237,10 b' utf-8 patch:'
237 237
238 238 no mime encoding for email --test:
239 239 $ hg email --date '1970-1-1 0:4' -f quux -t foo -c bar -r tip -n
240 This patch series consists of 1 patches.
240 this patch series consists of 1 patches.
241 241
242 242
243 Displaying [PATCH] utf-8 content ...
243 displaying [PATCH] utf-8 content ...
244 244 Content-Type: text/plain; charset="us-ascii"
245 245 MIME-Version: 1.0
246 246 Content-Transfer-Encoding: 8bit
@@ -276,10 +276,10 b' no mime encoding for email --test:'
276 276
277 277 mime encoded mbox (base64):
278 278 $ hg email --date '1970-1-1 0:4' -f 'Q <quux>' -t foo -c bar -r tip -m mbox
279 This patch series consists of 1 patches.
279 this patch series consists of 1 patches.
280 280
281 281
282 Sending [PATCH] utf-8 content ...
282 sending [PATCH] utf-8 content ...
283 283
284 284 $ cat mbox
285 285 From quux ... ... .. ..:..:.. .... (re)
@@ -336,10 +336,10 b' mime encoded mbox (quoted-printable):'
336 336
337 337 no mime encoding for email --test:
338 338 $ hg email --date '1970-1-1 0:4' -f quux -t foo -c bar -r tip -n
339 This patch series consists of 1 patches.
339 this patch series consists of 1 patches.
340 340
341 341
342 Displaying [PATCH] long line ...
342 displaying [PATCH] long line ...
343 343 Content-Type: text/plain; charset="us-ascii"
344 344 MIME-Version: 1.0
345 345 Content-Transfer-Encoding: quoted-printable
@@ -384,10 +384,10 b' no mime encoding for email --test:'
384 384
385 385 mime encoded mbox (quoted-printable):
386 386 $ hg email --date '1970-1-1 0:4' -f quux -t foo -c bar -r tip -m mbox
387 This patch series consists of 1 patches.
387 this patch series consists of 1 patches.
388 388
389 389
390 Sending [PATCH] long line ...
390 sending [PATCH] long line ...
391 391 $ cat mbox
392 392 From quux ... ... .. ..:..:.. .... (re)
393 393 Content-Type: text/plain; charset="us-ascii"
@@ -442,10 +442,10 b' iso-8859-1 patch:'
442 442
443 443 fake ascii mbox:
444 444 $ hg email --date '1970-1-1 0:5' -f quux -t foo -c bar -r tip -m mbox
445 This patch series consists of 1 patches.
445 this patch series consists of 1 patches.
446 446
447 447
448 Sending [PATCH] isolatin 8-bit encoding ...
448 sending [PATCH] isolatin 8-bit encoding ...
449 449 $ cat mbox
450 450 From quux ... ... .. ..:..:.. .... (re)
451 451 Content-Type: text/plain; charset="us-ascii"
@@ -477,7 +477,7 b' fake ascii mbox:'
477 477
478 478 test diffstat for single patch:
479 479 $ hg email --date '1970-1-1 0:1' -n -f quux -t foo -c bar -s test -d -y -r 2
480 This patch series consists of 1 patches.
480 this patch series consists of 1 patches.
481 481
482 482
483 483 Final summary:
@@ -491,7 +491,7 b' test diffstat for single patch:'
491 491
492 492 are you sure you want to send (yn)? y
493 493
494 Displaying [PATCH] test ...
494 displaying [PATCH] test ...
495 495 Content-Type: text/plain; charset="us-ascii"
496 496 MIME-Version: 1.0
497 497 Content-Transfer-Encoding: 7bit
@@ -525,7 +525,7 b' test diffstat for single patch:'
525 525 test diffstat for multiple patches:
526 526 $ hg email --date '1970-1-1 0:1' -n -f quux -t foo -c bar -s test -d -y \
527 527 > -r 0:1
528 This patch series consists of 2 patches.
528 this patch series consists of 2 patches.
529 529
530 530
531 531 Write the introductory message for the patch series.
@@ -549,7 +549,7 b' test diffstat for multiple patches:'
549 549
550 550 are you sure you want to send (yn)? y
551 551
552 Displaying [PATCH 0 of 2] test ...
552 displaying [PATCH 0 of 2] test ...
553 553 Content-Type: text/plain; charset="us-ascii"
554 554 MIME-Version: 1.0
555 555 Content-Transfer-Encoding: 7bit
@@ -566,7 +566,7 b' test diffstat for multiple patches:'
566 566 b | 1 +
567 567 2 files changed, 2 insertions(+), 0 deletions(-)
568 568
569 Displaying [PATCH 1 of 2] a ...
569 displaying [PATCH 1 of 2] a ...
570 570 Content-Type: text/plain; charset="us-ascii"
571 571 MIME-Version: 1.0
572 572 Content-Transfer-Encoding: 7bit
@@ -598,7 +598,7 b' test diffstat for multiple patches:'
598 598 @@ -0,0 +1,1 @@
599 599 +a
600 600
601 Displaying [PATCH 2 of 2] b ...
601 displaying [PATCH 2 of 2] b ...
602 602 Content-Type: text/plain; charset="us-ascii"
603 603 MIME-Version: 1.0
604 604 Content-Transfer-Encoding: 7bit
@@ -633,10 +633,10 b' test diffstat for multiple patches:'
633 633
634 634 test inline for single patch:
635 635 $ hg email --date '1970-1-1 0:1' -n -f quux -t foo -c bar -s test -i -r 2
636 This patch series consists of 1 patches.
636 this patch series consists of 1 patches.
637 637
638 638
639 Displaying [PATCH] test ...
639 displaying [PATCH] test ...
640 640 Content-Type: multipart/mixed; boundary="===*" (glob)
641 641 MIME-Version: 1.0
642 642 Subject: [PATCH] test
@@ -672,10 +672,10 b' test inline for single patch:'
672 672
673 673 test inline for single patch (quoted-printable):
674 674 $ hg email --date '1970-1-1 0:1' -n -f quux -t foo -c bar -s test -i -r 4
675 This patch series consists of 1 patches.
675 this patch series consists of 1 patches.
676 676
677 677
678 Displaying [PATCH] test ...
678 displaying [PATCH] test ...
679 679 Content-Type: multipart/mixed; boundary="===*" (glob)
680 680 MIME-Version: 1.0
681 681 Subject: [PATCH] test
@@ -727,13 +727,13 b' test inline for single patch (quoted-pri'
727 727 test inline for multiple patches:
728 728 $ hg email --date '1970-1-1 0:1' -n -f quux -t foo -c bar -s test -i \
729 729 > -r 0:1 -r 4
730 This patch series consists of 3 patches.
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 Displaying [PATCH 0 of 3] test ...
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
@@ -746,7 +746,7 b' test inline for multiple patches:'
746 746 Cc: bar
747 747
748 748
749 Displaying [PATCH 1 of 3] a ...
749 displaying [PATCH 1 of 3] a ...
750 750 Content-Type: multipart/mixed; boundary="===*" (glob)
751 751 MIME-Version: 1.0
752 752 Subject: [PATCH 1 of 3] a
@@ -780,7 +780,7 b' test inline for multiple patches:'
780 780 +a
781 781
782 782 --===*-- (glob)
783 Displaying [PATCH 2 of 3] b ...
783 displaying [PATCH 2 of 3] b ...
784 784 Content-Type: multipart/mixed; boundary="===*" (glob)
785 785 MIME-Version: 1.0
786 786 Subject: [PATCH 2 of 3] b
@@ -814,7 +814,7 b' test inline for multiple patches:'
814 814 +b
815 815
816 816 --===*-- (glob)
817 Displaying [PATCH 3 of 3] long line ...
817 displaying [PATCH 3 of 3] long line ...
818 818 Content-Type: multipart/mixed; boundary="===*" (glob)
819 819 MIME-Version: 1.0
820 820 Subject: [PATCH 3 of 3] long line
@@ -867,10 +867,10 b' test inline for multiple patches:'
867 867
868 868 test attach for single patch:
869 869 $ hg email --date '1970-1-1 0:1' -n -f quux -t foo -c bar -s test -a -r 2
870 This patch series consists of 1 patches.
870 this patch series consists of 1 patches.
871 871
872 872
873 Displaying [PATCH] test ...
873 displaying [PATCH] test ...
874 874 Content-Type: multipart/mixed; boundary="===*" (glob)
875 875 MIME-Version: 1.0
876 876 Subject: [PATCH] test
@@ -914,10 +914,10 b' test attach for single patch:'
914 914
915 915 test attach for single patch (quoted-printable):
916 916 $ hg email --date '1970-1-1 0:1' -n -f quux -t foo -c bar -s test -a -r 4
917 This patch series consists of 1 patches.
917 this patch series consists of 1 patches.
918 918
919 919
920 Displaying [PATCH] test ...
920 displaying [PATCH] test ...
921 921 Content-Type: multipart/mixed; boundary="===*" (glob)
922 922 MIME-Version: 1.0
923 923 Subject: [PATCH] test
@@ -977,10 +977,10 b' test attach for single patch (quoted-pri'
977 977
978 978 test attach and body for single patch:
979 979 $ hg email --date '1970-1-1 0:1' -n -f quux -t foo -c bar -s test -a --body -r 2
980 This patch series consists of 1 patches.
980 this patch series consists of 1 patches.
981 981
982 982
983 Displaying [PATCH] test ...
983 displaying [PATCH] test ...
984 984 Content-Type: multipart/mixed; boundary="===*" (glob)
985 985 MIME-Version: 1.0
986 986 Subject: [PATCH] test
@@ -1034,13 +1034,13 b' test attach and body for single patch:'
1034 1034 test attach for multiple patches:
1035 1035 $ hg email --date '1970-1-1 0:1' -n -f quux -t foo -c bar -s test -a \
1036 1036 > -r 0:1 -r 4
1037 This patch series consists of 3 patches.
1037 this patch series consists of 3 patches.
1038 1038
1039 1039
1040 1040 Write the introductory message for the patch series.
1041 1041
1042 1042
1043 Displaying [PATCH 0 of 3] test ...
1043 displaying [PATCH 0 of 3] test ...
1044 1044 Content-Type: text/plain; charset="us-ascii"
1045 1045 MIME-Version: 1.0
1046 1046 Content-Transfer-Encoding: 7bit
@@ -1053,7 +1053,7 b' test attach for multiple patches:'
1053 1053 Cc: bar
1054 1054
1055 1055
1056 Displaying [PATCH 1 of 3] a ...
1056 displaying [PATCH 1 of 3] a ...
1057 1057 Content-Type: multipart/mixed; boundary="===*" (glob)
1058 1058 MIME-Version: 1.0
1059 1059 Subject: [PATCH 1 of 3] a
@@ -1096,7 +1096,7 b' test attach for multiple patches:'
1096 1096 +a
1097 1097
1098 1098 --===*-- (glob)
1099 Displaying [PATCH 2 of 3] b ...
1099 displaying [PATCH 2 of 3] b ...
1100 1100 Content-Type: multipart/mixed; boundary="===*" (glob)
1101 1101 MIME-Version: 1.0
1102 1102 Subject: [PATCH 2 of 3] b
@@ -1139,7 +1139,7 b' test attach for multiple patches:'
1139 1139 +b
1140 1140
1141 1141 --===*-- (glob)
1142 Displaying [PATCH 3 of 3] long line ...
1142 displaying [PATCH 3 of 3] long line ...
1143 1143 Content-Type: multipart/mixed; boundary="===*" (glob)
1144 1144 MIME-Version: 1.0
1145 1145 Subject: [PATCH 3 of 3] long line
@@ -1202,13 +1202,13 b' test attach for multiple patches:'
1202 1202 test intro for single patch:
1203 1203 $ hg email --date '1970-1-1 0:1' -n --intro -f quux -t foo -c bar -s test \
1204 1204 > -r 2
1205 This patch series consists of 1 patches.
1205 this patch series consists of 1 patches.
1206 1206
1207 1207
1208 1208 Write the introductory message for the patch series.
1209 1209
1210 1210
1211 Displaying [PATCH 0 of 1] test ...
1211 displaying [PATCH 0 of 1] test ...
1212 1212 Content-Type: text/plain; charset="us-ascii"
1213 1213 MIME-Version: 1.0
1214 1214 Content-Transfer-Encoding: 7bit
@@ -1221,7 +1221,7 b' test intro for single patch:'
1221 1221 Cc: bar
1222 1222
1223 1223
1224 Displaying [PATCH 1 of 1] c ...
1224 displaying [PATCH 1 of 1] c ...
1225 1225 Content-Type: text/plain; charset="us-ascii"
1226 1226 MIME-Version: 1.0
1227 1227 Content-Transfer-Encoding: 7bit
@@ -1254,10 +1254,10 b' test --desc without --intro for a single'
1254 1254 $ echo foo > intro.text
1255 1255 $ hg email --date '1970-1-1 0:1' -n --desc intro.text -f quux -t foo -c bar \
1256 1256 > -s test -r 2
1257 This patch series consists of 1 patches.
1257 this patch series consists of 1 patches.
1258 1258
1259 1259
1260 Displaying [PATCH 0 of 1] test ...
1260 displaying [PATCH 0 of 1] test ...
1261 1261 Content-Type: text/plain; charset="us-ascii"
1262 1262 MIME-Version: 1.0
1263 1263 Content-Transfer-Encoding: 7bit
@@ -1271,7 +1271,7 b' test --desc without --intro for a single'
1271 1271
1272 1272 foo
1273 1273
1274 Displaying [PATCH 1 of 1] c ...
1274 displaying [PATCH 1 of 1] c ...
1275 1275 Content-Type: text/plain; charset="us-ascii"
1276 1276 MIME-Version: 1.0
1277 1277 Content-Transfer-Encoding: 7bit
@@ -1303,13 +1303,13 b' test --desc without --intro for a single'
1303 1303 test intro for multiple patches:
1304 1304 $ hg email --date '1970-1-1 0:1' -n --intro -f quux -t foo -c bar -s test \
1305 1305 > -r 0:1
1306 This patch series consists of 2 patches.
1306 this patch series consists of 2 patches.
1307 1307
1308 1308
1309 1309 Write the introductory message for the patch series.
1310 1310
1311 1311
1312 Displaying [PATCH 0 of 2] test ...
1312 displaying [PATCH 0 of 2] test ...
1313 1313 Content-Type: text/plain; charset="us-ascii"
1314 1314 MIME-Version: 1.0
1315 1315 Content-Transfer-Encoding: 7bit
@@ -1322,7 +1322,7 b' test intro for multiple patches:'
1322 1322 Cc: bar
1323 1323
1324 1324
1325 Displaying [PATCH 1 of 2] a ...
1325 displaying [PATCH 1 of 2] a ...
1326 1326 Content-Type: text/plain; charset="us-ascii"
1327 1327 MIME-Version: 1.0
1328 1328 Content-Transfer-Encoding: 7bit
@@ -1350,7 +1350,7 b' test intro for multiple patches:'
1350 1350 @@ -0,0 +1,1 @@
1351 1351 +a
1352 1352
1353 Displaying [PATCH 2 of 2] b ...
1353 displaying [PATCH 2 of 2] b ...
1354 1354 Content-Type: text/plain; charset="us-ascii"
1355 1355 MIME-Version: 1.0
1356 1356 Content-Transfer-Encoding: 7bit
@@ -1382,10 +1382,10 b' test intro for multiple patches:'
1382 1382 test reply-to via config:
1383 1383 $ hg email --date '1970-1-1 0:1' -n -f quux -t foo -c bar -s test -r 2 \
1384 1384 > --config patchbomb.reply-to='baz@example.com'
1385 This patch series consists of 1 patches.
1385 this patch series consists of 1 patches.
1386 1386
1387 1387
1388 Displaying [PATCH] test ...
1388 displaying [PATCH] test ...
1389 1389 Content-Type: text/plain; charset="us-ascii"
1390 1390 MIME-Version: 1.0
1391 1391 Content-Transfer-Encoding: 7bit
@@ -1416,10 +1416,10 b' test reply-to via config:'
1416 1416 test reply-to via command line:
1417 1417 $ hg email --date '1970-1-1 0:1' -n -f quux -t foo -c bar -s test -r 2 \
1418 1418 > --reply-to baz --reply-to fred
1419 This patch series consists of 1 patches.
1419 this patch series consists of 1 patches.
1420 1420
1421 1421
1422 Displaying [PATCH] test ...
1422 displaying [PATCH] test ...
1423 1423 Content-Type: text/plain; charset="us-ascii"
1424 1424 MIME-Version: 1.0
1425 1425 Content-Transfer-Encoding: 7bit
@@ -1454,10 +1454,10 b' tagging csets:'
1454 1454
1455 1455 test inline for single named patch:
1456 1456 $ hg email --date '1970-1-1 0:1' -n -f quux -t foo -c bar -s test -i -r 2
1457 This patch series consists of 1 patches.
1457 this patch series consists of 1 patches.
1458 1458
1459 1459
1460 Displaying [PATCH] test ...
1460 displaying [PATCH] test ...
1461 1461 Content-Type: multipart/mixed; boundary="===*" (glob)
1462 1462 MIME-Version: 1.0
1463 1463 Subject: [PATCH] test
@@ -1492,13 +1492,13 b' test inline for single named patch:'
1492 1492
1493 1493 test inline for multiple named/unnamed patches:
1494 1494 $ hg email --date '1970-1-1 0:1' -n -f quux -t foo -c bar -s test -i -r 0:1
1495 This patch series consists of 2 patches.
1495 this patch series consists of 2 patches.
1496 1496
1497 1497
1498 1498 Write the introductory message for the patch series.
1499 1499
1500 1500
1501 Displaying [PATCH 0 of 2] test ...
1501 displaying [PATCH 0 of 2] test ...
1502 1502 Content-Type: text/plain; charset="us-ascii"
1503 1503 MIME-Version: 1.0
1504 1504 Content-Transfer-Encoding: 7bit
@@ -1511,7 +1511,7 b' test inline for multiple named/unnamed p'
1511 1511 Cc: bar
1512 1512
1513 1513
1514 Displaying [PATCH 1 of 2] a ...
1514 displaying [PATCH 1 of 2] a ...
1515 1515 Content-Type: multipart/mixed; boundary="===*" (glob)
1516 1516 MIME-Version: 1.0
1517 1517 Subject: [PATCH 1 of 2] a
@@ -1545,7 +1545,7 b' test inline for multiple named/unnamed p'
1545 1545 +a
1546 1546
1547 1547 --===*-- (glob)
1548 Displaying [PATCH 2 of 2] b ...
1548 displaying [PATCH 2 of 2] b ...
1549 1549 Content-Type: multipart/mixed; boundary="===*" (glob)
1550 1550 MIME-Version: 1.0
1551 1551 Subject: [PATCH 2 of 2] b
@@ -1584,10 +1584,10 b' test inline for multiple named/unnamed p'
1584 1584 test inreplyto:
1585 1585 $ hg email --date '1970-1-1 0:1' -n -f quux -t foo -c bar --in-reply-to baz \
1586 1586 > -r tip
1587 This patch series consists of 1 patches.
1587 this patch series consists of 1 patches.
1588 1588
1589 1589
1590 Displaying [PATCH] Added tag two, two.diff for changeset ff2c9fa2018b ...
1590 displaying [PATCH] Added tag two, two.diff for changeset ff2c9fa2018b ...
1591 1591 Content-Type: text/plain; charset="us-ascii"
1592 1592 MIME-Version: 1.0
1593 1593 Content-Transfer-Encoding: 7bit
@@ -1622,11 +1622,11 b' test inreplyto:'
1622 1622 no intro message in non-interactive mode
1623 1623 $ hg email --date '1970-1-1 0:1' -n -f quux -t foo -c bar --in-reply-to baz \
1624 1624 > -r 0:1
1625 This patch series consists of 2 patches.
1625 this patch series consists of 2 patches.
1626 1626
1627 1627 (optional) Subject: [PATCH 0 of 2]
1628 1628
1629 Displaying [PATCH 1 of 2] a ...
1629 displaying [PATCH 1 of 2] a ...
1630 1630 Content-Type: text/plain; charset="us-ascii"
1631 1631 MIME-Version: 1.0
1632 1632 Content-Transfer-Encoding: 7bit
@@ -1654,7 +1654,7 b' no intro message in non-interactive mode'
1654 1654 @@ -0,0 +1,1 @@
1655 1655 +a
1656 1656
1657 Displaying [PATCH 2 of 2] b ...
1657 displaying [PATCH 2 of 2] b ...
1658 1658 Content-Type: text/plain; charset="us-ascii"
1659 1659 MIME-Version: 1.0
1660 1660 Content-Transfer-Encoding: 7bit
@@ -1687,13 +1687,13 b' no intro message in non-interactive mode'
1687 1687
1688 1688 $ hg email --date '1970-1-1 0:1' -n -f quux -t foo -c bar --in-reply-to baz \
1689 1689 > -s test -r 0:1
1690 This patch series consists of 2 patches.
1690 this patch series consists of 2 patches.
1691 1691
1692 1692
1693 1693 Write the introductory message for the patch series.
1694 1694
1695 1695
1696 Displaying [PATCH 0 of 2] test ...
1696 displaying [PATCH 0 of 2] test ...
1697 1697 Content-Type: text/plain; charset="us-ascii"
1698 1698 MIME-Version: 1.0
1699 1699 Content-Transfer-Encoding: 7bit
@@ -1708,7 +1708,7 b' no intro message in non-interactive mode'
1708 1708 Cc: bar
1709 1709
1710 1710
1711 Displaying [PATCH 1 of 2] a ...
1711 displaying [PATCH 1 of 2] a ...
1712 1712 Content-Type: text/plain; charset="us-ascii"
1713 1713 MIME-Version: 1.0
1714 1714 Content-Transfer-Encoding: 7bit
@@ -1736,7 +1736,7 b' no intro message in non-interactive mode'
1736 1736 @@ -0,0 +1,1 @@
1737 1737 +a
1738 1738
1739 Displaying [PATCH 2 of 2] b ...
1739 displaying [PATCH 2 of 2] b ...
1740 1740 Content-Type: text/plain; charset="us-ascii"
1741 1741 MIME-Version: 1.0
1742 1742 Content-Transfer-Encoding: 7bit
@@ -1768,10 +1768,10 b' no intro message in non-interactive mode'
1768 1768 test single flag for single patch:
1769 1769 $ hg email --date '1970-1-1 0:1' -n --flag fooFlag -f quux -t foo -c bar -s test \
1770 1770 > -r 2
1771 This patch series consists of 1 patches.
1771 this patch series consists of 1 patches.
1772 1772
1773 1773
1774 Displaying [PATCH fooFlag] test ...
1774 displaying [PATCH fooFlag] test ...
1775 1775 Content-Type: text/plain; charset="us-ascii"
1776 1776 MIME-Version: 1.0
1777 1777 Content-Transfer-Encoding: 7bit
@@ -1801,13 +1801,13 b' test single flag for single patch:'
1801 1801 test single flag for multiple patches:
1802 1802 $ hg email --date '1970-1-1 0:1' -n --flag fooFlag -f quux -t foo -c bar -s test \
1803 1803 > -r 0:1
1804 This patch series consists of 2 patches.
1804 this patch series consists of 2 patches.
1805 1805
1806 1806
1807 1807 Write the introductory message for the patch series.
1808 1808
1809 1809
1810 Displaying [PATCH 0 of 2 fooFlag] test ...
1810 displaying [PATCH 0 of 2 fooFlag] test ...
1811 1811 Content-Type: text/plain; charset="us-ascii"
1812 1812 MIME-Version: 1.0
1813 1813 Content-Transfer-Encoding: 7bit
@@ -1820,7 +1820,7 b' test single flag for multiple patches:'
1820 1820 Cc: bar
1821 1821
1822 1822
1823 Displaying [PATCH 1 of 2 fooFlag] a ...
1823 displaying [PATCH 1 of 2 fooFlag] a ...
1824 1824 Content-Type: text/plain; charset="us-ascii"
1825 1825 MIME-Version: 1.0
1826 1826 Content-Transfer-Encoding: 7bit
@@ -1848,7 +1848,7 b' test single flag for multiple patches:'
1848 1848 @@ -0,0 +1,1 @@
1849 1849 +a
1850 1850
1851 Displaying [PATCH 2 of 2 fooFlag] b ...
1851 displaying [PATCH 2 of 2 fooFlag] b ...
1852 1852 Content-Type: text/plain; charset="us-ascii"
1853 1853 MIME-Version: 1.0
1854 1854 Content-Transfer-Encoding: 7bit
@@ -1880,10 +1880,10 b' test single flag for multiple patches:'
1880 1880 test mutiple flags for single patch:
1881 1881 $ hg email --date '1970-1-1 0:1' -n --flag fooFlag --flag barFlag -f quux -t foo \
1882 1882 > -c bar -s test -r 2
1883 This patch series consists of 1 patches.
1883 this patch series consists of 1 patches.
1884 1884
1885 1885
1886 Displaying [PATCH fooFlag barFlag] test ...
1886 displaying [PATCH fooFlag barFlag] test ...
1887 1887 Content-Type: text/plain; charset="us-ascii"
1888 1888 MIME-Version: 1.0
1889 1889 Content-Transfer-Encoding: 7bit
@@ -1913,13 +1913,13 b' test mutiple flags for single patch:'
1913 1913 test multiple flags for multiple patches:
1914 1914 $ hg email --date '1970-1-1 0:1' -n --flag fooFlag --flag barFlag -f quux -t foo \
1915 1915 > -c bar -s test -r 0:1
1916 This patch series consists of 2 patches.
1916 this patch series consists of 2 patches.
1917 1917
1918 1918
1919 1919 Write the introductory message for the patch series.
1920 1920
1921 1921
1922 Displaying [PATCH 0 of 2 fooFlag barFlag] test ...
1922 displaying [PATCH 0 of 2 fooFlag barFlag] test ...
1923 1923 Content-Type: text/plain; charset="us-ascii"
1924 1924 MIME-Version: 1.0
1925 1925 Content-Transfer-Encoding: 7bit
@@ -1932,7 +1932,7 b' test multiple flags for multiple patches'
1932 1932 Cc: bar
1933 1933
1934 1934
1935 Displaying [PATCH 1 of 2 fooFlag barFlag] a ...
1935 displaying [PATCH 1 of 2 fooFlag barFlag] a ...
1936 1936 Content-Type: text/plain; charset="us-ascii"
1937 1937 MIME-Version: 1.0
1938 1938 Content-Transfer-Encoding: 7bit
@@ -1960,7 +1960,7 b' test multiple flags for multiple patches'
1960 1960 @@ -0,0 +1,1 @@
1961 1961 +a
1962 1962
1963 Displaying [PATCH 2 of 2 fooFlag barFlag] b ...
1963 displaying [PATCH 2 of 2 fooFlag barFlag] b ...
1964 1964 Content-Type: text/plain; charset="us-ascii"
1965 1965 MIME-Version: 1.0
1966 1966 Content-Transfer-Encoding: 7bit
@@ -1993,10 +1993,10 b' test multi-address parsing:'
1993 1993 $ hg email --date '1980-1-1 0:1' -m tmp.mbox -f quux -t 'spam<spam><eggs>' \
1994 1994 > -t toast -c 'foo,bar@example.com' -c '"A, B <>" <a@example.com>' -s test -r 0 \
1995 1995 > --config email.bcc='"Quux, A." <quux>'
1996 This patch series consists of 1 patches.
1996 this patch series consists of 1 patches.
1997 1997
1998 1998
1999 Sending [PATCH] test ...
1999 sending [PATCH] test ...
2000 2000 $ cat < tmp.mbox
2001 2001 From quux ... ... .. ..:..:.. .... (re)
2002 2002 Content-Type: text/plain; charset="us-ascii"
@@ -2032,11 +2032,11 b' test multi-byte domain parsing:'
2032 2032 $ HGENCODING=iso-8859-1
2033 2033 $ export HGENCODING
2034 2034 $ hg email --date '1980-1-1 0:1' -m tmp.mbox -f quux -t "bar@${UUML}nicode.com" -s test -r 0
2035 This patch series consists of 1 patches.
2035 this patch series consists of 1 patches.
2036 2036
2037 2037 Cc:
2038 2038
2039 Sending [PATCH] test ...
2039 sending [PATCH] test ...
2040 2040
2041 2041 $ cat tmp.mbox
2042 2042 From quux ... ... .. ..:..:.. .... (re)
@@ -2081,14 +2081,14 b' test outgoing:'
2081 2081 comparing with ../t
2082 2082 searching for changes
2083 2083 From [test]: test
2084 This patch series consists of 8 patches.
2084 this patch series consists of 8 patches.
2085 2085
2086 2086
2087 2087 Write the introductory message for the patch series.
2088 2088
2089 2089 Cc:
2090 2090
2091 Displaying [PATCH 0 of 8] test ...
2091 displaying [PATCH 0 of 8] test ...
2092 2092 Content-Type: text/plain; charset="us-ascii"
2093 2093 MIME-Version: 1.0
2094 2094 Content-Transfer-Encoding: 7bit
@@ -2100,7 +2100,7 b' test outgoing:'
2100 2100 To: foo
2101 2101
2102 2102
2103 Displaying [PATCH 1 of 8] c ...
2103 displaying [PATCH 1 of 8] c ...
2104 2104 Content-Type: text/plain; charset="us-ascii"
2105 2105 MIME-Version: 1.0
2106 2106 Content-Transfer-Encoding: 7bit
@@ -2127,7 +2127,7 b' test outgoing:'
2127 2127 @@ -0,0 +1,1 @@
2128 2128 +c
2129 2129
2130 Displaying [PATCH 2 of 8] utf-8 content ...
2130 displaying [PATCH 2 of 8] utf-8 content ...
2131 2131 Content-Type: text/plain; charset="us-ascii"
2132 2132 MIME-Version: 1.0
2133 2133 Content-Transfer-Encoding: 8bit
@@ -2161,7 +2161,7 b' test outgoing:'
2161 2161 @@ -0,0 +1,1 @@
2162 2162 +h\xc3\xb6mma! (esc)
2163 2163
2164 Displaying [PATCH 3 of 8] long line ...
2164 displaying [PATCH 3 of 8] long line ...
2165 2165 Content-Type: text/plain; charset="us-ascii"
2166 2166 MIME-Version: 1.0
2167 2167 Content-Transfer-Encoding: quoted-printable
@@ -2204,7 +2204,7 b' test outgoing:'
2204 2204 +
2205 2205 +bar
2206 2206
2207 Displaying [PATCH 4 of 8] isolatin 8-bit encoding ...
2207 displaying [PATCH 4 of 8] isolatin 8-bit encoding ...
2208 2208 Content-Type: text/plain; charset="us-ascii"
2209 2209 MIME-Version: 1.0
2210 2210 Content-Transfer-Encoding: 8bit
@@ -2231,7 +2231,7 b' test outgoing:'
2231 2231 @@ -0,0 +1,1 @@
2232 2232 +h\xf6mma! (esc)
2233 2233
2234 Displaying [PATCH 5 of 8] Added tag zero, zero.foo for changeset 8580ff50825a ...
2234 displaying [PATCH 5 of 8] Added tag zero, zero.foo for changeset 8580ff50825a ...
2235 2235 Content-Type: text/plain; charset="us-ascii"
2236 2236 MIME-Version: 1.0
2237 2237 Content-Transfer-Encoding: 7bit
@@ -2259,7 +2259,7 b' test outgoing:'
2259 2259 +8580ff50825a50c8f716709acdf8de0deddcd6ab zero
2260 2260 +8580ff50825a50c8f716709acdf8de0deddcd6ab zero.foo
2261 2261
2262 Displaying [PATCH 6 of 8] Added tag one, one.patch for changeset 97d72e5f12c7 ...
2262 displaying [PATCH 6 of 8] Added tag one, one.patch for changeset 97d72e5f12c7 ...
2263 2263 Content-Type: text/plain; charset="us-ascii"
2264 2264 MIME-Version: 1.0
2265 2265 Content-Transfer-Encoding: 7bit
@@ -2289,7 +2289,7 b' test outgoing:'
2289 2289 +97d72e5f12c7e84f85064aa72e5a297142c36ed9 one
2290 2290 +97d72e5f12c7e84f85064aa72e5a297142c36ed9 one.patch
2291 2291
2292 Displaying [PATCH 7 of 8] Added tag two, two.diff for changeset ff2c9fa2018b ...
2292 displaying [PATCH 7 of 8] Added tag two, two.diff for changeset ff2c9fa2018b ...
2293 2293 Content-Type: text/plain; charset="us-ascii"
2294 2294 MIME-Version: 1.0
2295 2295 Content-Transfer-Encoding: 7bit
@@ -2320,7 +2320,7 b' test outgoing:'
2320 2320 +ff2c9fa2018b15fa74b33363bda9527323e2a99f two
2321 2321 +ff2c9fa2018b15fa74b33363bda9527323e2a99f two.diff
2322 2322
2323 Displaying [PATCH 8 of 8] d ...
2323 displaying [PATCH 8 of 8] d ...
2324 2324 Content-Type: text/plain; charset="us-ascii"
2325 2325 MIME-Version: 1.0
2326 2326 Content-Transfer-Encoding: 7bit
@@ -2354,11 +2354,11 b' dest#branch URIs:'
2354 2354 comparing with ../t
2355 2355 searching for changes
2356 2356 From [test]: test
2357 This patch series consists of 1 patches.
2357 this patch series consists of 1 patches.
2358 2358
2359 2359 Cc:
2360 2360
2361 Displaying [PATCH] test ...
2361 displaying [PATCH] test ...
2362 2362 Content-Type: text/plain; charset="us-ascii"
2363 2363 MIME-Version: 1.0
2364 2364 Content-Transfer-Encoding: 7bit
General Comments 0
You need to be logged in to leave comments. Login now