Implement a variant of the Demo protocol from Markus

include LOTs of bugfixes as well

todo: documentation!

Change-Id: I52252ade34966d24990afd9672f38049882c3199
This commit is contained in:
Enrico Faulhaber
2016-08-26 14:03:43 +02:00
parent 92cf6f34a1
commit 8c825a93ed
20 changed files with 1093 additions and 178 deletions

View File

@ -40,12 +40,11 @@ for dirpath, dirnames, filenames in os.walk(DOC_SRC):
except OSError:
pass
for fn in filenames:
full_name = path.join(dirpath, fn)
sub_name = path.relpath(full_name, DOC_SRC)
final_name = path.join(DOC_DST, sub_name)
if not fn.endswith('md'):
# just copy everything else
with open(full_name, 'rb') as fi: