Switch http:// URLs to https:// where available

Upgrade 14 http:// URLs across 10 files to https:// after verifying
the sites support HTTPS.
This commit is contained in:
Acts1631 2026-07-07 18:03:16 -04:00
commit 10ce652d7a
10 changed files with 15 additions and 15 deletions

View file

@ -14,7 +14,7 @@ $VERSION = '3.00';
name => 'Scroll buffer restorer',
description => 'Saves the buffer for /upgrade, so that no information is lost',
license => 'Public Domain',
url => 'http://juerd.nl/irssi/',
url => 'https://juerd.nl/irssi/',
changed => 'Thu Mar 29 10:00 CEST 2018',
changes => 'Fixed file permissions (leaked everything via filesystem), rewritten to use Storable and print to correct levels',
note1 => 'This script HAS TO BE in your scripts/autorun!',

View file

@ -19,7 +19,7 @@ $VERSION = "2.2";
name => "dns",
description => "/DNS <nick>|<host>|<ip> ...",
license => "Public Domain",
url => "http://irssi.org/",
url => "https://irssi.org/",
changed => "2019-01-24"
);

View file

@ -8,7 +8,7 @@ $VERSION = "2.93";
description => "Fully customizable mail counter statusbar item with multiple mailbox and multiple Maildir support",
sbitems => "mail",
license => "Public Domain",
url => "http://irssi.org, http://scripts.irssi.de",
url => "https://irssi.org, http://scripts.irssi.de",
);
# Mail counter statusbar item
@ -148,7 +148,7 @@ sub mbox_count {
opendir(DIR, "$mailfile/cur") or return 0;
while (defined(my $file = readdir(DIR))) {
next if $file =~ /^(.|..)$/;
# Maildir flags: http://cr.yp.to/proto/maildir.html
# Maildir flags: https://cr.yp.to/proto/maildir.html
# My old regexps were useless if the MUA added any
# non-default flags -qvr
#

View file

@ -1279,7 +1279,7 @@ sub cmd_scripassist {
my $number = defined $args[1] ? $args[1] : 10;
bg_do("top ".$number);
} elsif ($args[0] eq 'cpan' && defined $args[1]) {
call_openurl('http://search.cpan.org/search?mode=module&query='.$args[1]);
call_openurl('https://search.cpan.org/search?mode=module&query='.$args[1]);
} elsif ($args[0] eq 'autorun' && defined $args[1]) {
toggle_autorun($args[1]);
} elsif ($args[0] eq 'new') {

View file

@ -9,7 +9,7 @@ $VERSION = "1.20";
description => 'Adds a usercount for a channel as a statusbar item',
sbitems => 'usercount',
license => 'GNU GPLv2 or later',
url => 'http://irssi.dgl.cx/',
url => 'https://irssi.dgl.cx/',
changes => 'Only show halfops if server supports them',
);