##// END OF EJS Templates
debugextensions: show ships-with-hg-core state as a separate field...
Yuya Nishihara -
r29892:b64eaf94 default
parent child Browse files
Show More
@@ -2420,6 +2420,10 b' def debugextensions(ui, **opts):'
2420 2420 fm.condwrite(ui.verbose and extsource, 'source',
2421 2421 _(' location: %s\n'), extsource or "")
2422 2422
2423 if ui.verbose:
2424 fm.plain(_(' bundled: %s\n') % ['no', 'yes'][isinternal])
2425 fm.data(bundled=isinternal)
2426
2423 2427 fm.condwrite(ui.verbose and showtestedwith, 'testedwith',
2424 2428 _(' tested with: %s\n'),
2425 2429 fm.formatlist(showtestedwith, name='ver'))
@@ -32,66 +32,80 b''
32 32 $ hg debugextensions -v
33 33 color
34 34 location: */hgext/color.py* (glob)
35 bundled: yes
35 36 tested with: internal
36 37 ext1
37 38 location: */extwithoutinfos.py* (glob)
39 bundled: no
38 40 ext2
39 41 location: */extwithinfos.py* (glob)
42 bundled: no
40 43 tested with: 3.0 3.1 3.2.1
41 44 bug reporting: https://example.org/bts
42 45 histedit
43 46 location: */hgext/histedit.py* (glob)
47 bundled: yes
44 48 tested with: internal
45 49 mq
46 50 location: */hgext/mq.py* (glob)
51 bundled: yes
47 52 tested with: internal
48 53 patchbomb
49 54 location: */hgext/patchbomb.py* (glob)
55 bundled: yes
50 56 tested with: internal
51 57 rebase
52 58 location: */hgext/rebase.py* (glob)
59 bundled: yes
53 60 tested with: internal
54 61
55 62 $ hg debugextensions -Tjson | sed 's|\\\\|/|g'
56 63 [
57 64 {
58 65 "buglink": "",
66 "bundled": true,
59 67 "name": "color",
60 68 "source": "*/hgext/color.py*", (glob)
61 69 "testedwith": ["internal"]
62 70 },
63 71 {
64 72 "buglink": "",
73 "bundled": false,
65 74 "name": "ext1",
66 75 "source": "*/extwithoutinfos.py*", (glob)
67 76 "testedwith": []
68 77 },
69 78 {
70 79 "buglink": "https://example.org/bts",
80 "bundled": false,
71 81 "name": "ext2",
72 82 "source": "*/extwithinfos.py*", (glob)
73 83 "testedwith": ["3.0", "3.1", "3.2.1"]
74 84 },
75 85 {
76 86 "buglink": "",
87 "bundled": true,
77 88 "name": "histedit",
78 89 "source": "*/hgext/histedit.py*", (glob)
79 90 "testedwith": ["internal"]
80 91 },
81 92 {
82 93 "buglink": "",
94 "bundled": true,
83 95 "name": "mq",
84 96 "source": "*/hgext/mq.py*", (glob)
85 97 "testedwith": ["internal"]
86 98 },
87 99 {
88 100 "buglink": "",
101 "bundled": true,
89 102 "name": "patchbomb",
90 103 "source": "*/hgext/patchbomb.py*", (glob)
91 104 "testedwith": ["internal"]
92 105 },
93 106 {
94 107 "buglink": "",
108 "bundled": true,
95 109 "name": "rebase",
96 110 "source": "*/hgext/rebase.py*", (glob)
97 111 "testedwith": ["internal"]
General Comments 0
You need to be logged in to leave comments. Login now