Compare commits
16 Commits
drone-sphi
...
beamer
Author | SHA1 | Date | |
---|---|---|---|
b1e9f67ba0 | |||
00e883e3eb | |||
ad82b49371 | |||
f7a5f5e077 | |||
bafb7a96aa | |||
2758e95bc5 | |||
cad768627f | |||
8129187bd9 | |||
1e08ba5b73 | |||
f5e9615799 | |||
616f2d7dcc | |||
b38807c62a | |||
72d0012f33
|
|||
431607c6e5 | |||
64b7c3eaeb | |||
77473030b5 |
65
.drone.yml
65
.drone.yml
@ -1,11 +1,6 @@
|
|||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: docker
|
name: default
|
||||||
name: amd64-main
|
|
||||||
|
|
||||||
platform:
|
|
||||||
os: linux
|
|
||||||
arch: amd64
|
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
branch:
|
branch:
|
||||||
@ -19,27 +14,45 @@ steps:
|
|||||||
image: sphinxdoc/sphinx-latexpdf:5.0.2
|
image: sphinxdoc/sphinx-latexpdf:5.0.2
|
||||||
commands:
|
commands:
|
||||||
- apt-get update
|
- apt-get update
|
||||||
- apt-get -y install texlive-lang-german rsync
|
- apt-get -y install texlive-lang-german
|
||||||
- pip install -r requirements.txt
|
- pip install -r requirements.txt
|
||||||
- make -j4 latexpdf
|
- make latexpdf
|
||||||
- name: upload
|
- make html
|
||||||
image: alpine
|
|
||||||
environment:
|
|
||||||
NC_USER:
|
|
||||||
from_secret: nextcoud_user
|
|
||||||
NC_PASSWORD:
|
|
||||||
from_secret: nextcloud_password
|
|
||||||
commands:
|
|
||||||
- apt add curl
|
|
||||||
- curl -X PUT -u $NC_USER:$NC_PASSWORD https://work.wtf-eg.de/remote.php/dav/files/$NC_USER/FreeFleetManagement/FFFleet%20Handbuch.pdf -T bundle/latex/rtfm-dashandbuchderfreefederatedfleetfffleetinitiative.pdf
|
|
||||||
when:
|
|
||||||
branch:
|
|
||||||
- main
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: signature
|
kind: pipeline
|
||||||
hmac: 7225cd21b9a1284bba09bd0f943e5873865f176e1dca49147ea8e309421e6726
|
name: publish
|
||||||
|
|
||||||
...
|
trigger:
|
||||||
|
event:
|
||||||
|
- tag
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build
|
||||||
|
image: sphinxdoc/sphinx-latexpdf:5.0.2
|
||||||
|
commands:
|
||||||
|
- apt-get update
|
||||||
|
- apt-get -y install texlive-lang-german
|
||||||
|
- pip install -r requirements.txt
|
||||||
|
- make latexpdf
|
||||||
|
- make html
|
||||||
|
- name: gitea_release
|
||||||
|
image: plugins/gitea-release
|
||||||
|
settings:
|
||||||
|
api_key:
|
||||||
|
from_secret: gitea_token
|
||||||
|
base_url: https://git.wtf-eg.de
|
||||||
|
files: build/latex/rtfm-dashandbuchderfreefederatedfleetinitiative.pdf
|
||||||
|
- name: html
|
||||||
|
image: cschlosser/drone-ftps
|
||||||
|
environment:
|
||||||
|
FTP_USERNAME:
|
||||||
|
from_secret: username
|
||||||
|
FTP_PASSWORD:
|
||||||
|
from_secret: password
|
||||||
|
PLUGIN_HOSTNAME:
|
||||||
|
from_secret: hostname
|
||||||
|
PLUGIN_SRC_DIR: /build/html
|
||||||
|
PLUGIN_DEST_DIR: /home/pacs/sib00/users/swingbe_fffleet/doms/fffleet.swingbe.de/subs-ssl/www
|
||||||
|
PLUGIN_MIRROR_OPTS: -e
|
||||||
|
PLUGIN_CLEAN_DIR: false
|
||||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,3 +1,5 @@
|
|||||||
|
bundle
|
||||||
build
|
build
|
||||||
venv
|
venv
|
||||||
*.*~
|
*.*~
|
||||||
|
*~
|
@ -16,5 +16,19 @@ help:
|
|||||||
|
|
||||||
# Catch-all target: route all unknown targets to Sphinx using the new
|
# Catch-all target: route all unknown targets to Sphinx using the new
|
||||||
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
|
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
|
||||||
%: Makefile
|
%: makefile
|
||||||
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
||||||
|
|
||||||
|
.PHONY: sphinx bundle
|
||||||
|
|
||||||
|
clean:
|
||||||
|
-rm -rf build
|
||||||
|
-rm -rf bundle
|
||||||
|
|
||||||
|
sphinx:
|
||||||
|
$(MAKE) singlehtml latexpdf
|
||||||
|
|
||||||
|
bundle: sphinx
|
||||||
|
-mkdir bundle
|
||||||
|
cp build/latex/*.pdf bundle/
|
||||||
|
rsync -av --delete build/singlehtml/ bundle/html
|
15
readme.md
15
readme.md
@ -1,3 +1,7 @@
|
|||||||
|
# General
|
||||||
|
|
||||||
|
[](https://drone.wtf-eg.de/FreeFleetManagement/manual)
|
||||||
|
|
||||||
# Introduction
|
# Introduction
|
||||||
|
|
||||||
Call ```sphinx-quickstart``` to setup the project.
|
Call ```sphinx-quickstart``` to setup the project.
|
||||||
@ -59,15 +63,20 @@ The output files of the final handbook can be found in the subfolder `./build`.
|
|||||||
|
|
||||||
All generated intermediate artifacts and the final output files can be found in the `./build` subfolder.
|
All generated intermediate artifacts and the final output files can be found in the `./build` subfolder.
|
||||||
|
|
||||||
|
Generate all output like this.
|
||||||
|
|
||||||
|
```
|
||||||
|
make bundle
|
||||||
|
```
|
||||||
|
|
||||||
### Clean up
|
### Clean up
|
||||||
|
|
||||||
1. Deactivate the virtual Python environment: ```deactivate```
|
1. Deactivate the virtual Python environment: ```deactivate```
|
||||||
2. Clean up the build sources: ```make clean``` and ```rm -r build bundle```
|
2. Clean up the build sources: ```make clean```
|
||||||
|
|
||||||
# File System
|
# File System
|
||||||
|
|
||||||
* `build`: build directory
|
* `build`: build directory
|
||||||
* `make.bat`:
|
* `Makefile`: build configuration
|
||||||
* `Makefile`:
|
|
||||||
* `readme.md`: this file
|
* `readme.md`: this file
|
||||||
* `source`: source directory
|
* `source`: source directory
|
||||||
|
@ -1 +1,2 @@
|
|||||||
myst-parser
|
myst-parser
|
||||||
|
sphinxcontrib-beamer
|
||||||
|
@ -17,12 +17,12 @@
|
|||||||
|
|
||||||
# -- Project information -----------------------------------------------------
|
# -- Project information -----------------------------------------------------
|
||||||
|
|
||||||
project = 'RTFM - Das Handbuch der Free Federated Fleet (FFFleet) Initiative'
|
project = 'RTFM - Das Handbuch der Free Federated Fleet Initiative'
|
||||||
copyright = '2022, <tdb>'
|
copyright = '2022, <tdb>'
|
||||||
author = 'Software Ingenieur Begerad (SIB)'
|
author = 'Software Ingenieur Begerad (SIB)'
|
||||||
|
|
||||||
# The full version, including alpha/beta/rc tags
|
# The full version, including alpha/beta/rc tags
|
||||||
release = '0.1.0'
|
release = '0.1.2'
|
||||||
|
|
||||||
|
|
||||||
# -- General configuration ---------------------------------------------------
|
# -- General configuration ---------------------------------------------------
|
||||||
@ -31,7 +31,8 @@ release = '0.1.0'
|
|||||||
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
||||||
# ones.
|
# ones.
|
||||||
extensions = [
|
extensions = [
|
||||||
'myst_parser'
|
'myst_parser',
|
||||||
|
'sphinxcontrib.beamer'
|
||||||
]
|
]
|
||||||
|
|
||||||
# Add any paths that contain templates here, relative to this directory.
|
# Add any paths that contain templates here, relative to this directory.
|
||||||
|
@ -14,6 +14,7 @@ RTFM - Das Handbuch der Free Federated Fleet (FFFleet) Initiative
|
|||||||
manual/open-issues
|
manual/open-issues
|
||||||
manual/requirements
|
manual/requirements
|
||||||
manual/introduction
|
manual/introduction
|
||||||
|
manual/architecture
|
||||||
manual/components
|
manual/components
|
||||||
manual/research
|
manual/research
|
||||||
|
|
||||||
|
15
source/manual/architecture.md
Normal file
15
source/manual/architecture.md
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Architektur
|
||||||
|
|
||||||
|
//TODO tbc
|
||||||
|
|
||||||
|
## Systemumgebung
|
||||||
|
|
||||||
|
//TODO tbc
|
||||||
|
|
||||||
|
## Systemkontext
|
||||||
|
|
||||||
|
//TODO tbc
|
||||||
|
|
||||||
|
## Systembeschreibung
|
||||||
|
|
||||||
|
//TODO tbc
|
Reference in New Issue
Block a user