Remove unused code

Evgeny PisemskyWed Sep 04 18:00:51+0300 2024

7795730

Remove unused code

gitile/pages.scm

2929
  #:use-module (ice-9 match)
3030
  #:use-module (ice-9 string-fun)
3131
  #:use-module (rnrs bytevectors)
32-
  #:use-module (srfi srfi-1); fold
33-
  #:use-module (srfi srfi-19); date/time
32+
  #:use-module (srfi srfi-1)
33+
  #:use-module (srfi srfi-19)
3434
  #:use-module (system foreign)
3535
  #:use-module (web uri)
36-
  #:export (not-yet-page
37-
            project-file-raw
36+
  #:export (project-file-raw
3837
            project-files
3938
            project-index
4039
            project-commits
4140
            project-commit
4241
            project-tags))
4342
44-
(define not-yet-page
45-
  `((p "Not yet available, sorry :/")))
46-
4743
(define* (project-file-raw repo path #:key (ref "-"))
4844
  (let* ((ref (if (equal? ref "-") #f ref))
4945
         (path (canonalize-path path)))