[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master updated (d47e05219f -> f8b410f4a1)
From: |
Amin Bandali |
Subject: |
master updated (d47e05219f -> f8b410f4a1) |
Date: |
Wed, 23 Nov 2022 21:24:31 -0500 (EST) |
bandali pushed a change to branch master.
from d47e05219f Add csharp-mode and csharp-ts-mode
new 71397175aa Add GS2 authorization to sasl-scram-rfc
new da30a4908e Don't set erc-networks--id until network is known
new dc6ff142bc Make erc--server-reconnecting non-buffer-local
new 4c4936fab2 Support local ERC modules in erc-mode buffers
new ae254a65cd Call erc-login indirectly via new generic wrapper
new ed8862c404 Add non-IRCv3 SASL module to ERC
new 5258f36168 Accept functions in place of passwords in ERC
new f8b410f4a1 Add test scenarios for local ERC modules
Summary of changes:
doc/misc/erc.texi | 190 +++++++++-
etc/ERC-NEWS | 16 +-
lisp/erc/erc-backend.el | 43 ++-
lisp/erc/erc-common.el | 82 +++-
lisp/erc/erc-compat.el | 97 ++++-
lisp/erc/erc-goodies.el | 1 +
lisp/erc/erc-networks.el | 53 ++-
lisp/erc/erc-sasl.el | 417 +++++++++++++++++++++
lisp/erc/erc-services.el | 5 +-
lisp/erc/erc.el | 166 +++++---
lisp/net/sasl-scram-rfc.el | 21 +-
test/lisp/erc/erc-sasl-tests.el | 344 +++++++++++++++++
.../erc/erc-scenarios-base-association-nick.el | 84 +++--
test/lisp/erc/erc-scenarios-base-local-modules.el | 243 ++++++++++++
test/lisp/erc/erc-scenarios-sasl.el | 144 +++++++
test/lisp/erc/erc-services-tests.el | 16 +-
test/lisp/erc/erc-tests.el | 178 +++++++++
.../erc/resources/base/local-modules/first.eld | 53 +++
.../erc/resources/base/local-modules/fourth.eld | 53 +++
.../erc/resources/base/local-modules/second.eld | 47 +++
.../erc/resources/base/local-modules/third.eld | 43 +++
test/lisp/erc/resources/sasl/external.eld | 33 ++
test/lisp/erc/resources/sasl/plain-failed.eld | 16 +
test/lisp/erc/resources/sasl/plain.eld | 39 ++
test/lisp/erc/resources/sasl/scram-sha-1.eld | 47 +++
test/lisp/erc/resources/sasl/scram-sha-256.eld | 47 +++
26 files changed, 2314 insertions(+), 164 deletions(-)
create mode 100644 lisp/erc/erc-sasl.el
create mode 100644 test/lisp/erc/erc-sasl-tests.el
create mode 100644 test/lisp/erc/erc-scenarios-base-local-modules.el
create mode 100644 test/lisp/erc/erc-scenarios-sasl.el
create mode 100644 test/lisp/erc/resources/base/local-modules/first.eld
create mode 100644 test/lisp/erc/resources/base/local-modules/fourth.eld
create mode 100644 test/lisp/erc/resources/base/local-modules/second.eld
create mode 100644 test/lisp/erc/resources/base/local-modules/third.eld
create mode 100644 test/lisp/erc/resources/sasl/external.eld
create mode 100644 test/lisp/erc/resources/sasl/plain-failed.eld
create mode 100644 test/lisp/erc/resources/sasl/plain.eld
create mode 100644 test/lisp/erc/resources/sasl/scram-sha-1.eld
create mode 100644 test/lisp/erc/resources/sasl/scram-sha-256.eld
- master updated (d47e05219f -> f8b410f4a1),
Amin Bandali <=
- master dc6ff142bc 3/8: Make erc--server-reconnecting non-buffer-local, Amin Bandali, 2022/11/23
- master 5258f36168 7/8: Accept functions in place of passwords in ERC, Amin Bandali, 2022/11/23
- master 71397175aa 1/8: Add GS2 authorization to sasl-scram-rfc, Amin Bandali, 2022/11/23
- master ae254a65cd 5/8: Call erc-login indirectly via new generic wrapper, Amin Bandali, 2022/11/23
- master ed8862c404 6/8: Add non-IRCv3 SASL module to ERC, Amin Bandali, 2022/11/23
- master da30a4908e 2/8: Don't set erc-networks--id until network is known, Amin Bandali, 2022/11/23
- master f8b410f4a1 8/8: Add test scenarios for local ERC modules, Amin Bandali, 2022/11/23
- master 4c4936fab2 4/8: Support local ERC modules in erc-mode buffers, Amin Bandali, 2022/11/23