blob: a8d51d1d5d6d7fa2b308367be81ac7969d169536 (
plain)
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
|
##############################################################################################################
# GLOBAL DOCUMENT
# <any REPOSITORY option>: global setting
# repositories: array of objects with documents to fetchd
#
# REPOSITORY ENTRY:
# -
# url_fetch : gitweb fetch URL (format string with token %repo% %commit% %source%, defined in configuration)
# url_edit : gitweb edut URL (format string with token %repo% %commit% %source%, defined in configuration)
# git_name: repository name (%repo%)
# git_commit: git reference: revision, SHA1, branch... (%commit%)
# src_prefix: prefix prepended to %source%
# dst_prefix: prefix prepended to destination name
# documents: array of documents to fetch
#
# DOCUMENT ENTRY:
# source: subpath within repository (%source%)
# destination: local destination filename
# label|title: name within TOC
# edit|editURI: specific edition URI
#
# EXAMPLE:
# ------------------------------------
# url: "GERRIT_FETCH"
# git_commit: "master"
# repositories:
# -
# git_name: src/foo
# src_prefix: docs
# dst_prefix: foodocs
# documents:
# - source: intro.md
# label: Introduction
# - source: topic/README.md
# destination: topic.md
# label: My Topic
# ------------------------------------
##############################################################################################################
url_fetch : "GERRIT_FETCH"
git_commit : "master"
repositories:
-
git_name : src/app-framework-main
git_commit: master
src_prefix : docs
dst_prefix: af-main
documents:
- source: overview.md
label: Overview
- source: afm-system-daemon.md
label: System Daemon
- source: afm-user-daemon.md
label: User Daemon
- source: quick-tutorial.md
label: Quick Tutorial
- source: widgets.md
label: Widgets
- source: writing-config.xml.md
label: Writing config.xml
-
git_name : src/app-framework-binder
git_commit: master
src_prefix : doc
dst_prefix: af-binder
documents:
- source: afb-overview.md
label: Binder overview
- source: afb-application-writing.md
label: Writing Applications
- source: afb-bindings-writing.md
label: Writing Bindings
- source: afb-events-guide.md
label: Events guide
- source: signaling-basis.svg
- source: afb-daemon-vocabulary.md
label: Vocabulary
- source: afb-tests-overview.md
label: Tests overview
- source: afb-bindings-overview.md
label: Bindings Examples
- source: FAQ.md
-
url_fetch: GITHUB_FETCH
url_edit: GITHUB_EDIT
git_name: automotive-grade-linux/docs-agl
git_commit: master
src_prefix: docs/app-framework
dst_prefix: af-binder
documents:
- source: index.md
destination: resources.md
label: Resources
-
url_fetch: GITHUB_FETCH
url_edit: GITHUB_EDIT
git_name: automotive-grade-linux/docs-agl
git_commit: master
src_prefix: docs/signaling
dst_prefix: signaling
documents:
- source: architecture.md
destination: architecture.md
label: Signaling Architecture (proposal)
- source: index.md
destination: resources.md
label: Resources
- source: images/agent-arch.svg
- source: images/agent-sample.svg
- source: images/cloud-arch.svg
- source: images/distributed-arch.svg
- source: images/signal-agent-arch.svg
-
url_fetch: GITHUB_FETCH
url_edit: GITHUB_EDIT
git_name: automotive-grade-linux/docs-agl
git_commit: master
src_prefix: docs/audio
dst_prefix: audio
documents:
- source: index.md
destination: resources.md
label: Resources
|