Skip to content
Snippets Groups Projects
Commit 3b8258c5 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

Rename (guix web) to (guix http-client).

* guix/web.scm: Rename to...
* guix/http-client.scm: ... this.
* guix/gnu-maintenance.scm, guix/scripts/substitute-binary.scm,
  Makefile.am, po/POTFILES.in: Update accordingly.
parent 84dbbc76
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,7 @@ MODULES = \ ...@@ -53,7 +53,7 @@ MODULES = \
guix/build-system/python.scm \ guix/build-system/python.scm \
guix/build-system/trivial.scm \ guix/build-system/trivial.scm \
guix/ftp-client.scm \ guix/ftp-client.scm \
guix/web.scm \ guix/http-client.scm \
guix/gnupg.scm \ guix/gnupg.scm \
guix/store.scm \ guix/store.scm \
guix/ui.scm \ guix/ui.scm \
......
...@@ -27,7 +27,7 @@ (define-module (guix gnu-maintenance) ...@@ -27,7 +27,7 @@ (define-module (guix gnu-maintenance)
#:use-module (srfi srfi-11) #:use-module (srfi srfi-11)
#:use-module (srfi srfi-26) #:use-module (srfi srfi-26)
#:use-module (system foreign) #:use-module (system foreign)
#:use-module (guix web) #:use-module (guix http-client)
#:use-module (guix ftp-client) #:use-module (guix ftp-client)
#:use-module (guix ui) #:use-module (guix ui)
#:use-module (guix utils) #:use-module (guix utils)
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
;;; You should have received a copy of the GNU General Public License ;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (guix web) (define-module (guix http-client)
#:use-module (guix utils) #:use-module (guix utils)
#:use-module (web uri) #:use-module (web uri)
#:use-module (web client) #:use-module (web client)
...@@ -32,7 +32,7 @@ (define-module (guix web) ...@@ -32,7 +32,7 @@ (define-module (guix web)
;;; Commentary: ;;; Commentary:
;;; ;;;
;;; Web client portable among Guile versions. ;;; HTTP client portable among Guile versions.
;;; ;;;
;;; Code: ;;; Code:
...@@ -205,4 +205,4 @@ (define* (http-fetch uri #:key port (text? #f) (buffered? #t)) ...@@ -205,4 +205,4 @@ (define* (http-fetch uri #:key port (text? #f) (buffered? #t))
(error "download failed" uri code (error "download failed" uri code
(response-reason-phrase resp)))))))) (response-reason-phrase resp))))))))
;;; web.scm ends here ;;; http-client.scm ends here
...@@ -39,7 +39,7 @@ (define-module (guix scripts substitute-binary) ...@@ -39,7 +39,7 @@ (define-module (guix scripts substitute-binary)
#:use-module (srfi srfi-19) #:use-module (srfi srfi-19)
#:use-module (srfi srfi-26) #:use-module (srfi srfi-26)
#:use-module (web uri) #:use-module (web uri)
#:use-module (guix web) #:use-module (guix http-client)
#:export (guix-substitute-binary)) #:export (guix-substitute-binary))
;;; Comment: ;;; Comment:
......
...@@ -13,4 +13,4 @@ guix/scripts/pull.scm ...@@ -13,4 +13,4 @@ guix/scripts/pull.scm
guix/scripts/substitute-binary.scm guix/scripts/substitute-binary.scm
guix/gnu-maintenance.scm guix/gnu-maintenance.scm
guix/ui.scm guix/ui.scm
guix/web.scm guix/http-client.scm
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment