forked from LectureSight/lecturesight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
81 lines (67 loc) · 2.26 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
site_name: LectureSight
repo_url: https://bitbucket.org/bwulff/lecturesight/
edit_uri: src/0.3-sprint/docs/
# Default theme used is readthedocs
theme:
name: material
logo: 'images/lecturesight.png'
favicon: 'images/favicon.png'
markdown_extensions:
- admonition
extra:
social:
- type: 'twitter'
link: 'https://twitter.com/lecturesight'
# The directory that contain the source .md files
docs_dir: 'docs'
# The directory to which the site is built using mkdocs
site_dir: 'site'
# This needs to be listed in order to populate the left navigation and the TOC
# Items will appear in this order
pages:
- Home: 'index.md'
#- Release Notes: 'releasenotes.md'
#- Upgrade: 'upgrade.md'
#- Changelog: 'changelog.md'
#
- Hardware:
- Server: 'hardware/server.md'
- Overview Camera: 'hardware/overview-camera.md'
- PTZ Camera: 'hardware/ptz-camera.md'
- Camera Layout: 'hardware/layout.md'
- Installation:
- Dependencies: 'install/dependencies.md'
- Install release: 'install/release.md'
- Build source: 'install/source.md'
- Start: 'install/start.md'
- Configuration:
- Calibration: 'config/calibration.md'
- Examples: 'config/examples.md'
- Core Services:
- 'Configuration': core/config.md
- 'OpenCL': 'core/opencl.md'
- 'Heartbeat': 'core/heartbeat.md'
- 'Frame Source': 'core/framesource.md'
- 'Scene Profile': 'core/profile.md'
- 'Scheduler' : 'core/scheduler.md'
- 'Console': 'core/console.md'
- 'Metrics': 'core/metrics.md'
- 'Logging': 'core/logging.md'
- 'Status': 'core/status.md'
- 'Modules':
- 'Video Analysis' : 'modules/videoanalysis.md'
- 'Camera Operator' : 'modules/cameraoperator-ptz.md'
- 'Steering Worker': 'modules/steeringworker-relativemove.md'
- 'Dummy Camera': 'modules/ptzcontrol-dummy.md'
- 'VAPIX Camera': 'modules/ptzcontrol-vapix.md'
- 'VISCA Camera': 'modules/ptzcontrol-visca.md'
- 'ONVIF Camera': 'modules/ptzcontrol-onvif.md'
- User Interface:
- 'Services Menu': 'ui/menu.md'
- 'Overview Camera': 'ui/overview.md'
- 'Scene Profile Editor': 'ui/profile.md'
- 'Object Tracker': 'ui/objecttracker.md'
- 'PTZ Camera Control': 'ui/cameracontrol.md'
- 'System Configuration': 'ui/config.md'
- Development:
- 'Style Guide': 'develop/style.md'