-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdummy_data.py
More file actions
98 lines (89 loc) · 3.75 KB
/
dummy_data.py
File metadata and controls
98 lines (89 loc) · 3.75 KB
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
dummy_data = {
'CONTRIBUTING.md' : {
'Subheaders':{
'Code of Conduct':{
'links': {},
'summary':'Contains code of conduct'
},
'Contributor Guide':{
'links': {},
'summary':'Contains contributors guide'
},
'Setting up the dev environment':{
'links': {},
'summary':'How to setup the development environment?'
},
'Styling Code':{
'links': {
'C++':'link to C++',
'Objective C':'link to Objective C',
'Java':'link to Java'
},
'summary':'Contains the guide for how to style the code.'
},
'Testing':{
'links': {
'Tree hygiene':'link to Tree hygiene',
'Testing the engine wiki':'link to Testing the Engine wiki',
'Skia Gold':'link to Skia Gold'
},
'summary':'Contains instruction for setting up the testing environment.'
},
},
'Summary':{
'The document provides detailed instructions for contributing to the Flutter Plugin for IntelliJ. It covers various aspects including setting up development environments, running tests, adding platform sources, working with Android Studio, embedding DevTools, and signing commits.'
},
'Graph': '''flowchart LR
%%{init:{'flowchart':{'nodeSpacing': 80, 'rankSpacing': 30}}}%%
A(Contribute to Flutter)-->B(Code of Conduct)
A-->D(Contributor Guide)
A-->E(Setting up the dev environment)
A-->F(Styling Code)
A-->G(Testing)
F-->F1(C++)
F-->F2(Objective C)
F-->F3(Java)
G-->G1(Tree hygiene)
G-->G2(Testing the engine wiki)
G-->G3(Skia Gold)
'''
},
#C++, Objective C, Java won't have any data since it leads to external link.
'link to C++' : {},
'link to Objective C' : {},
'link to Java' : {},
'link to Testing the Engine wiki' : {
'Subheaders':{
'C++ Core engine':{
'links': {},
'summary':'Contains code of conduct'
},
'Java Android Embedding':{
'links': {},
'summary':'Contains contributors guide'
},
'Objective C iOS embedding':{
'links': {},
'summary':'How to setup the development environment?'
},
'Dart dart-ui':{
'links': {},
'summary':'Contains the guide for how to style the code.'
},
'Web Engine':{
'links': {},
'summary':'Contains instruction for setting up the testing environment.'
},
},
'Summary':{
'The document provides detailed information about the Engine.'
},
'Graph': '''
G2-->G2a(C++ Core Engine)
G2-->G2b(Java Android embedding)
G2-->G2c(Objective C iOS embedding)
G2-->G2d(Dart dart-ui)
G2-->G2e(Web Engine)
'''
},
}