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