[Patchew-devel] [PATCH 1/7] ansi2html: add _write_form_feed

Paolo Bonzini pbonzini at redhat.com
Thu Mar 8 08:00:36 UTC 2018


Form feeds are rendered differently by HTML and text converters, so
move the HTML rendering out of _write_line's argument.

Signed-off-by: Paolo Bonzini <pbonzini at redhat.com>
---
 patchew/logviewer.py | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/patchew/logviewer.py b/patchew/logviewer.py
index bf67149..ab5f5c3 100644
--- a/patchew/logviewer.py
+++ b/patchew/logviewer.py
@@ -197,6 +197,9 @@ class ANSI2HTMLConverter(object):
             # the remaining light colors: dark grey and white
             self.bg = arg - 92
 
+    def _write_form_feed(self):
+        yield '<hr>'
+
     def _class_to_id(self, html_class):
         class_id = self.class_to_id.get(html_class, None)
         if class_id is None:
@@ -319,7 +322,8 @@ class ANSI2HTMLConverter(object):
 
         if csi[-1] == 'J':
             save_pos = self.pos
-            yield from self._write_line('<hr>')
+            yield from self._write_line('')
+            yield from self._write_form_feed()
             self._set_pos(save_pos)
         elif csi[-1] == 'K':
             self._parse_csi_with_args(csi, self._do_csi_K)
@@ -346,7 +350,8 @@ class ANSI2HTMLConverter(object):
                     yield from self._write_line('\n')
                     continue
                 elif seq == '\f':
-                    yield from self._write_line('\n<hr>')
+                    yield from self._write_line('\n')
+                    yield from self._write_form_feed()
                     continue
 
                 if self.lazy_contents != '':
-- 
2.14.3





More information about the Patchew-devel mailing list