emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/erc/ChangeLog,v


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/erc/ChangeLog,v
Date: Fri, 05 Jan 2007 02:09:08 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Miles Bader <miles>     07/01/05 02:09:07

Index: lisp/erc/ChangeLog
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/erc/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -b -r1.35 -r1.36
--- lisp/erc/ChangeLog  17 Dec 2006 06:14:02 -0000      1.35
+++ lisp/erc/ChangeLog  5 Jan 2007 02:09:07 -0000       1.36
@@ -1,3 +1,56 @@
+2006-12-28  Michael Olson  <address@hidden>
+
+       * erc-list.el: Change header to mention that this is part of ERC,
+       rather than GNU Emacs.
+
+       * erc-networks.el (erc-server-alist): Add Ars OpenIRC and
+       LinuxChix networks.  Thanks to Angelina Carlton for mentioning
+       them.  Properly escape periods in Konfido.Net and Kewl.Org.
+       (erc-networks-alist): Add entries for Ars and LinuxChix, though
+       the latter does not actually provide an announced network name.
+
+       * erc-services.el (erc-nickserv-identify-mode): Add 'both method,
+       which waits for a NickServ message if the network supports it,
+       otherwise sends the password after connecting.
+       (erc-nickserv-identify-mode): Default to 'both.
+       (erc-nickserv-passwords): Add OFTC and Azzurra to custom options.
+       (erc-nickserv-alist): Indentation fix.
+       (erc-nickserv-identify-on-connect)
+       (erc-nickserv-identify-on-nick-change): Handle 'both method.
+
+2006-12-28  Leo  <address@hidden>  (tiny change)
+
+       * erc.el (erc-iswitchb): Wrap body in unwind-protect so that
+       hitting C-g does not leave iswitchb-mode on.
+
+2006-12-27  Michael Olson  <address@hidden>
+
+       * erc.el (erc-cmd-RECONNECT): New command that calls
+       erc-server-reconnect.
+
+       * erc-backend.el (erc-server-reconnect-count): New server variable
+       that keeps track of reconnection attempts.
+       (erc-server-reconnect-attempts): New option that determines the
+       number of reconnection attempts that ERC will make per server.
+       (erc-server-reconnect-timeout): New option that determines the
+       amount of time, in seconds, that ERC will wait between successive
+       reconnect attempts.
+       (erc-server-reconnect): New function that reestablishes the
+       current IRC connection.  Move some commands from
+       erc-process-sentinel-1 here.
+       (erc-process-sentinel-1): If we have been disconnected, loop until
+       we either reconnect or run out of attempts.
+       (erc-server-reconnect-p): Move higher and make this a defsubst,
+       since I'm worried about the current buffer changing from
+       underneath us.  Implement limit of number of reconnect attempts..
+
+       * erc.texi (Getting Started): Update for /RECONNECT command.
+
+2006-12-26  Michael Olson  <address@hidden>
+
+       * erc.el (erc-open): Restore old point correctly, or at least get
+       closer to doing so than before.
+
 2006-12-13  Leo  <address@hidden>  (tiny change)
 
        * erc.el (erc-iswitchb): Temporarily enable iswitchb mode if it
@@ -38,7 +91,7 @@
        (erc-update-current-channel-member, erc-load-script):
        (erc-mode-line-away-status-format): Doc fixes.
 
-2006-11-20  Andrea Russo  <address@hidden>
+2006-11-20  Andrea Russo  <address@hidden>  (tiny change)
 
        * erc-dcc.el (erc-dcc-chat-setup): Initialize `erc-input-marker'
        before calling `erc-display-prompt'.
@@ -111,7 +164,7 @@
        `erc-show-my-nick' is non-nil.
        (erc-compute-server): Doc fix.
 
-2006-10-01  John J Foerch  <address@hidden>
+2006-10-01  John J Foerch  <address@hidden>  (tiny change)
 
        * erc-stamp.el (erc-insert-timestamp-right): Exclude the newline
        from the erc-timestamp field.
@@ -121,7 +174,7 @@
        * erc-nicklist.el (erc-nicklist-insert-contents): Add missing
        parenthesis.  Thanks to Stephan Stahl for the report.
 
-2006-09-10  Eric Hanchrow  <address@hidden>
+2006-09-10  Eric Hanchrow  <address@hidden>  (tiny change)
 
        * erc.el (erc-cmd-IGNORE): Prompt user if this might be a regexp
        instead of a single user.
@@ -230,6 +283,13 @@
 
        * NEWS: Added note about these changes.
 
+2006-08-20  Diane Murray  <address@hidden>
+
+       * erc-backend.el (erc-process-sentinel-1): Doc fix.  Let
+       `erc-server-reconnect-p' check all condition cases.
+       (erc-server-reconnect-p): Moved rest of checks from
+       `erc-process-sentinel-1' to here.  Now takes an argument, EVENT.
+
 2006-08-21  Diane Murray  <address@hidden>
 
        * erc-track.el (erc-track-mode-line-mouse-face): New variable.
@@ -242,6 +302,18 @@
        (erc-menu-definition): Name the menu "ERC" instead of "IRC" to
        avoid confusion with rcirc and other clients.
 
+       * erc-backend.el (erc-server-banned): New variable.
+       (erc-server-connect): Set `erc-server-banned' to nil.
+       (erc-process-sentinel-1): Use `erc-server-reconnect-p'.
+       (erc-server-reconnect-p): New function.  Return non-nil if the
+       user wants automatic reconnects and if the user has not been
+       banned from the server.  This should fix a bug where ERC gets into
+       a loop trying to reconnect with no way to stop it when the user is
+       denied access to the server due to a server ban.  It might also
+       help when Tor users are blocked from freenode if freenode servers
+       send the 465 message before disconnecting.
+       (465): Handle "banned from server" error notices.
+
 2006-08-13  Romain Francoise  <address@hidden>
 
        * erc-match.el (erc-log-matches-make-buffer): End `y-or-n-p'




reply via email to

[Prev in Thread] Current Thread [Next in Thread]