blob: ae29d2c52747430daf05859f104ac6a946e0727b (
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
|
# REFERENCE ENTRY:
# -
# url_fetch : gitweb fetch URL (format string with token %repo% %uri%
# GERRIT_FETCH= "https://gerrit.automotivelinux.org/gerrit/gitweb?p=%repo%;a=blob_plain;f=%source%;hb=%commit%"
# GITHUB_FETCH= "https://raw.githubusercontent.com/%repo%/%commit%/%source%"
# repository: git repository name
# GITHUB_EDIT= "https://raw.github.com/%repo%/blob/%commit%/%source%"
# git_commit: git commit when not default
# destination_prefix: optional destination prefix
# documents:
# -
# source : "source patch within url_fetch"
# destination : "optional: destination path default=path.join(destination_prefix+source)"
# label: "optional: friendly name for submenu default=basename(source) overloaded by file content"
# title: "optional: info about document (default label, overloaded by file content)"
#
url_fetch : "GERRIT_FETCH"
git_commit : "master"
#git_commit : # default defined in _tocs/xxxx/latest.yml
#dst_prefix : # destination_path = destination_prefix + (document.destination || document.source)
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
|