From 1bc64532b7a74f337a8dc56e9b7a9b0ff3b79ae9 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 18 Jan 2020 22:57:19 +0100 Subject: gnu: libwebsockets: Use HTTPS home page. * gnu/packages/web.scm (libwebsockets)[home-page]: Use HTTPS. --- gnu/packages/web.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu/packages/web.scm') diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 236dd1a506..d766d31785 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -1129,7 +1129,7 @@ parser written in ANSI C and a small validating JSON generator.") "Libwebsockets is a library that allows C programs to establish client and server WebSockets connections---a protocol layered above HTTP that allows for efficient socket-like bidirectional reliable communication channels.") - (home-page "http://libwebsockets.org/") + (home-page "https://libwebsockets.org") ;; This is LGPLv2.1-only with extra exceptions specified in 'LICENSE'. (license license:lgpl2.1))) -- cgit v1.2.3 From e80d1c1992fb60c492520d61f3a3d1fef65cfdf2 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Fri, 13 Mar 2020 14:19:44 +0200 Subject: gnu: httrack: Use texi markup in description. * gnu/packages/web.scm (httrack)[description]: Use texi markup. --- gnu/packages/web.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu/packages/web.scm') diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index d766d31785..8867a48849 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -7205,7 +7205,7 @@ the Internet to a local directory, building recursively all directories, getting HTML, images, and other files from the server to your computer. HTTrack arranges the original site's relative link-structure. Simply open -a page of the ``mirrored'' website in your browser, and you can browse the +a page of the @code{mirrored} website in your browser, and you can browse the site from link to link, as if you were viewing it online. HTTrack can also update an existing mirrored site, and resume interrupted downloads. -- cgit v1.2.3 From 10b99ddf4596a033eaf348dddf519639e029f9d1 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Fri, 13 Mar 2020 14:26:22 +0200 Subject: gnu: cadaver: Satisfy 'guix lint'. * gnu/packages/web.scm (cadaver)[home-page]: Follow redirect. [description]: Always use two spaces. --- gnu/packages/web.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/web.scm') diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 8867a48849..3d6f2d5dcf 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -6087,10 +6087,10 @@ file links.") (inputs `(("expat" ,expat) ("openssl" ,openssl))) - (home-page "http://www.webdav.org/cadaver") + (home-page "http://www.webdav.org/cadaver/") (synopsis "Command-line WebDAV client") (description - "Cadaver is a command-line WebDAV client for Unix. It supports + "Cadaver is a command-line WebDAV client for Unix. It supports file upload, download, on-screen display, namespace operations (move/copy), collection creation and deletion, and locking operations.") (license license:gpl2))) -- cgit v1.2.3 From 9dc6e542b57c45ea41418f36d6b1a09148b14f56 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 13 Mar 2020 22:47:31 +0100 Subject: gnu: nginx: Update to 1.17.9. * gnu/packages/web.scm (nginx): Update to 1.17.9. --- gnu/packages/web.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/web.scm') diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 3d6f2d5dcf..e8c505df97 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -221,14 +221,14 @@ Interface} specification.") ;; ’stable’ and recommends that “in general you deploy the NGINX mainline ;; branch at all times” (https://www.nginx.com/blog/nginx-1-6-1-7-released/) ;; Consider updating the nginx-documentation package together with this one. - (version "1.17.8") + (version "1.17.9") (source (origin (method url-fetch) (uri (string-append "https://nginx.org/download/nginx-" version ".tar.gz")) (sha256 (base32 - "0nwn4md8sxhks2j77qq1nvk5pfz3yykfhh2b507b6l2idp7kxllp")))) + "12dnrdxwnlid0wr797vdxj9z1fmxnk7ib55bznvl2g3mbi05vmkx")))) (build-system gnu-build-system) (inputs `(("openssl" ,openssl) ("pcre" ,pcre) -- cgit v1.2.3