diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-12-07 15:31:36 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-12-07 15:33:24 +0100 |
commit | 1e48b40f1627442566402b9f2724d4a83d012a6e (patch) | |
tree | d6c6461bda7002fe85c8cb0ff661ece8acf11e7e /website/www | |
parent | 23b3af4dc24597634c464df11a24531ba8710610 (diff) | |
download | guix-artwork-1e48b40f1627442566402b9f2724d4a83d012a6e.tar guix-artwork-1e48b40f1627442566402b9f2724d4a83d012a6e.tar.gz |
website: packages: Remove the all-in-one page.
* website/www/packages.scm (packages-page): Remove reference to
"all.html".
(package-pages): Remove "all.html".
Diffstat (limited to 'website/www')
-rw-r--r-- | website/www/packages.scm | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/website/www/packages.scm b/website/www/packages.scm index a109bfb..544f32b 100644 --- a/website/www/packages.scm +++ b/website/www/packages.scm @@ -515,10 +515,7 @@ letter)." "continuous integration system") " shows their current build status " "(updated " ,(date->string (current-date) "~B ~e, ~Y") ").") - (p "You can browse packages indexed by their first letter, or -you can view " - (a (@ (href "/packages/all.html")) - "all packages on a single page.")) + (p "You can browse packages indexed by their first letter.") (ul ,@(map (lambda (group) `(li (@ (id ,(string-append group "-link")) @@ -537,8 +534,10 @@ and PAGE is the corresponding SXML." (list (string-append group ".html") (paginated-packages-page packages group))) %groups) - ("index.html" ,(paginated-packages-page packages "0-9")) - ("all.html" ,(packages-page packages)))) + ;; Note: We do not build the page for grouping "All" because the poor CVS + ;; server at gnu.org runs out of memory when it encounters such a big + ;; page (!). + ("index.html" ,(paginated-packages-page packages "0-9")))) (define* (issues-page #:key (checkers %issue-checkers)) `(html |