-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtree.json
113 lines (113 loc) · 5.85 KB
/
tree.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[
{
"property": "project",
"icon": "beaker",
"children": [
{
"property": "branch",
"label": "branch: ${branch}",
"icon": "git-branch",
"sort": true,
"children": [
{
"property": "status",
"sort": true,
"children": [
{
"property": "subject",
"sort": true,
"icon": "overallScore",
"showChanged": true,
"label": "${number} ${subject}",
"hasContextMenu": true,
"tooltip": "${commitMessage}",
"children": [
{
"property": "patchSets.number",
"label": "Patch Set ${patchSets.number}",
"sort": true,
"children": [
{
"property": "patchSets.comments.file",
"tooltip": "${patchSets.comments.file}",
"label": "${patchSets.comments.file}",
"icon": "comment",
"command": "fetch",
"arguments": [
"${patchSets.comments.file}",
"${patchSets.revision}",
"${number}",
"${patchSets.number}"
],
"children": [
{
"parent": "file",
"property": "patchSets.comments.message",
"label": "line ${patchSets.comments.line}, ${patchSets.comments.reviewer.username}: ${patchSets.comments.message}",
"tooltip": "${patchSets.comments.message}"
}
]
},
{
"property": "patchSets.files.file",
"tooltip": "${patchSets.files.file}",
"label": "${patchSets.files.type} ${patchSets.files.file}"
}
]
},
{
"property": "currentPatchSet.number",
"sort": true,
"label": "Patch set: ${currentPatchSet.number}",
"showChanged": true
},
{
"property": "currentPatchSet.approvals.by.name",
"sort": true,
"icon": "score",
"tooltip": "${currentPatchSet.approvals.by.email}",
"showChanged": true
},
{
"property": "id",
"label": "ID: ${id}"
},
{
"property": "createdOn",
"formatter": "created"
},
{
"property": "lastUpdated",
"sort": true,
"formatter": "updated",
"showChanged": true
},
{
"property": "owner.name",
"label": "Owner: ${owner.name} (${owner.username})",
"children": [
{
"property": "owner.email"
}
]
},
{
"property": "comments",
"label": "Comments",
"showChanged": true,
"children": [
{
"property": "comments.message",
"tooltip": "${comments.message}"
}
]
}
]
}
]
}
]
}
]
}
]