From 2f4853b1444758875e8a603250d71a0aa9d30e10 Mon Sep 17 00:00:00 2001 From: Bastian Schroll Date: Sun, 7 Jan 2018 11:33:38 +0100 Subject: [PATCH] change some files --- _gen/doxygen.ini | 4 ++-- _info/FileHead.template.py | 4 +++- _info/packet.md | 39 ++++++++++++++++++++++---------------- boswatch/utils/header.py | 2 ++ boswatch/version.py | 3 +++ 5 files changed, 33 insertions(+), 19 deletions(-) diff --git a/_gen/doxygen.ini b/_gen/doxygen.ini index 618a7f7..89ce5f1 100644 --- a/_gen/doxygen.ini +++ b/_gen/doxygen.ini @@ -453,7 +453,7 @@ EXTRACT_PACKAGE = YES # included in the documentation. # The default value is: NO. -EXTRACT_STATIC = NO +EXTRACT_STATIC = YES # If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined # locally in source files will be included in the documentation. If set to NO, @@ -469,7 +469,7 @@ EXTRACT_LOCAL_CLASSES = YES # included. # The default value is: NO. -EXTRACT_LOCAL_METHODS = NO +EXTRACT_LOCAL_METHODS = YES # If this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called diff --git a/_info/FileHead.template.py b/_info/FileHead.template.py index c01bd6c..e69b669 100644 --- a/_info/FileHead.template.py +++ b/_info/FileHead.template.py @@ -9,7 +9,7 @@ German BOS Information Script by Bastian Schroll -@file: test_ServerClient.py +@file: FileHead.template.py @date: ##.##.2018 @author: Bastian Schroll @description: That is the FileHead that should be used for all files @@ -18,6 +18,8 @@ import logging import boswatch.module +logging.debug("- %s loaded", __name__) + class ClassName: """!General class comment""" diff --git a/_info/packet.md b/_info/packet.md index 44d69ed..db4c0dd 100644 --- a/_info/packet.md +++ b/_info/packet.md @@ -16,6 +16,13 @@ name of the boswatch client instance +clientIP +X +X +X + + + clientVersion X X @@ -27,7 +34,7 @@ X X X -(rtl_fm, audio) +(stick, audio) timestamp @@ -44,13 +51,27 @@ -type +mode X X X (fms, pocsag, zvei) +descriptionShort +X +X +X +loaded from optional CSV file + + +descriptionLong +X +X +X +loaded from optional CSV file + + bitrate X @@ -155,18 +176,4 @@ (I, II, III, IV) - -descriptionShort -X -X -X -loaded from optional CSV file - - -descriptionLong -X -X -X -loaded from optional CSV file - diff --git a/boswatch/utils/header.py b/boswatch/utils/header.py index 1461672..78067a4 100644 --- a/boswatch/utils/header.py +++ b/boswatch/utils/header.py @@ -19,6 +19,8 @@ import platform # for python version nr import boswatch.version +logging.debug("- %s loaded", __name__) + def logoToLog(): """!Prints the BOSWatch logo to the log at debug level diff --git a/boswatch/version.py b/boswatch/version.py index b9f694a..7e2203e 100644 --- a/boswatch/version.py +++ b/boswatch/version.py @@ -14,6 +14,9 @@ @author: Bastian Schroll @description: Version numbers, branch and release date of BOSWatch """ +import logging + +logging.debug("- %s loaded", __name__) client = {"major": 3, "minor": 0, "patch": 0} server = {"major": 3, "minor": 0, "patch": 0}