Guido.VanHoecke(a)advalvas.be writes:
I get a connection refused when logging in:
C:\a\lisp\trial>cvs -d :pserver:anoncvs@anoncvs.gnu.org:/gd/gnu/anoncvsroot login
(Logging in to anoncvs(a)anoncvs.gnu.org)
CVS password:
cvs [login aborted]: connect to anoncvs.gnu.org:2401 failed: Connection refused
C:\a\lisp\trial>
I was trying this from a WinNt Ws4 Sp4 cmd window; same problem when
using it from a (cygwin bash) shell under Xemacs NT beta or Nt Emacs
20.3.3.1.1 But under these shells it is even worse: nothing happens
anymore after hitting the enter key on the pasword prompt. The aborted
message only comes after Ctrl-C ing the cvs program (and yes, I waited
long enough before doing this)
I am a newbie at cvs, so there may well be something I overlooked
though...
For anybody else having problems getting into CVS (I can get in just fine
to either
cvs.gnu.org or
anoncvs.gnu.org), here is a patch and new file.
-bp
Index: url.el
===================================================================
RCS file: /gd/gnu/cvsroot/w3/lisp/url.el,v
retrieving revision 1.3
retrieving revision 1.4
diff -c -w -c -w -r1.3 -r1.4
*** url.el 1998/12/25 21:54:57 1.3
--- url.el 1998/12/26 02:40:13 1.4
***************
*** 1,13 ****
;;; url.el --- Uniform Resource Locator retrieval tool
;; Author: $Author: wmperry $
! ;; Created: $Date: 1998/12/25 21:54:57 $
! ;; Version: $Revision: 1.3 $
;; Keywords: comm, data, processes, hypermedia
;;; LCD Archive Entry:
;;; url|William M. Perry|wmperry(a)cs.indiana.edu|
;;; Functions for retrieving/manipulating URLs|
! ;;; $Date: 1998/12/25 21:54:57 $|$Revision: 1.3 $|Location Undetermined
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
--- 1,13 ----
;;; url.el --- Uniform Resource Locator retrieval tool
;; Author: $Author: wmperry $
! ;; Created: $Date: 1998/12/26 02:40:13 $
! ;; Version: $Revision: 1.4 $
;; Keywords: comm, data, processes, hypermedia
;;; LCD Archive Entry:
;;; url|William M. Perry|wmperry(a)cs.indiana.edu|
;;; Functions for retrieving/manipulating URLs|
! ;;; $Date: 1998/12/26 02:40:13 $|$Revision: 1.4 $|Location Undetermined
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
***************
*** 104,109 ****
--- 104,112 ----
(autoload 'url-nntp "url-news")
(autoload 'url-cid "url-cid")
+ (if (featurep 'ldap)
+ (autoload 'url-ldap "url-ldap"))
+
(autoload 'url-open-stream "url-gw")
(autoload 'url-mime-response-p "url-http")
(autoload 'url-parse-mime-headers "url-http")
***************
*** 923,928 ****
--- 926,933 ----
(url-register-protocol 'telnet)
(url-register-protocol 'tn3270)
(url-register-protocol 'proxy)
+ (if (featurep 'ldap)
+ (url-register-protocol 'ldap))
(url-register-protocol 'auto 'url-handle-no-scheme)
;; Register all the authentication schemes we can handle