From 3f9853f7ec61742bcfd68f5bf0253d443e0b6b0c Mon Sep 17 00:00:00 2001 From: Joe R Date: Tue, 28 Dec 2021 17:13:02 -0500 Subject: [PATCH] Fixed HTTPS linking in the documentation. --- html-src/news.html | 6 +++--- pysollib/kivy/tkhtml.py | 3 ++- pysollib/pysolgtk/tkhtml.py | 3 ++- pysollib/ui/tktile/tkhtml.py | 3 ++- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/html-src/news.html b/html-src/news.html index 0d5942ba..f48f3f37 100644 --- a/html-src/news.html +++ b/html-src/news.html @@ -35,7 +35,7 @@ Enhancements to the tree select dialogs for selecting games, cardsets, and table
  • -Further additions/improvements to the documentation. +Further additions/improvements to the documentation.

  • @@ -138,10 +138,10 @@ v2.8.0. New in this release:

    Fixed Three Peaks scoring.

  • -

    Compatibility with Pillow 6.x - https://github.com/shlomif/PySolFC/issues/108

    +

    Compatibility with Pillow 6.x (ticket)

  • -

    Restore the "Save games geometry" feature - https://github.com/shlomif/PySolFC/issues/84

    +

    Restore the "Save games geometry" feature (ticket)

  • Added a NEWS.asciidoc file.

    diff --git a/pysollib/kivy/tkhtml.py b/pysollib/kivy/tkhtml.py index 54c0db0e..c42f96ab 100644 --- a/pysollib/kivy/tkhtml.py +++ b/pysollib/kivy/tkhtml.py @@ -39,7 +39,8 @@ from pysollib.mygettext import _ from pysollib.pysoltk import MfxMessageDialog from pysollib.settings import TITLE -REMOTE_PROTOCOLS = ("ftp:", "gopher:", "http:", "mailto:", "news:", "telnet:") +REMOTE_PROTOCOLS = ("ftp:", "gopher:", "http:", "https:", "mailto:", "news:", + "telnet:") # ************************************************************************ # * diff --git a/pysollib/pysolgtk/tkhtml.py b/pysollib/pysolgtk/tkhtml.py index f1c18659..f5d2e5d6 100644 --- a/pysollib/pysolgtk/tkhtml.py +++ b/pysollib/pysolgtk/tkhtml.py @@ -48,7 +48,8 @@ if __name__ == '__main__': import gettext gettext.install('pysol', d, unicode=True) -REMOTE_PROTOCOLS = ('ftp:', 'gopher:', 'http:', 'mailto:', 'news:', 'telnet:') +REMOTE_PROTOCOLS = ('ftp:', 'gopher:', 'http:', 'https:', 'mailto:', 'news:', + 'telnet:') # ************************************************************************ diff --git a/pysollib/ui/tktile/tkhtml.py b/pysollib/ui/tktile/tkhtml.py index afcb7257..989b5b70 100644 --- a/pysollib/ui/tktile/tkhtml.py +++ b/pysollib/ui/tktile/tkhtml.py @@ -33,7 +33,8 @@ from pysollib.ui.tktile.tkutil import bind, unbind_destroy from six.moves import tkinter -REMOTE_PROTOCOLS = ("ftp:", "gopher:", "http:", "mailto:", "news:", "telnet:") +REMOTE_PROTOCOLS = ("ftp:", "gopher:", "http:", "https:", "mailto:", "news:", + "telnet:") # ************************************************************************ # *