aboutsummaryrefslogtreecommitdiff
path: root/guix-data-service/web/render.scm
Commit message (Expand)AuthorAge
* Add a helper function to render textChristopher Baines2019-12-26
* Rework the builds and build_status tables as well as related code•••Allow for build status information to be submitted by POST request. This required some changes to the builds and build_status tables, as for example, the Cuirass build id may not be available, and the derivation may not be know yet, so just record the derivation file name. Christopher Baines2019-11-24
* Add a new static-asset-from-store-renderer function•••Previously, the assets would be served from the store normally, but this meant that they were read from disk each time, and stat calls were used to determine when they were last modified. This doesn't work for files in the store, as the timestamps are normalised, therefore add a renderer that takes advantage of the asset directory being in the store. All the files are read at startup, and then stored in memory. Also, the process start time is used as a value for the last modified header, which isn't ideal, but it's better than 1970. Christopher Baines2019-10-06
* Set the Vary header to a sensible default value•••As most pages vary based on the Accept header. Christopher Baines2019-08-05
* Extract the database connection handling from the server•••Previously, one of the first things that happened when responding to a request was a database connection was made, even when serving the CSS. This is unnecessary, so move the database connection handling in to the controller. Also, to allow for separating it out from the assets, separate the assets out from the parts of the controller that require a database connection. Christopher Baines2019-06-06
* Add #:code to render-jsonChristopher Baines2019-05-19
* Add #:code option to render-htmlChristopher Baines2019-05-19
* Enable passing extra headers for JSON responses•••Mostly to enable passing the cache-control header. Christopher Baines2019-05-18
* Initial commit•••This is a service designed to provide information about Guix. At the moment, this initial prototype gathers up information about packages, the associated metadata and derivations. The initial primary use case is to compare two different revisions of Guix, detecting which packages are new, no longer present, updated or otherwise different. It's based on the Mumi project. [1]: https://git.elephly.net/software/mumi.git Christopher Baines2019-02-07