Update URLs again to r-l.o domain

(cherry picked from commit 9d4e47a96e)
This commit is contained in:
Jay McCarthy 2013-01-09 06:30:52 -07:00 committed by Ryan Culpepper
parent e121bef9b9
commit 44b7a12d68
5 changed files with 10 additions and 10 deletions

View File

@ -322,7 +322,7 @@
empty empty empty empty
(list "Someone tried to register your email address for an account on Planet2. If you want to authorize this registration and log in, please click the following link:" (list "Someone tried to register your email address for an account on Planet2. If you want to authorize this registration and log in, please click the following link:"
"" ""
(format "https://pnr.plt-etc.byu.edu~a" k-url) (format "https://pnr.racket-lang.org~a" k-url)
"" ""
"This link will expire, so if it is not available, you'll have to try to register again.")) "This link will expire, so if it is not available, you'll have to try to register again."))
(template (template

View File

@ -380,8 +380,8 @@
(file->string (file->string
(build-path pkg-depo pkg-depo-dir (format "~a.plt.CHECKSUM" pkg-name))) (build-path pkg-depo pkg-depo-dir (format "~a.plt.CHECKSUM" pkg-name)))
'source 'source
(format "https://plt-etc.byu.edu:~a/~a/~a.plt" (format "https://planet-compat.racket-lang.org/~a/~a.plt"
port pkg-depo-dir pkg-name) pkg-depo-dir pkg-name)
'url 'url
(let () (let ()
(match-define (regexp #rx"^planet-([^-]+)-([^0-9]+)[0-9]+" (match-define (regexp #rx"^planet-([^-]+)-([^0-9]+)[0-9]+"

View File

@ -207,8 +207,8 @@
(λ () (λ ()
(match k (match k
["indexes" ["indexes"
(list "https://pnr.plt-etc.byu.edu" (list "https://pnr.racket-lang.org"
"https://planet-compat.plt-etc.byu.edu")])))) "https://planet-compat.racket-lang.org")]))))
(define (package-index-lookup pkg) (define (package-index-lookup pkg)
(or (or

View File

@ -192,8 +192,8 @@ the @tech{package source} string and @racket['checksum] mapped to the
@racket['source] will be a remote URL. @racket['source] will be a remote URL.
PLT supports two @tech{package name resolvers} that are enabled by PLT supports two @tech{package name resolvers} that are enabled by
default: @url{https://pnr.plt-etc.byu.edu} for new default: @url{https://pnr.racket-lang.org} for new
packages and @url{https://planet-compat.plt-etc.byu.edu} for packages and @url{https://planet-compat.racket-lang.org} for
automatically generated packages for old @|PLaneT| automatically generated packages for old @|PLaneT|
packages. Anyone may host their own @tech{package name resolver}. The packages. Anyone may host their own @tech{package name resolver}. The
source for the PLT-hosted resolvers is in the source for the PLT-hosted resolvers is in the
@ -507,7 +507,7 @@ it by a simple name until it is listed on a @tech{package name resolver}.
If you'd like to use the official @tech{package name resolver}, browse If you'd like to use the official @tech{package name resolver}, browse
to to
@link["https://pnr.plt-etc.byu.edu/manage/upload"]{https://pnr.plt-etc.byu.edu/manage/upload} @link["https://pnr.racket-lang.org/manage/upload"]{https://pnr.racket-lang.org/manage/upload}
and upload a new package. You will need to create an account and log and upload a new package. You will need to create an account and log
in first. in first.
@ -635,7 +635,7 @@ PLT maintains a @tech{package name resolver} to serve packages that
were developed using the original @seclink[#:doc '(lib were developed using the original @seclink[#:doc '(lib
"planet/planet.scrbl") "top"]{@|Planet1|} package system. This "planet/planet.scrbl") "top"]{@|Planet1|} package system. This
compatibility resolver is at compatibility resolver is at
@link["https://plt-etc.byu.edu:9003/"]{https://plt-etc.byu.edu:9003/}, @link["https://planet-compat.racket-lang.org/"]{https://planet-compat.racket-lang.org/},
which is included by default in the package-server search path. which is included by default in the package-server search path.
Copies of @|Planet1| packages are automatically created by the Copies of @|Planet1| packages are automatically created by the

View File

@ -6,6 +6,6 @@
(with-fake-root (with-fake-root
(shelly-case (shelly-case
"reading and writing configs" "reading and writing configs"
$ "raco pkg config indexes" =stdout> "https://pnr.plt-etc.byu.edu\nhttps://planet-compat.plt-etc.byu.edu\n" $ "raco pkg config indexes" =stdout> "https://pnr.racket-lang.org\nhttps://planet-compat.racket-lang.org\n"
$ "raco pkg config --set indexes http://localhost:9000" $ "raco pkg config --set indexes http://localhost:9000"
$ "raco pkg config indexes" =stdout> "http://localhost:9000\n"))) $ "raco pkg config indexes" =stdout> "http://localhost:9000\n")))