This commit is contained in:
Acts1631 2026-07-07 18:08:09 -04:00 committed by GitHub
commit 795c07698a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 15 additions and 15 deletions

View file

@ -6,8 +6,8 @@ Irssi is a modular text mode chat client. It comes with IRC support
built in, and there are third party built in, and there are third party
[ICB](https://github.com/jperkin/irssi-icb), [ICB](https://github.com/jperkin/irssi-icb),
[SILC](http://www.silcnet.org/), [SILC](http://www.silcnet.org/),
[XMPP](http://cybione.org/~irssi-xmpp/) (Jabber), [XMPP](https://cybione.org/~irssi-xmpp/) (Jabber),
[PSYC](http://about.psyc.eu/Irssyc) and [PSYC](https://about.psyc.eu/Irssyc) and
[Quassel](https://github.com/phhusson/quassel-irssi) protocol modules [Quassel](https://github.com/phhusson/quassel-irssi) protocol modules
available. available.

View file

@ -1026,7 +1026,7 @@ Server::isupport(name)
script. If the item is not present returns undef, if the item has no value script. If the item is not present returns undef, if the item has no value
then "" is returned use defined $server->isupport("name") if you need to then "" is returned use defined $server->isupport("name") if you need to
check whether a property is present. check whether a property is present.
See http://tools.ietf.org/id/draft-brocklesby-irc-isupport-03.txt See https://tools.ietf.org/id/draft-brocklesby-irc-isupport-03.txt
for more information on the ISUPPORT numeric. for more information on the ISUPPORT numeric.
*** IRC channels *** IRC channels

View file

@ -14,7 +14,7 @@ $VERSION = '3.00';
name => 'Scroll buffer restorer', name => 'Scroll buffer restorer',
description => 'Saves the buffer for /upgrade, so that no information is lost', description => 'Saves the buffer for /upgrade, so that no information is lost',
license => 'Public Domain', license => 'Public Domain',
url => 'http://juerd.nl/irssi/', url => 'https://juerd.nl/irssi/',
changed => 'Thu Mar 29 10:00 CEST 2018', 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', 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!', note1 => 'This script HAS TO BE in your scripts/autorun!',

View file

@ -19,7 +19,7 @@ $VERSION = "2.2";
name => "dns", name => "dns",
description => "/DNS <nick>|<host>|<ip> ...", description => "/DNS <nick>|<host>|<ip> ...",
license => "Public Domain", license => "Public Domain",
url => "http://irssi.org/", url => "https://irssi.org/",
changed => "2019-01-24" 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", description => "Fully customizable mail counter statusbar item with multiple mailbox and multiple Maildir support",
sbitems => "mail", sbitems => "mail",
license => "Public Domain", license => "Public Domain",
url => "http://irssi.org, http://scripts.irssi.de", url => "https://irssi.org, http://scripts.irssi.de",
); );
# Mail counter statusbar item # Mail counter statusbar item
@ -148,7 +148,7 @@ sub mbox_count {
opendir(DIR, "$mailfile/cur") or return 0; opendir(DIR, "$mailfile/cur") or return 0;
while (defined(my $file = readdir(DIR))) { while (defined(my $file = readdir(DIR))) {
next if $file =~ /^(.|..)$/; 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 # My old regexps were useless if the MUA added any
# non-default flags -qvr # non-default flags -qvr
# #

View file

@ -1279,7 +1279,7 @@ sub cmd_scripassist {
my $number = defined $args[1] ? $args[1] : 10; my $number = defined $args[1] ? $args[1] : 10;
bg_do("top ".$number); bg_do("top ".$number);
} elsif ($args[0] eq 'cpan' && defined $args[1]) { } 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]) { } elsif ($args[0] eq 'autorun' && defined $args[1]) {
toggle_autorun($args[1]); toggle_autorun($args[1]);
} elsif ($args[0] eq 'new') { } 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', description => 'Adds a usercount for a channel as a statusbar item',
sbitems => 'usercount', sbitems => 'usercount',
license => 'GNU GPLv2 or later', license => 'GNU GPLv2 or later',
url => 'http://irssi.dgl.cx/', url => 'https://irssi.dgl.cx/',
changes => 'Only show halfops if server supports them', changes => 'Only show halfops if server supports them',
); );

View file

@ -2,8 +2,8 @@
* This is an implementation of wcwidth() and wcswidth() (defined in * This is an implementation of wcwidth() and wcswidth() (defined in
* IEEE Std 1002.1-2001) for Unicode. * IEEE Std 1002.1-2001) for Unicode.
* *
* http://www.opengroup.org/onlinepubs/007904975/functions/wcwidth.html * https://www.opengroup.org/onlinepubs/007904975/functions/wcwidth.html
* http://www.opengroup.org/onlinepubs/007904975/functions/wcswidth.html * https://www.opengroup.org/onlinepubs/007904975/functions/wcswidth.html
* *
* In fixed-width output devices, Latin characters all occupy a single * In fixed-width output devices, Latin characters all occupy a single
* "cell" position of equal width, whereas ideographic CJK characters * "cell" position of equal width, whereas ideographic CJK characters
@ -48,7 +48,7 @@
* but also of each presentation form, something the author of these * but also of each presentation form, something the author of these
* routines has avoided to do so far. * routines has avoided to do so far.
* *
* http://www.unicode.org/unicode/reports/tr11/ * https://www.unicode.org/unicode/reports/tr11/
* *
* Markus Kuhn -- 2007-05-25 (Unicode 5.0) * Markus Kuhn -- 2007-05-25 (Unicode 5.0)
* *
@ -56,7 +56,7 @@
* for any purpose and without fee is hereby granted. The author * for any purpose and without fee is hereby granted. The author
* disclaims all warranties with regard to this software. * disclaims all warranties with regard to this software.
* *
* Latest version: http://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c * Latest version: https://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c
*/ */
#include <irssi/src/core/utf8.h> #include <irssi/src/core/utf8.h>

View file

@ -28,7 +28,7 @@
/* /*
* Based on IRCv3 SASL Extension Specification: * Based on IRCv3 SASL Extension Specification:
* http://ircv3.net/specs/extensions/sasl-3.1.html * https://ircv3.net/specs/extensions/sasl-3.1.html
*/ */
#define AUTHENTICATE_CHUNK_SIZE 400 /* bytes */ #define AUTHENTICATE_CHUNK_SIZE 400 /* bytes */

View file

@ -49,7 +49,7 @@
/* /*
* Specified in OTR protocol version 3. See: * Specified in OTR protocol version 3. See:
* http://www.cypherpunks.ca/otr/Protocol-v3-4.0.0.html * https://www.cypherpunks.ca/otr/Protocol-v3-4.0.0.html
*/ */
#define OTR_MSG_BEGIN_TAG "?OTR:" #define OTR_MSG_BEGIN_TAG "?OTR:"
#define OTR_MSG_END_TAG '.' #define OTR_MSG_END_TAG '.'