aboutsummaryrefslogtreecommitdiff
path: root/guix-data-service/web
Commit message (Collapse)AuthorAge
...
* Add type support to form-horizontal-controlChristopher Baines2019-05-19
| | | | Particularly to support checkboxes.
* Cache the pages which don't really change for a dayChristopher Baines2019-05-18
|
* Enable passing extra headers for JSON responsesChristopher Baines2019-05-18
| | | | Mostly to enable passing the cache-control header.
* Remove the HTTP headers from the html moduleChristopher Baines2019-05-18
| | | | | | Given that the headers may be the same, regardless whether it's HTML or JSON being sent in the body of the response, I think it makes more sense to handle the headers in the controller.
* Show the branches for a revisionChristopher Baines2019-05-18
|
* Fix the table headers on the Branches pageChristopher Baines2019-05-18
| | | | Date and Commit were the wrong way around.
* Add a View JSON button to the packages pageChristopher Baines2019-05-16
|
* Fix query-parameters->string for multi-valued parametersChristopher Baines2019-05-16
|
* Allow specifying the fields on the packages pageChristopher Baines2019-05-16
| | | | | This is mostly for the JSON output, as it allows much more information to be included.
* Add support to multi-value fields with defaultsChristopher Baines2019-05-16
| | | | To the query parameters module.
* 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 a function for making query parameters mutually exclusiveChristopher Baines2019-05-12
| | | | | This allows building more complicated forms, where some of the query parameters don't work together.
* 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
|
* Fix extension handling a bit moreChristopher Baines2019-05-12
| | | | | Previously, it was spliting versions up for the package pages. To stop this, now it just matches the extensions it knows about (currently .html and .json).
* Fix a request->path-components-and-mime-type bugChristopher Baines2019-05-11
| | | | The first value should always be a list.
* 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 support for select elements to form-horizontal-controlChristopher Baines2019-05-11
|
* Add query-parameters->stringChristopher Baines2019-05-11
|
* Add #:required and #:multi-value support to parse-query-parametersChristopher Baines2019-05-11
|
* Add ("") to parse-query-stringChristopher Baines2019-05-11
| | | | Otherwise a URL like https://example.com? will cause this to fail.
* 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.
* Add some word handling utilitiesChristopher Baines2019-05-11
| | | | These are useful for constructing HTML ids and similar things.
* 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.
* Fix "More information" link for target packagesChristopher Baines2019-04-21
| | | | On the packages comparison page.
* Extract out some database functionality to another moduleChristopher Baines2019-04-14
|
* 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
|
* Switch dynamic-wind for with-throw-handlerChristopher Baines2019-03-24
| | | | | Not sure why, but dynamic-wind was causing issues by closing the database connection too early, but with-throw-handler seems to work OK.
* 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
|
* 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.
* 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.