diff options
Diffstat (limited to 'content/tocs/architecture')
-rw-r--r-- | content/tocs/architecture/fetched_files.yml | 72 | ||||
-rw-r--r-- | content/tocs/architecture/toc_dev_en.yml | 57 |
2 files changed, 129 insertions, 0 deletions
diff --git a/content/tocs/architecture/fetched_files.yml b/content/tocs/architecture/fetched_files.yml new file mode 100644 index 0000000..8ca29b3 --- /dev/null +++ b/content/tocs/architecture/fetched_files.yml @@ -0,0 +1,72 @@ +############################################################################################################## +# 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 : "AGL_GITHUB_FETCH" +url_edit : "AGL_GITHUB_EDIT" +git_commit : "AGL_GITHUB_BRANCH" +#git_commit : # default defined in _tocs/xxxx/latest.yml +#dst_prefix : # destination_path = destination_prefix + (document.destination || document.source) + +repositories: +- + url_fetch: https://www.automotivelinux.org/sites/cpstandard/files/pages/files/%source% + dst_prefix: AGL_Specifications + documents: + - source: agl_spec_v1_280515.pdf +- + git_name : "%project_source%/docs-agl" + src_prefix : docs/sec-blueprint + dst_prefix: security + documents: + - source: 01-overview.md + label: Overview + - source: 02-threat-analysis.md + label: Threat Analysis + - source: 03-attack-surfaces.md + label: Attack Surfaces + - source: 04-adversaries.md + label: Adversaries + - source: 05-security-concepts.md + label: Security Concepts + - source: 06-plateform-security.md + label: Platform Security + - source: 07-application-security.md + label: Application Security + - source: 08-Hardening.md + label: Harden Configurations diff --git a/content/tocs/architecture/toc_dev_en.yml b/content/tocs/architecture/toc_dev_en.yml new file mode 100644 index 0000000..6d8e2d9 --- /dev/null +++ b/content/tocs/architecture/toc_dev_en.yml @@ -0,0 +1,57 @@ +####################################################################### +# WARNING: +# - TOC should reference .HTML and .md (Index OK but Error 404) +# - do not forget to run 'docbuild --tocs' after any changes +# +# +############################ SYNTAX ################################### +# GLOBAL OPTIONS: +# name: TOC (page) title +# template: name of template to use for this page - use 'generated_index.html' if unknown +# children: array of TOC entries +# +# TOC Entry: +# name: TOC entry (level 1) +# children: +# - +# name: optional name for TOC entry (default: use URL FrontMatter info) +# url: <subdir as defined with FETCH_DIR in conf/AppDefaults.js: +# - +# name: ... +# url: ... +# ... +# +# EXAMPLE: +# ------------------------------- +# name: Developer Guides +# template: generated_index.html +# children: +# - +# name: Application Framework +# children: +# - url: reference/af-main/overview.html +# - url: reference/af-main/afm-system-daemon.html +# - url: reference/af-main/afm-user-daemon.html +# ------------------------------- +####################################################################### + +name: Architecture Guides +template: generated_index.html +children: +- + name: AGL Specifications + children: + - + name: Automotive Grade Linux Requirements Specifications + url: reference/AGL_Specifications/agl_spec_v1_280515.pdf +- + name: Security Blueprint + children: + - url: reference/security/01-overview.html +# - url: reference/security/02-threat-analysis.html +# - url: reference/security/03-attack-surfaces.html +# - url: reference/security/04-adversaries.html + - url: reference/security/05-security-concepts.html + - url: reference/security/06-plateform-security.html + - url: reference/security/07-application-security.html +# - url: reference/security/08-Hardening.html |