aboutsummaryrefslogtreecommitdiff
path: root/guix-data-service/web/controller.scm
Commit message (Collapse)AuthorAge
* Store and display the location of packagesChristopher Baines2019-05-13
| | | | | | | Store the location a package can be found at, and display this on the package page. If available, link off to the git repository containing the package.
* Add a textual search to the packages pageChristopher Baines2019-05-12
|
* Add some basic pagination to the packages pageChristopher Baines2019-05-12
| | | | | Lower powered devices will have problems displaying all ~9000+ packages, so return a smaller number by default.
* Add initial JSON output for the package pageChristopher Baines2019-05-12
|
* Add a JSON variant of the packages pageChristopher Baines2019-05-12
|
* Add a JSON variant of the revision pageChristopher Baines2019-05-12
|
* Improve the content negotiation handling in generalChristopher Baines2019-05-11
| | | | | | | | | | | Previously, the routing layer handled the content negotiation, and the Accept header was ignored. Now, the extension if one is provided in the URL is still used, and more widely than before, but the Accept header is also taken in to account. This all now happens before the routing decisions are made, so the routing is now pretty much extension independant (with the exception of the /gnu/store/... routes).
* Update the derivation comparison implementationChristopher Baines2019-05-11
| | | | | This adds more query parameter validation, and uses form-horizontal-control to neaten up the view code.
* Add some options to the branch pageChristopher Baines2019-05-11
| | | | | | Add handling for some query parameters to the branch page. This takes advantage of the improvements for building forms and query parameter validation.
* Add a new query-parameters moduleChristopher Baines2019-05-11
| | | | | | | | | The query parameters feed in to the results shown, but also forms on pages. Validation is important to avoid errors and security issues, but it's also important to provide appropriate feedback to the user. This module provides some utilities and structure around handling query parameters.
* Start to handle information about Git branchesChristopher Baines2019-05-05
| | | | | | Add some new pages /branches and /branch/... as well as a new git_branches table. Also extend the email processing to enter the branch information in to the database.
* Switch to storing Git repositories in a tableChristopher Baines2019-05-05
| | | | | | Rather than just storing the URL in the guix_revisions and load_new_guix_revision_jobs tables. This will help when storing more information like tags and branches in the future.
* Add a statistics pageChristopher Baines2019-04-08
| | | | To show the total number of derivations, and guix revisions.
* Fix comparison in render-compare/derivationsChristopher Baines2019-03-17
|
* Improve the compare derivations pageChristopher Baines2019-03-17
| | | | | Add support for filtering the results, and add the system and target to the output.
* Fix the JSON responses for the comparison pagesChristopher Baines2019-03-16
|
* Many changesChristopher Baines2019-03-11
| | | | | | | | | | | | | | A large proportion of these changes relate to changing the way packages relate to derivations. Previously, a package at a given revision had a single derivation. This was OK, but didn't account for multiple architectures. Therefore, these changes mean that a package has multiple derivations, depending on the system of the derivation, and the target system. There are multiple changes, small and large to the web interface as well. More pages link to each other, and the visual display has been improved somewhat.
* Continue improving pages and linking things togetherChristopher Baines2019-03-07
|
* Start to visualise derivationsChristopher Baines2019-03-07
|
* Add a few new pagesChristopher Baines2019-03-06
| | | | For showing more information about builds, revisions and derivations.
* Include the status of derivationsChristopher Baines2019-03-06
| | | | On the comparison page.
* Add a list of the queued revisions to the index pageChristopher Baines2019-03-03
|
* Make the unknown JSON a bit more sensibleChristopher Baines2019-02-28
|
* Add a packages comparison pageChristopher Baines2019-02-25
| | | | | The primary use I have in mind for this is producing a list of strings suitable for building a limited Cuirass job with.
* Add some super crude JSON pagesChristopher Baines2019-02-25
| | | | | | Provide JSON versions of the existing HTML compare and compare/derivations pages. Refactor the code and extract some functions to make this a little less painful.
* Show when revisions are missing, but queued for processingChristopher Baines2019-02-24
|
* Add a new page comparing the derivations of two revisionsChristopher Baines2019-02-24
|
* Add an error page for unknown commitsChristopher Baines2019-02-08
|
* Actually close database connectionsChristopher Baines2019-02-08
| | | | | | Previously, the connections were not closed, so eventually PostgreSQL would run out. Using a pool of connections would be better, but as a short term solution, just close the connection after each request.
* Initial commitChristopher Baines2019-02-07
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