-
Notifications
You must be signed in to change notification settings - Fork 128
/
mkdocs.yml
129 lines (122 loc) · 4.16 KB
/
mkdocs.yml
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
site_name: Thunder
site_url: https://rdkcentral.github.com/Thunder
repo_name: rdkcentral/Thunder
repo_url: https://github.com/rdkcentral/Thunder/
nav:
- Home: index.md
- Introduction:
- What is Thunder: introduction/intro.md
- Getting Started:
- Repository Structure: introduction/repos.md
- Linux Build: introduction/build_linux.md
- Windows Build: introduction/build_windows.md
- Configuration: introduction/config.md
- Basic Usage: introduction/usage.md
- Architecture:
- Overview: introduction/architecture/overview.md
- RPC Protocols:
- JSON-RPC: introduction/architecture/rpc/jsonrpc.md
- COM-RPC: introduction/architecture/rpc/comrpc.md
- Plugin Development:
- Introduction: plugin/intro.md
- Execution Modes:
- Introduction: plugin/execution-modes/execution-modes.md
- In Process: plugin/execution-modes/inprocess.md
- Out Of Process: plugin/execution-modes/outofprocess.md
- Distrubuted: plugin/execution-modes/distrubuted.md
- Containers:
- Introduction: plugin/execution-modes/containers/container.md
- Runc: plugin/execution-modes/containers/runc.md
- Lxc: plugin/execution-modes/containers/lxc.md
- Plugin Lifecycle: plugin/lifecycle.md
- Design Principles: plugin/principles.md
- Interfaces:
- Interface-Driven Development: plugin/interfaces/interfaces.md
- Documentation generation: plugin/interfaces/docs.md
- Guidelines: plugin/interfaces/guidelines.md
- Tags: plugin/interfaces/tags.md
- Configuration: plugin/config.md
- Error Handling: plugin/errors.md
- Versioning: plugin/versioning.md
- Messaging: plugin/messaging.md
- Subsystems: plugin/subsystems.md
- ProxyPool: plugin/proxypool.md
- Private COM-RPC : plugin/private-comrpc.md
- Split Implementation: plugin/split-implementation.md
- Composite Plugins: plugin/composite.md
- Common Utilities:
- Strings: utils/strings.md
- File Handling:
- Filesystem Interface: utils/files/files.md
- File Observer: utils/files/observer.md
- JSON Parser: utils/json.md
- Threading:
- Worker Pool: utils/threading/worker-pool.md
- Mutexes: utils/threading/mutex.md
- Time: utils/time.md
- Timers: utils/timers.md
- Web Requests: utils/web.md
- Sockets: utils/sockets.md
- Singletons: utils/singletons.md
- Processes: utils/processes.md
- Client Development:
- Introduction: client/intro.md
- JSON-RPC App: client/json-rpc.md
- COM-RPC App: client/com-rpc.md
- Debugging:
- Debug Tips: debugging/debug.md
- ThunderShark: debugging/thundershark.md
- Walkthrough:
- Hello World:
- Workspace setup: walkthrough/hello-world/setup.md
- Plugin development: walkthrough/hello-world/guide.md
- Client development:
- JSON-RPC: walkthrough/hello-world/client-jsonrpc.md
- COM-RPC: walkthrough/hello-world/client-comrpc.md
- Misc:
- Documentation: docs.md
- References: references/references.md
- Filing an Issue: issuetemplate/issuetemplate.md
markdown_extensions:
- admonition
- pymdownx.details
- def_list
- footnotes
- attr_list
- md_in_html
- toc:
toc_depth: 4
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
extra_css:
- stylesheets/extra.css
theme:
name: material
features:
- navigation.footer
- navigation.sections
- toc.follow
- navigation.top
- content.code.copy
- content.code.annotate
icon:
repo: fontawesome/brands/github
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode