1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742
|
# vim:set fileencoding=utf-8 et ts=4 sts=4 sw=4:
#
# apt-listchanges - Show changelog entries between the installed versions
# of a set of packages and the versions contained in
# corresponding .deb files
#
# Copyright (C) 2000-2006 Matt Zimmerman <mdz@debian.org>
# Copyright (C) 2006 Pierre Habouzit <madcoder@debian.org>
# Copyright (C) 2016-2019 Robert Luberda <robert@debian.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
#
import sys
import os
import re
import time
import subprocess
import locale
import email.message
import email.header
import email.charset
import io
import pwd
import shlex
import tempfile
from apt_listchanges import ALCLog
from apt_listchanges import ALChacks
from apt_listchanges.ALChacks import _
# TODO: # pylint: disable=fixme
# newt-like frontend, or maybe some GUI bit
# keep track of tar/dpkg-deb errors like in pre-2.0
BREAK_APT_EXIT_CODE = 10
def confirm_or_exit(config, frontend):
if not config.confirm:
return
try:
if not frontend.confirm():
ALCLog.error(_('Aborting'))
sys.exit(BREAK_APT_EXIT_CODE)
except (KeyboardInterrupt, EOFError):
sys.exit(BREAK_APT_EXIT_CODE)
except Exception as ex:
ALCLog.error(_("Confirmation failed: %s") % str(ex))
sys.exit(1)
def mail_changes(config, changes, subject):
ALCLog.info(_("Mailing %(address)s: %(subject)s") %
{'address': config.email_address, 'subject': subject})
charset = email.charset.Charset('utf-8')
charset.body_encoding = '8bit'
charset.header_encoding = email.charset.QP
message = email.message.Message()
if config.email_format == 'html':
changes = html(config).convert_to_html(subject, changes)
message['Content-Type'] = 'text/html; charset=utf-8'
message['Auto-Submitted'] = 'auto-generated'
message['Subject'] = (subject
if subject.isascii() and subject.isprintable()
else email.header.Header(subject, charset))
message['To'] = config.email_address
message.set_payload(changes, charset)
try:
subprocess.run(['/usr/sbin/sendmail', '-oi', '-t'],
input=message.as_bytes(), check=True)
except Exception as ex:
ALCLog.warning(_("Failed to send mail to %(address)s: %(errmsg)s") %
{'address': config.email_address, 'errmsg': ex})
def can_send_emails(config, replacementFrontend=None):
''' Check if the mail frontend is usable.
When the second parameter is given print an appropriate error message '''
if not os.path.exists("/usr/sbin/sendmail"):
if replacementFrontend:
ALCLog.error(
_("The mail frontend needs an installed 'sendmail', using %s")
% replacementFrontend)
return False
if not config.email_address:
if replacementFrontend:
ALCLog.error(
_("The mail frontend needs an e-mail address to be "
"configured, using %s") % replacementFrontend)
return False
return True
class EUnknownFrontend(Exception):
''' Exception class to notify callers of make_frontend() that invalid
frontend was given in the configuration'''
def _select_frontend(config, frontends):
''' Utility function used for testing purposes '''
prompt = "\n" + _("Available apt-listchanges frontends:") + "\n" + \
"".join([f" {i+1}. {frontends[i]}\n"
for i in range(0, len(frontends))]) + \
_("Choose a frontend by entering its number: ")
for i in (1, 2, 3):
try:
response = ttyconfirm(config).ttyask(prompt)
if not response:
break
return frontends[int(response)-1]
except Exception as ex:
ALCLog.error(_("Error: %s") % str(ex))
ALCLog.info(_("Using default frontend: %s") % config.frontend)
return config.frontend
def make_frontend(config, packages_count):
frontends = {'text': text_frd,
'pager': pager_frd,
'debconf': debconf_frd,
'mail': mail_frd,
'syslog': syslog_frd,
'log': log_frd,
'browser': browser_frd,
'xterm-pager': xterm_pager_frd,
'xterm-browser': xterm_browser_frd,
'gtk': None, # handled below
'none': None}
frontends_no_override = [
'syslog',
'log',
]
if config.select_frontend: # For testing purposes
name = _select_frontend(config, sorted(list(frontends.keys())))
else:
name = config.frontend
if isinstance(name, Frontend):
return name
if name == 'none':
return None
# Do not override the silent frontends
if name in frontends_no_override:
pass
# If user does not want any messages force either the mail frontend
# or no frontend at all if mail is not usable
elif config.quiet >= 2:
if can_send_emails(config):
name = 'mail'
else:
return None
# If apt is in quiet (loggable) mode, we should make our output
# loggable too unless the mail frontend is used (see #788059)
elif config.quiet == 1:
if name != 'mail' or not can_send_emails(config, 'text'):
name = 'text'
# Non-quiet mode
else:
if name == "mail" and not can_send_emails(config, 'pager'):
name = 'pager'
if name in ('gtk', 'xterm-pager', 'xterm-browser') and \
"DISPLAY" not in os.environ:
name = name[6:] if name.startswith('xterm-') else 'pager'
ALCLog.error(_("$DISPLAY is not set, falling back to %(frontend)s")
% {'frontend': name})
# TODO: it would probably be nice to have a frontends subdir and
# import from that. that would mean a uniform mechanism for all
# frontends (that would become small files inside
if name == "gtk":
try:
gtk = __import__("apt_listchanges.AptListChangesGtk",
fromlist=[None])
frontends[name] = gtk.gtk_frd
except ImportError as ex:
if config.apt_mode and config.frontend_from_env:
# Most probably apt-listchanges was called from tool like
# synaptic. Force text frontend without confirmations as
# the tool might appear to hang otherwise.
name = 'text'
config.confirm = False
else:
name = 'pager'
ALCLog.error(
_("The gtk frontend needs a working python3-gi,\nbut it "
"cannot be loaded. Falling back to %(frontend)s.\n"
"The error is: %(errmsg)s")
% {'frontend': name, 'errmsg': ex})
config.frontend = name
if name not in frontends:
raise EUnknownFrontend
return frontends[name](config, packages_count)
class base:
def __init__(self, config, *args): # pylint: disable=unused-argument
super().__init__()
self.config = config
def _render(self, text):
return text
class titled(base):
def __init__(self, *args):
super().__init__(*args)
self.title = 'apt-listchanges output'
def set_title(self, title):
self.title = title
class Frontend(titled):
def __init__(self, config, packages_count):
super().__init__(config, packages_count)
self.packages_count = packages_count
def update_progress(self, diff=1):
pass
def progress_done(self):
pass
def display_output(self, text):
pass
def needs_tty_stdin(self):
return False
def confirm(self):
return True
class debconf_frd(Frontend):
# pylint: disable=import-outside-toplevel,no-member
def display_output(self, text):
import socket
import debconf as dc
if 'DEBIAN_FRONTEND' not in os.environ or \
os.environ['DEBIAN_FRONTEND'] != 'passthrough':
return
sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM, 0)
sock.connect(os.environ['DEBCONF_PIPE'])
dcfd = sock.makefile()
sock.close()
db = dc.Debconf(read=dcfd, write=dcfd)
with tempfile.NamedTemporaryFile(prefix="apt-listchanges-tmp") as tmp:
os.fchmod(tmp.fileno(), 0o644)
tmp.write(b'''\
Template: apt-listchanges/info
Type: title
Description: NEWS
Template: apt-listchanges/title
Type: title
Description: ${title}
Template: apt-listchanges/news
Type: note
Description: ${packages_count} packages\n''')
for line in text.split('\n'):
if line.strip():
tmp.write(' ' + line + '\n')
else:
tmp.write(' .\n')
tmp.flush()
db.command('x_loadtemplatefile', tmp.name)
tmp.close()
db.info('apt-listchanges/info')
db.subst('apt-listchanges/title', 'title', self.title)
db.subst('apt-listchanges/news', 'packages_count', self.packages_count)
db.settitle('apt-listchanges/title')
db.fset('apt-listchanges/news', 'seen', 'false')
db.input('high', 'apt-listchanges/news')
db.go()
dcfd.close()
class ttyconfirm(base):
def ttyask(self, prompt):
if sys.stdin.isatty() and sys.stdout.isatty():
return input(prompt).rstrip()
enc = ALChacks.system_encoding()
with open('/dev/tty', 'rb+', buffering=0) as tty:
tty.write(enc.to_bytes(prompt))
tty.flush()
return enc.from_bytes(tty.readline()).rstrip()
def confirm(self):
# Make sure user has seen all output. See Debian bug #1028474. This is
# probably only necessary for the text frontend, since the others
# handle it in their own way, but there's no harm in doing it for all
# of them.
sys.stdout.flush()
response = self.ttyask(
'apt-listchanges: ' + _('Do you want to continue? [Y/n] '))
return response == '' or re.search(locale.nl_langinfo(locale.YESEXPR),
response)
def needs_tty_stdin(self):
return self.config.confirm
# pylint: disable=unused-argument,attribute-defined-outside-init
class simpleprogress(base):
def update_progress(self, diff=1):
if self.config.quiet > 1:
return
if not hasattr(self, 'message_printed'):
self.message_printed = 1
ALCLog.info(_("Reading changelogs") + "...")
def progress_done(self):
pass
class mail_frd(simpleprogress, Frontend):
pass
class prepend_title(titled):
def _render(self, text):
if not self.config.titled:
return text
return self.title + '\n' + (len(self.title) * '-') + \
'\n\n' + text
class text_frd(prepend_title, simpleprogress, ttyconfirm, Frontend):
def display_output(self, text):
sys.stdout.write(
ALChacks.system_encoding().as_string(self._render(text)))
class syslog_frd(prepend_title, simpleprogress, Frontend):
def display_output(self, text):
import syslog # pylint: disable=import-outside-toplevel
# Not really a daemon but definitely not a user message
syslog.openlog(facility=syslog.LOG_DAEMON)
syslog.syslog(ALChacks.system_encoding().as_string(self._render(text)))
syslog.closelog()
class RunCommandMixin(base):
def __init__(self, *args):
super().__init__(*args)
self.wait = True
self.suffix = ''
# Derived classes should set enc to system_encoding() or
# utf8_encoding() from ALChacks
self.enc = None
def display_output(self, text):
# Note: the following fork() call is needed to have temporary file
# deleted after the process created by Popen finishes.
if not self.wait and os.fork() != 0:
# We are the parent, return.
return
with tempfile.NamedTemporaryFile(
prefix="apt-listchanges-tmp", suffix=self.suffix,
dir=self.get_tmpdir()) as tmp:
try:
tmp.write(self.enc.to_bytes(self._render(text)))
tmp.flush()
self.fchown_tmpfile(tmp.fileno())
atime = os.fstat(tmp.fileno()).st_atime
# Sleep 0.1 second to make it possible to detect if the
# command, that is executed below, actually started reading the
# file.
time.sleep(0.1)
with subprocess.Popen(
self.get_command() + [tmp.name],
preexec_fn=self.get_preexec_fn(),
env=self.get_environ()) as process:
status = process.wait()
if status != 0:
raise OSError(
_("Command %(cmd)s exited with status %(status)d")
% {'cmd': str(process.args), 'status': status})
# In case the executed command just forks itself and exits
# (like for example firefox), give the forked child of the
# command up to 5 seconds to open the temporary file before it
# gets deleted by the call to _close_temp_file().
for _i in range(1, 10):
if atime != os.fstat(tmp.fileno()).st_atime:
break
time.sleep(0.5)
finally:
self._close_temp_file(tmp)
if not self.wait:
# We are a child; exit
sys.exit(0)
def _close_temp_file(self, tmp):
# Explicitly close the temporary file to ignore errors if the file
# has been removed already, see bug#772663
try:
tmp.close()
except FileNotFoundError:
pass
def get_command(self):
return self.command
# Interface functions for dropping root privileges
def fchown_tmpfile(self, fileno):
pass
def get_tmpdir(self):
return None
def get_preexec_fn(self):
return None
def get_environ(self):
return None
class log_frd(prepend_title, simpleprogress, Frontend, RunCommandMixin):
def display_output(self, text):
output = ALChacks.system_encoding().as_string(self._render(text))
with open(self.config.log, 'ab') as f:
if self.config.filter:
self.command = shlex.split(self.config.filter)
with subprocess.Popen(
self.get_command(), stdin=subprocess.PIPE, stdout=f,
preexec_fn=self.get_preexec_fn(),
env=self.get_environ()) as process:
process.communicate(input=output.encode())
if process.returncode != 0:
raise OSError(
_("Command %(cmd)s exited with status %(status)d")
% {'cmd': str(process.args),
'status': process.returncode})
else:
f.write(output.encode())
class FancyProgressMixin(base):
def update_progress(self, diff=1):
if not diff:
return
if not hasattr(self, 'progress'):
# First call
self.progress = 0
self.line_length = 0
self.progress += diff
line = _("Reading changelogs") + \
f"... {int(self.progress * 100 / self.packages_count)}%"
self.line_length = len(line)
sys.stdout.write(line + '\r')
sys.stdout.flush()
def progress_done(self):
if hasattr(self, 'line_length'):
sys.stdout.write(' ' * self.line_length + '\r')
sys.stdout.write(_("Reading changelogs") +
"... " + _("Done") + "\n")
sys.stdout.flush()
class runcommand_drop_privs(RunCommandMixin):
def __init__(self, *args):
super().__init__(*args)
self._user_pw = self._find_user_pw()
self._tmpdir = self._find_tmpdir()
if self._user_pw:
ALCLog.debug(
_("Found user: %(user)s, temporary directory: %(dir)s")
% {'user': self._user_pw.pw_name, 'dir': self._tmpdir})
def fchown_tmpfile(self, fileno):
if self._user_pw:
os.fchown(fileno, self._user_pw.pw_uid, self._user_pw.pw_gid)
def get_tmpdir(self):
return self._tmpdir
def get_preexec_fn(self):
if not self._user_pw:
return None
def preexec():
try:
os.setgid(self._user_pw.pw_gid)
os.setuid(self._user_pw.pw_uid)
except Exception as ex:
ALCLog.error(_("Error: %s") % str(ex))
return preexec
def get_environ(self):
if not self._user_pw:
return None
newenv = os.environ
newenv['HOME'] = self._user_pw.pw_dir
newenv['SHELL'] = self._user_pw.pw_shell
for envvar in ('USERNAME', 'USER', 'LOGNAME'):
newenv[envvar] = self._user_pw.pw_name
if self._tmpdir:
for envvar in ('TMPDIR', 'TMP', 'TEMPDIR', 'TEMP'):
newenv[envvar] = self._tmpdir
return newenv
def _find_user_pw(self):
if os.getuid() != 0:
return None
pwdata = None
for envvar in ('APT_LISTCHANGES_USER', 'SUDO_USER', 'USERNAME'):
if envvar in os.environ:
try:
user = os.environ[envvar]
pwdata = pwd.getpwnam(user) if not user.isdigit() \
else pwd.getpwuid(user)
break # check the first environment variable only
except Exception as ex:
raise RuntimeError(
_("Error getting user from variable '%(envvar)s': "
"%(errmsg)s")
% {'envvar': envvar, 'errmsg': str(ex)}) from ex
if pwdata and pwdata.pw_uid:
return pwdata
ALCLog.warning(_("Cannot find suitable user to drop root privileges"))
return None
def _find_tmpdir(self):
if not self._user_pw:
return None
tmpdir = tempfile.gettempdir()
flags = os.R_OK | os.W_OK | os.X_OK
os.setreuid(self._user_pw.pw_uid, 0)
try:
# check the default directory from $TMPDIR variable
if os.access(tmpdir, flags):
return tmpdir
checked_tmpdirs = [tmpdir]
# replace pam_tmpdir's directory /tmp/user/0 into e.g.
# /tmp/user/1000
if tmpdir.endswith("/0"):
tmpdir = tmpdir[0:-1] + str(self._user_pw.pw_uid)
if os.access(tmpdir, flags):
return tmpdir
checked_tmpdirs.append(tmpdir)
# finally try hard-coded location
if tmpdir != "/tmp":
tmpdir = "/tmp"
if os.access(tmpdir, flags):
return tmpdir
checked_tmpdirs.append(tmpdir)
raise RuntimeError(
_("None of the following directories is accessible"
" by user %(user)s: %(dirs)s")
% {'user': self._user_pw.pw_name,
'dirs': str(checked_tmpdirs)})
finally:
os.setuid(0)
class XtermMixin(runcommand_drop_privs):
def __init__(self, *args):
super().__init__(*args)
self.mode = os.P_NOWAIT
self.wait = False
self.xterm = shlex.split(self.config.get(
'xterm', 'x-terminal-emulator'))
def get_command(self):
return self.xterm + ['-T', self.title, '-e'] + self.command
def needs_tty_stdin(self):
return False
class pager_frd(RunCommandMixin, prepend_title, ttyconfirm, FancyProgressMixin,
Frontend):
def __init__(self, *args):
super().__init__(*args)
self._setup_less_variable()
self.command = shlex.split(self.config.get('pager', 'sensible-pager'))
self.suffix = '.txt'
self.enc = ALChacks.system_encoding()
def _setup_less_variable(self):
# pylint: disable=consider-using-f-string
# This needs to be a % string so gettext will find it.
prompt = "-P?e(%s)$" % _("press q to quit",
"Do not translate the 'q'.")
less = os.environ.get('LESS', '')
if not less:
os.environ['LESS'] = prompt
return
# When the environment contains the LESS variable, try to disable
# flags like -E (--QUIT-AT-EOF) and -F (--quit-if-one-screen) that
# might cause to less program to quit before even user is able to
# see the generated file.
if 'E' in less or '--QUIT-A' in less:
less += ' -+E'
if 'F' in less or '--quit-i' in less:
less += ' -+F'
os.environ['LESS'] = less + ' ' + prompt
def needs_tty_stdin(self):
return True
class xterm_pager_frd(XtermMixin, pager_frd):
pass
class html(titled):
# LP bug-closing format requires the colon after "LP", but many people
# say "LP #123456" when talking informally about bugs.
lp_bug_stanza_re = re.compile(r'(?:lp:?\s+\#\d+(?:,\s*\#\d+)*)', re.I)
lp_bug_re = re.compile(r'(?P<linktext>#(?P<bugnum>\d+))', re.I)
lp_bug_fmt = r'<a href="https://launchpad.net/bugs/\g<bugnum>">\g' \
r'<linktext></a>'
bug_stanza_re = re.compile(
r'(?:closes:\s*(?:bug)?\#?\s?\d+(?:,\s*(?:bug)?\#?\s?\d+)*|'
r'(?<!">)#\d+)', re.I)
bug_re = re.compile(r'(?P<linktext>#?(?P<bugnum>\d+))', re.I)
bug_fmt = r'<a href="https://bugs.debian.org/\g<bugnum>">\g<linktext></a>'
cve_re = re.compile(r'\bC(VE|AN)-(19|20|21)\d\d-\d{4,7}\b')
cve_fmt = r'<a href="https://cve.mitre.org/cgi-bin/cvename.cgi?' \
r'name=\g<0>">\g<0></a>'
# regxlib.com
email_re = re.compile(
r'([a-zA-Z0-9_\+\-\.]+)@(([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|'
r'(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)')
email_fmt = r'<a href="mailto:\g<0>">\g<0></a>'
url_re = re.compile(
r'(ht|f)tps?\://[a-zA-Z0-9\-\.]+\.[a-zA-Z]{2,3}(:[a-zA-Z0-9]*)?/'
r'?([a-zA-Z0-9\-\._\?\,\'/\\\+&;%\$#\=~])*')
def convert_to_html(self, title, text):
self.set_title(title)
return self._render(text)
def _html_encode(self, text):
return text\
.replace('&', '&')\
.replace('<', '<')\
.replace('>', '>')
def _render_text(self, htmltext, text):
text = self._html_encode(text)
text = self.lp_bug_stanza_re.sub(
lambda m: self.lp_bug_re.sub(self.lp_bug_fmt, m.group(0)), text)
text = self.bug_stanza_re.sub(
lambda m: self.bug_re.sub(self.bug_fmt, m.group(0)), text)
text = self.cve_re.sub(self.cve_fmt, text)
text = self.email_re.sub(self.email_fmt, text)
htmltext.write(text)
def _render_line(self, htmltext, line):
prevpos = 0
for match in self.url_re.finditer(line):
self._render_text(htmltext, line[prevpos:match.start()])
prevpos = match.end()
url = match.group()
if url[-1] in ('.', ',', ';', '?', '\''):
url = url[:-1]
prevpos -= 1
htmltext.write(f'<a href="{url}">{self._html_encode(url)}</a>')
self._render_text(htmltext, line[prevpos:])
def _render(self, text):
htmltext = io.StringIO()
htmltext.write('''<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>''')
htmltext.write(self.title)
htmltext.write('''</title>
</head>
<body>
<pre>''')
for line in text.split('\n'):
self._render_line(htmltext, line)
htmltext.write('\n')
htmltext.write('</pre></body></html>')
return htmltext.getvalue()
class browser_frd(html, runcommand_drop_privs, ttyconfirm, FancyProgressMixin,
Frontend):
def __init__(self, *args):
super().__init__(*args)
self.command = shlex.split(self.config.get(
'browser', 'sensible-browser'))
self.suffix = '.html'
self.enc = ALChacks.utf8_encoding()
def needs_tty_stdin(self):
return True
class xterm_browser_frd(XtermMixin, browser_frd):
pass
|