diff options
author | jaseg <git@jaseg.de> | 2021-07-13 13:56:46 +0200 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2021-07-13 13:56:46 +0200 |
commit | 61f4b840bc24da16f8d81a4c6282e6b5aa7e0d92 (patch) | |
tree | f835ac823bc5b48bd674b11791eb491a972d1d8a /paper | |
parent | f14b83d06412aad735d985a6d7cd4595d20f83b8 (diff) | |
download | ihsm-61f4b840bc24da16f8d81a4c6282e6b5aa7e0d92.tar.gz ihsm-61f4b840bc24da16f8d81a4c6282e6b5aa7e0d92.tar.bz2 ihsm-61f4b840bc24da16f8d81a4c6282e6b5aa7e0d92.zip |
Improve comment handling of diff tool
Diffstat (limited to 'paper')
-rw-r--r-- | paper/diffinator.py | 4 | ||||
-rw-r--r-- | paper/tches-22-01-changes.tex | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/paper/diffinator.py b/paper/diffinator.py index 5c26d35..5ba4fdc 100644 --- a/paper/diffinator.py +++ b/paper/diffinator.py @@ -22,8 +22,8 @@ def generate_git_tex_diff(texfile, bibliography, revision): bib_proc = subprocess.run(['git', 'diff', f'-U{bib_lines+1}', '--word-diff', '--color=always', revision, bibliography], check=True, capture_output=True) - addition_re = re.compile('\033\\[32m\\{\\+(.*?)\\+\\}\033\\[m') - deletion_re = re.compile('\033\\[31m\\[-(.*?)\\-]\033\\[m') + addition_re = re.compile('\033\\[32m\\{\\+(.*?)([^\\\\]%.*?)?\\+\\}\033\\[m') + deletion_re = re.compile('\033\\[31m\\[-(.*?)([^\\\\]%.*?)?\\-]\033\\[m') csi_re = re.compile('\033\\[.*?m') bibtex_entry_def_re = re.compile('@.*?{(.*?),') diff --git a/paper/tches-22-01-changes.tex b/paper/tches-22-01-changes.tex index 7857125..4623678 100644 --- a/paper/tches-22-01-changes.tex +++ b/paper/tches-22-01-changes.tex @@ -50,8 +50,9 @@ requests. As pointed out by Reviewer~B, our initial submission lacked a detailed discussion of the operational constraints of Inertial Hardware Security Modules. We have adressed this with more than two pages of new content on the operation of -IHSMs in the new Sections~3.5 ``Long-Term Operation'' and~3.6 ``Transportation''. -% FIXME +IHSMs in the new Sections~3.5 ``Long-Term Operation'' and~3.6 ``Transportation''. In these sections we address the +reviewers' points on the continuous power supply requirement and go into detail on the likelihood of spurious tamper +alarms triggered by external vibrations. \paragraph{Lack of discussion of improved cooling capabilities of IHSMs compared to traditional HSMs} |