From 76f8611ee3345268e2091a9d2e81b53a8b05889c Mon Sep 17 00:00:00 2001 From: Yves Fischer Date: Wed, 13 Oct 2021 23:22:16 +0200 Subject: ebus parser in rust --- ebus-xml/ebus-0.1.xsd | 9 +++++++++ ebus-xml/ebus.xml | 49 ++++++++++++++++++++++++++++++++++++++++++++----- 2 files changed, 53 insertions(+), 5 deletions(-) (limited to 'ebus-xml') diff --git a/ebus-xml/ebus-0.1.xsd b/ebus-xml/ebus-0.1.xsd index 4e96176..bc7d504 100644 --- a/ebus-xml/ebus-0.1.xsd +++ b/ebus-xml/ebus-0.1.xsd @@ -75,6 +75,7 @@ + @@ -155,4 +156,12 @@ + + + + + + + + diff --git a/ebus-xml/ebus.xml b/ebus-xml/ebus.xml index a4552ba..bc7147e 100644 --- a/ebus-xml/ebus.xml +++ b/ebus-xml/ebus.xml @@ -1,7 +1,6 @@ - + PC oder Modem @@ -72,6 +71,9 @@ + + + Betriebsdaten des Feuerungsautomaten an den Regler Block1 @@ -88,7 +90,7 @@ Boiler Temperatur - Aussentemperatur + Aussentemperatur @@ -164,7 +166,7 @@ - + @@ -173,6 +175,17 @@ + + + + + + + + + + + Sollwertübertragung des Reglers an andere Regler @@ -252,5 +265,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + - + \ No newline at end of file -- cgit v1.2.1 From 810721ceac0249e747cdf36f3edec22d829d4371 Mon Sep 17 00:00:00 2001 From: Yves Fischer Date: Fri, 31 Dec 2021 23:53:52 +0100 Subject: ebus-rust nixos package --- ebus-xml/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ebus-xml') diff --git a/ebus-xml/Makefile b/ebus-xml/Makefile index 1a8f4fc..3d17503 100644 --- a/ebus-xml/Makefile +++ b/ebus-xml/Makefile @@ -2,14 +2,14 @@ TARGET_DIST=dist/$(shell date --rfc-3339=date) all: doc -doc: +doc: validate test -d build || mkdir build xsltproc ebus.docbook.xslt ebus.xml > build/ebus.docbook.xml - dblatex -T db2latex build/ebus.docbook.xml + pandoc -s -f docbook build/ebus.docbook.xml -o build/ebus.html dist: doc test -d $(TARGET_DIST) || mkdir -p $(TARGET_DIST) - cp build/ebus.docbook.pdf $(TARGET_DIST) + cp build/ebus.html $(TARGET_DIST) cp ebus.xml $(TARGET_DIST) validate: -- cgit v1.2.1