aboutsummaryrefslogtreecommitdiff
path: root/guix-data-service/web/view
Commit message (Collapse)AuthorAge
* Store license information for packagesChristopher Baines2019-05-15
| | | | | | | | | | And display this on the package page. This uses a couple of new tables, and an additional field in the package_metadata table. Currently, the order of the licenses in the package definition isn't stored, as I'm not sure the order in the list is significant.
* 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.
* 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 support for select elements to form-horizontal-controlChristopher Baines2019-05-11
|
* 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 form-horizontal-control function to better handle formsChristopher Baines2019-05-11
| | | | Each input is pretty complex, and this function helps handle that complexity.
* 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.
* Fix "More information" link for target packagesChristopher Baines2019-04-21
| | | | On the packages comparison page.
* Add a statistics pageChristopher Baines2019-04-08
| | | | To show the total number of derivations, and guix revisions.
* Support displaying builtin:download derivationsChristopher Baines2019-03-28
|
* Handle missing derivations when rendering the comparisonChristopher Baines2019-03-24
|
* Fix the layout on the derivation and store item pagesChristopher Baines2019-03-19
|
* Improve the form styling on the index pageChristopher Baines2019-03-17
|
* Ensure all rows contain a columnChristopher Baines2019-03-17
| | | | | As this helps with the layout, especially the whitespace to the left on smaller screens.
* Update the JSON link on the compare/derivations pageChristopher 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.
* Add build-status-value->display-stringChristopher Baines2019-03-17
|
* Fix the JSON responses for the comparison pagesChristopher Baines2019-03-16
|
* Increase the margin for buttons on the right of the compare pageChristopher Baines2019-03-16
|
* Fix some duplication on the compare pageChristopher Baines2019-03-16
| | | | For the new and removed package sections.
* Improve the display of the show revision pageChristopher 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
|
* Improve derivation display on the builds pageChristopher 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
|
* Add some navigation buttonsChristopher Baines2019-02-26
| | | | | Both to the packages and derivations packages, as well as the JSON representation of the pages.
* 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.
* Fix showing versions in the comparisonChristopher Baines2019-02-25
| | | | | Previously, some extra data from the query would be added on to the end of the version. This change prevents that from happening.
* 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
|
* 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