diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2017-02-23 16:57:37 +0100 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2017-02-23 16:57:37 +0100 |
commit | 273d9f61530abcf2a651939f60c81368c1120401 (patch) | |
tree | 7d34cbadb66d2f90fa50394c59b8849748d7f3a8 | |
parent | 9ff1c0aada03a55d7011723ffe31e5509113e7ed (diff) | |
download | eumel-273d9f61530abcf2a651939f60c81368c1120401.tar.gz eumel-273d9f61530abcf2a651939f60c81368c1120401.tar.bz2 eumel-273d9f61530abcf2a651939f60c81368c1120401.zip |
Add EUDAS manuals to library
-rw-r--r-- | Makefile | 9 | ||||
-rw-r--r-- | ttl/head.ttl | 3 | ||||
-rw-r--r-- | ttl/library_manuals.ttl | 21 | ||||
-rw-r--r-- | ttl/people.ttl | 7 |
4 files changed, 35 insertions, 5 deletions
@@ -1,13 +1,14 @@ -BUILDDIR=_build -STATICFILES=01_readme_INSTALL.txt releases.svg eumel_logo.svg +BUILDDIR:=_build +STATICFILES:=01_readme_INSTALL.txt releases.svg eumel_logo.svg +TTLFILES:=$(shell find ttl -name '*.ttl' | sort) all: $(BUILDDIR)/index.html links $(BUILDDIR): mkdir -p $(BUILDDIR) -$(BUILDDIR)/index.ttl: $(glob ttl/*.ttl) | $(BUILDDIR) - cat ttl/* > $@ +$(BUILDDIR)/index.ttl: $(TTLFILES) | $(BUILDDIR) + cat $(TTLFILES) > $@ $(BUILDDIR)/bib.rst: $(BUILDDIR)/index.ttl tools/formatRefs.py | $(BUILDDIR) cat $(BUILDDIR)/index.ttl | ./tools/formatRefs.py https://6xq.net/eumel/ | sort -n > $(BUILDDIR)/bib.rst diff --git a/ttl/head.ttl b/ttl/head.ttl index 1f857c9..30b4a68 100644 --- a/ttl/head.ttl +++ b/ttl/head.ttl @@ -57,6 +57,7 @@ <#sinha82>, <#hommel79>, <#eumelinfos>, <#glossymap>, <#vertriebsinfos>, - <#ambros87a>, <#ambros87b> + <#ambros87a>, <#ambros87b>, + <#eudas85>, <#eudas86> ; . diff --git a/ttl/library_manuals.ttl b/ttl/library_manuals.ttl index e23e96e..a82cd7f 100644 --- a/ttl/library_manuals.ttl +++ b/ttl/library_manuals.ttl @@ -244,6 +244,27 @@ s:publisher _:org_gmd ; . +<#eudas85> + a s:Book ; + s:datePublished "1985-09" ; + s:name "EUDAS Anwender-Datenverwaltungssystem Version 3: Benutzerhandbuch" ; + s:inLanguage "de-DE" ; + s:about _:thing_eudas ; + s:author _:person_berlage ; + s:url <library/eudas-3-benutzerhandbuch.djvu> ; + . + +<#eudas86> + a s:Book ; + s:datePublished "1986-09" ; + s:name "EUDAS Anwender-Datenverwaltungssystem Version 4: Referenzhandbuch" ; + s:inLanguage "de-DE" ; + s:about _:thing_eudas ; + s:author _:person_berlage ; + s:url <library/eudas-4-referenzhandbuch.djvu> ; + . + + ### Anwerdersoftwareklasse 2 (manuals) ### _:thing_anwendersoftware diff --git a/ttl/people.ttl b/ttl/people.ttl index bfe667e..025e0f2 100644 --- a/ttl/people.ttl +++ b/ttl/people.ttl @@ -248,3 +248,10 @@ _:person_goergen s:givenName "Klaus" ; s:familyName "Görgen" ; . + +_:person_berlage + a s:Person ; + s:givenName "Thomas" ; + s:familyName "Berlage" ; + . + |