[Xfce4-commits] [apps/catfish] 01/01: Replaced project URLs with HTTPS where possible

noreply at xfce.org noreply at xfce.org
Sun Jan 20 16:29:50 CET 2019


This is an automated email from the git hooks/post-receive script.

b   l   u   e   s   a   b   r   e       p   u   s   h   e   d       a       c   o   m   m   i   t       t   o       b   r   a   n   c   h       m   a   s   t   e   r   
   in repository apps/catfish.

commit 94a6d0e41c910e4d2b1935f999d21072225b4d41
Author: Sean Davis <smd.seandavis at gmail.com>
Date:   Sun Jan 20 10:29:45 2019 -0500

    Replaced project URLs with HTTPS where possible
---
 ChangeLog                      | 3 ++-
 README                         | 4 ++--
 bin/catfish                    | 2 +-
 catfish/AboutCatfishDialog.py  | 2 +-
 catfish/CatfishSearchEngine.py | 2 +-
 catfish/CatfishWindow.py       | 2 +-
 catfish/__init__.py            | 2 +-
 catfish_lib/AboutDialog.py     | 2 +-
 catfish_lib/Builder.py         | 2 +-
 catfish_lib/CatfishSettings.py | 2 +-
 catfish_lib/SudoDialog.py      | 2 +-
 catfish_lib/Thumbnailer.py     | 2 +-
 catfish_lib/Window.py          | 2 +-
 catfish_lib/__init__.py        | 2 +-
 catfish_lib/catfishconfig.py   | 2 +-
 catfish_lib/helpers.py         | 2 +-
 data/ui/AboutCatfishDialog.ui  | 2 +-
 po/POTFILES.in                 | 2 +-
 setup.py                       | 2 +-
 19 files changed, 21 insertions(+), 20 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 49acfd0..811ccb9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,7 @@ v1.4.7:
    - Cleaner, easier to read manpage contents
    - Added information about the --path flag to help and the manpage
    - Updated AppStream requirements
+   - Replaced project URLs with HTTPS where possible
    - The window layout now respects the current desktop (Xfce #14486)
      - A headerbar layout is used for Budgie, GNOME, and Pantheon
      - All other desktops use the traditional titlebar layout
@@ -28,7 +29,7 @@ v1.4.6:
  + General:
    - Catfish is now part of Xfce! Update your links:
      - Homepage: https://docs.xfce.org/apps/catfish/start
-     - Bugs: http://bugzilla.xfce.org/buglist.cgi?product=Catfish
+     - Bugs: https://bugzilla.xfce.org/buglist.cgi?product=Catfish
      - VCS: https://git.xfce.org/apps/catfish
      - Translations: https://www.transifex.com/xfce/public
    - Upgraded thumbnailer, based on the FD.o Thumbnail Spec:
diff --git a/README b/README
index 53b9636..698e264 100644
--- a/README
+++ b/README
@@ -15,7 +15,7 @@ Catfish is part of the Xfce project. All project resources can be found
 at the following locations:
 
 * [Homepage](https://docs.xfce.org/apps/catfish/start)
-* [Bugs](http://bugzilla.xfce.org/buglist.cgi?product=Catfish)
+* [Bugs](https://bugzilla.xfce.org/buglist.cgi?product=Catfish)
 * [Code](https://git.xfce.org/apps/catfish)
 * [Translations](https://www.transifex.com/xfce/public)
 
@@ -32,4 +32,4 @@ Installation and Bugs
 
 For installation instructions, please read INSTALL.
 
-Please send all bugs, suggestions, and feature requests to [the Xfce Bugzilla](http://bugzilla.xfce.org/buglist.cgi?product=Catfish)
+Please send all bugs, suggestions, and feature requests to [the Xfce Bugzilla](https://bugzilla.xfce.org/buglist.cgi?product=Catfish)
diff --git a/bin/catfish b/bin/catfish
index 0af5f71..956a46e 100755
--- a/bin/catfish
+++ b/bin/catfish
@@ -14,7 +14,7 @@
 #   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, see <http://www.gnu.org/licenses/>.
+#   with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 import locale
 locale.textdomain('catfish')
diff --git a/catfish/AboutCatfishDialog.py b/catfish/AboutCatfishDialog.py
index 1133ee8..2c43244 100644
--- a/catfish/AboutCatfishDialog.py
+++ b/catfish/AboutCatfishDialog.py
@@ -14,7 +14,7 @@
 #   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, see <http://www.gnu.org/licenses/>.
+#   with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 import logging
 
diff --git a/catfish/CatfishSearchEngine.py b/catfish/CatfishSearchEngine.py
index 9436de3..2680210 100644
--- a/catfish/CatfishSearchEngine.py
+++ b/catfish/CatfishSearchEngine.py
@@ -14,7 +14,7 @@
 #   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, see <http://www.gnu.org/licenses/>.
+#   with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 import logging
 
diff --git a/catfish/CatfishWindow.py b/catfish/CatfishWindow.py
index 852ca9d..7acdb48 100644
--- a/catfish/CatfishWindow.py
+++ b/catfish/CatfishWindow.py
@@ -14,7 +14,7 @@
 #   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, see <http://www.gnu.org/licenses/>.
+#   with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 import datetime
 import hashlib
diff --git a/catfish/__init__.py b/catfish/__init__.py
index b03c639..45be7f2 100644
--- a/catfish/__init__.py
+++ b/catfish/__init__.py
@@ -14,7 +14,7 @@
 #   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, see <http://www.gnu.org/licenses/>.
+#   with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 import optparse
 
diff --git a/catfish_lib/AboutDialog.py b/catfish_lib/AboutDialog.py
index c8f6bdd..230c855 100644
--- a/catfish_lib/AboutDialog.py
+++ b/catfish_lib/AboutDialog.py
@@ -14,7 +14,7 @@
 #   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, see <http://www.gnu.org/licenses/>.
+#   with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 from gi.repository import Gtk  # pylint: disable=E0611
 
diff --git a/catfish_lib/Builder.py b/catfish_lib/Builder.py
index 4e765b2..b45f30d 100644
--- a/catfish_lib/Builder.py
+++ b/catfish_lib/Builder.py
@@ -14,7 +14,7 @@
 #   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, see <http://www.gnu.org/licenses/>.
+#   with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 '''Enhances builder connections, provides object to access glade objects'''
 
diff --git a/catfish_lib/CatfishSettings.py b/catfish_lib/CatfishSettings.py
index 93d50b4..60e162b 100644
--- a/catfish_lib/CatfishSettings.py
+++ b/catfish_lib/CatfishSettings.py
@@ -14,7 +14,7 @@
 #   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, see <http://www.gnu.org/licenses/>.
+#   with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 import os
 
diff --git a/catfish_lib/SudoDialog.py b/catfish_lib/SudoDialog.py
index fdb1f84..ddcf6eb 100644
--- a/catfish_lib/SudoDialog.py
+++ b/catfish_lib/SudoDialog.py
@@ -14,7 +14,7 @@
 #   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, see <http://www.gnu.org/licenses/>.
+#   with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 from gi.repository import Gtk, GdkPixbuf
 import os
diff --git a/catfish_lib/Thumbnailer.py b/catfish_lib/Thumbnailer.py
index 912a05a..5692e53 100644
--- a/catfish_lib/Thumbnailer.py
+++ b/catfish_lib/Thumbnailer.py
@@ -13,7 +13,7 @@
 #   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, see <http://www.gnu.org/licenses/>.
+#   with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 import hashlib
 import mimetypes
diff --git a/catfish_lib/Window.py b/catfish_lib/Window.py
index 7cea5d4..607a5f7 100644
--- a/catfish_lib/Window.py
+++ b/catfish_lib/Window.py
@@ -14,7 +14,7 @@
 #   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, see <http://www.gnu.org/licenses/>.
+#   with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 from gi.repository import Gtk, Gdk  # pylint: disable=E0611
 import logging
diff --git a/catfish_lib/__init__.py b/catfish_lib/__init__.py
index a54cd4a..1e7f503 100644
--- a/catfish_lib/__init__.py
+++ b/catfish_lib/__init__.py
@@ -14,7 +14,7 @@
 #   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, see <http://www.gnu.org/licenses/>.
+#   with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 '''facade - makes catfish_lib package easy to refactor
 
diff --git a/catfish_lib/catfishconfig.py b/catfish_lib/catfishconfig.py
index bf8840a..6370f51 100644
--- a/catfish_lib/catfishconfig.py
+++ b/catfish_lib/catfishconfig.py
@@ -14,7 +14,7 @@
 #   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, see <http://www.gnu.org/licenses/>.
+#   with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 import os
 
diff --git a/catfish_lib/helpers.py b/catfish_lib/helpers.py
index a8613fb..46a9c78 100644
--- a/catfish_lib/helpers.py
+++ b/catfish_lib/helpers.py
@@ -14,7 +14,7 @@
 #   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, see <http://www.gnu.org/licenses/>.
+#   with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 """Helpers for an Ubuntu application."""
 import logging
diff --git a/data/ui/AboutCatfishDialog.ui b/data/ui/AboutCatfishDialog.ui
index 83fb7f5..0253823 100644
--- a/data/ui/AboutCatfishDialog.ui
+++ b/data/ui/AboutCatfishDialog.ui
@@ -28,7 +28,7 @@ MERCHANTABILITY, SATISFACTORY QUALITY, 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, see <http://www.gnu.org/licenses/>.
+with this program.  If not, see <https://www.gnu.org/licenses/>.
 </property>
     <property name="authors">Copyright (C) 2007-2012 Christian Dywan <christian at twotoasts.de>
 Copyright (C) 2012-2019 Sean Davis <smd.seandavis at gmail.com></property>
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 3b4201d..51e9f74 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -11,7 +11,7 @@
 # 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, see <http://www.gnu.org/licenses/>.
+# with this program.  If not, see <https://www.gnu.org/licenses/>.
 ### END LICENSE
 
 # Desktop File
diff --git a/setup.py b/setup.py
index 4e5c5b7..fa66cef 100644
--- a/setup.py
+++ b/setup.py
@@ -14,7 +14,7 @@
 #   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, see <http://www.gnu.org/licenses/>.
+#   with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 import codecs
 import os

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list