diff options
author | Andreas Haas <Hinsbart@users.noreply.github.com> | 2017-10-02 22:24:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-02 22:24:38 +0200 |
commit | a4cfec4e2152deb5fc3bceb4564ac3f194f50417 (patch) | |
tree | 61657c1f1461a6bfc0600f574ff5939cb8387239 /doc/tools | |
parent | 15dd5c2c601096fa6201d08b872207867fecd29a (diff) | |
parent | 2d46ee36cc4d920ae97d5cb36ea04c90f52582d5 (diff) |
Merge pull request #11757 from mhilbrunner/doc_status_py27
doc_status.py Python 2.7 backwards compatibility & Windows support
Diffstat (limited to 'doc/tools')
-rw-r--r-- | doc/tools/doc_status.py | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/doc/tools/doc_status.py b/doc/tools/doc_status.py index 314f890bd7..75e18bbe81 100644 --- a/doc/tools/doc_status.py +++ b/doc/tools/doc_status.py @@ -92,7 +92,7 @@ def validate_tag(elem, tag): def color(color, string): - if flags['c']: + if flags['c'] and terminal_supports_color(): color_format = '' for code in colors[color]: color_format += '\033[' + str(code) + 'm' @@ -106,6 +106,15 @@ ansi_escape = re.compile(r'\x1b[^m]*m') def nonescape_len(s): return len(ansi_escape.sub('', s)) +def terminal_supports_color(): + p = sys.platform + supported_platform = p != 'Pocket PC' and (p != 'win32' or + 'ANSICON' in os.environ) + + is_a_tty = hasattr(sys.stdout, 'isatty') and sys.stdout.isatty() + if not supported_platform or not is_a_tty: + return False + return True ################################################################################ # Classes # @@ -135,8 +144,8 @@ class ClassStatusProgress: return self.to_colored_string() def to_colored_string(self, format='{has}/{total}', pad_format='{pad_described}{s}{pad_total}'): - ratio = self.described / self.total if self.total != 0 else 1 - percent = round(100 * ratio) + ratio = float(self.described) / float(self.total) if self.total != 0 else 1 + percent = int(round(100 * ratio)) s = format.format(has=str(self.described), total=str(self.total), percent=str(percent)) if self.described >= self.total: s = color('part_good', s) @@ -219,6 +228,7 @@ class ClassStatus: return output + @staticmethod def generate_for_class(c): status = ClassStatus() status.name = c.attrib['name'] @@ -439,7 +449,7 @@ for row_i, row in enumerate(table): if cell_i == 0: row_string += table_row_chars[3] + cell + table_row_chars[3] * (padding_needed - 1) else: - row_string += table_row_chars[3] * math.floor(padding_needed / 2) + cell + table_row_chars[3] * math.ceil((padding_needed / 2)) + row_string += table_row_chars[3] * int(math.floor(float(padding_needed) / 2)) + cell + table_row_chars[3] * int(math.ceil(float(padding_needed) / 2)) row_string += table_column_chars print(row_string) |