From 7bd320f939598a7742a86e9af42964a111a5672e Mon Sep 17 00:00:00 2001 From: sorawee Date: Tue, 13 Mar 2018 18:58:54 -0700 Subject: [PATCH] Change llncs's download path, fix racket/racket#1973 (#163) The path is changed to ftp://ftp.springernature.com/cs-proceeding/llncs/llncs2e.zip which is the official file listed at http://www.springer.com/us/computer-science/lncs/conference-proceedings-guidelines --- scribble-lib/scribble/lncs/lang.rkt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scribble-lib/scribble/lncs/lang.rkt b/scribble-lib/scribble/lncs/lang.rkt index 11ab79ba..59c98b2b 100644 --- a/scribble-lib/scribble/lncs/lang.rkt +++ b/scribble-lib/scribble/lncs/lang.rkt @@ -63,8 +63,8 @@ (unless (or (not (path? cls-file)) (file-exists? cls-file)) (log-error (format "File not found: ~a" cls-file)) - (define site "ftp.springer.de") - (define path "pub/tex/latex/llncs/latex2e") + (define site "ftp.springernature.com") + (define path "cs-proceeding/llncs") (define file "llncs2e.zip") (unless (directory-exists? (find-system-path 'addon-dir)) (make-directory (find-system-path 'addon-dir)))