aboutsummaryrefslogtreecommitdiff
path: root/guix-data-service/web/view/html.scm
Commit message (Collapse)AuthorAge
* Add a page to show a formatted derivation representationChristopher Baines2019-11-09
| | | | | | The HTML is very rough, and the way it's displayed is also rough, but it does provide a way to understand the derivation. I'm also unsure it's a perfect representation, but it's a start at least.
* Extract the comparison pages out from the main modulesChristopher Baines2019-10-14
| | | | | In to their own modules. This should help make the code more understandable, and allow future refactoring for readability.
* Move the unknown-revision function to the correct moduleChristopher Baines2019-10-14
|
* Refactor the repository pages codeChristopher Baines2019-10-14
| | | | | Move it out of the main controller and html modules to better separate the code, which should allow to make it easier to read in the future.
* Refactor the revision pagesChristopher Baines2019-10-14
| | | | | | Move the code to a more specific controller and html module. There's a lot of code related to the revision pages, and having it separated will help with refactoring it.
* Refactor the jobs pages codeChristopher Baines2019-10-13
| | | | | | Move the code out of the main controller and html modules. There's now too much code in these modules, so begin to separate the functionality, starting with the small amount of code for the jobs pages.
* Add a variant of compare/derivations to work with a branch and datetimeChristopher Baines2019-10-13
|
* Improve linking between the Jobs and Job queue pagesChristopher Baines2019-10-12
|
* Improve error handling for comparison pagesChristopher Baines2019-10-12
|
* Add a page for queued jobsChristopher Baines2019-10-12
|
* Switch the compare page to use parse-query-parametersChristopher Baines2019-10-12
|
* Switch the compare/packages page to use parse-query-parametersChristopher Baines2019-10-12
|
* Add "No lint warning changes" message to compare pageChristopher Baines2019-10-05
|
* Link from the revision package page to the version history pageChristopher Baines2019-10-03
|
* Add a package page, showing versions for a revisionChristopher Baines2019-10-03
|
* Hide deleted branches on the index pageChristopher Baines2019-09-29
| | | | | To keep the page length down. All branches can still be seen on the page for specific repositories.
* Fix the 'NULL' values in git_branches for the commitsChristopher Baines2019-09-29
| | | | | | | | | | | The git_branches table had 'NULL' values for some commits where the branch was deleted, importantly this was the string 'NULL', not an actual NULL value. This commit fixes that, migrating the existing values to be '', and changing the relevant code. The primary key is also extended to include the datetime field, as this is important to allow a branch to be deleted twice.
* Provide the job id for jobs on the revision pageChristopher Baines2019-09-28
| | | | | Using the title element, as the identifier is internal, but it's useful for development to be able to find it out, if you want to run the job for testing.
* Add JSON output for the branch package versions pageChristopher Baines2019-09-27
|
* Add some bars to the table on the branch package versions pageChristopher Baines2019-09-27
| | | | To provide a more visual view of when the package versions were available.
* Add a new page to show package versions available on a branchChristopher Baines2019-09-27
| | | | | This is useful when looking back through history at what package versions were previously available.
* Handle the README.html file being missingChristopher Baines2019-09-23
|
* Serve the README.html file on the siteChristopher Baines2019-09-21
|
* Update the "source code here" linkChristopher Baines2019-09-10
|
* Show lint warnings on the comparison pageChristopher Baines2019-09-07
|
* Use numeric ids for git repositoriesChristopher Baines2019-09-05
|
* Fix the after link on the packages pageChristopher Baines2019-09-01
|
* Add a header for the derivations on the package pageChristopher Baines2019-09-01
|
* Add lint warnings to the package pageChristopher Baines2019-09-01
|
* Link to the package from the lint warnings pageChristopher Baines2019-09-01
|
* Link to the lint warnings page from the revision pageChristopher Baines2019-09-01
|
* Support filtering lint warnings by linterChristopher Baines2019-09-01
|
* Add a page to show the lint warnings for a revisionChristopher Baines2019-09-01
|
* Display counts of lint warnings on the revision pageChristopher Baines2019-09-01
|
* Remove the build status filter from the compare derivations pageChristopher Baines2019-08-06
| | | | As there isn't sufficient data to make this work yet.
* Only show the Compare button when it'll workChristopher Baines2019-08-05
| | | | On the branch page.
* Tweak the branch table layoutChristopher Baines2019-08-05
|
* Link to the comparison page from the branch pageChristopher Baines2019-07-29
| | | | To allow easily comparing revisions.
* Link to the package pages from the comparison pageChristopher Baines2019-07-29
|
* Link to cgit on the comparison pageChristopher Baines2019-07-29
|
* Neaten up how branches in Git repositories are linked toChristopher Baines2019-07-27
|
* Link to the Statistics and Jobs pages from the index pageChristopher Baines2019-07-27
|
* Show links to the cgit pages for repositories on the index pageChristopher Baines2019-07-22
|
* Switch the index page to show branches for a repositoryChristopher Baines2019-07-22
| | | | As that's probably more useful than recent revisions and jobs.
* Extract out the branches with most recent commits tableChristopher Baines2019-07-22
| | | | As I'm thinking about using this on the index page.
* Extract out view-revision/jobs-and-eventsChristopher Baines2019-07-22
| | | | This is common to both view-revision and unknown-revision.
* Extract out view-revision/git-repositoriesChristopher Baines2019-07-22
| | | | | As this was duplicated in the functions for viewing known and unknown revisions.
* Display the jobs related to a revision on the revision pageChristopher Baines2019-07-22
|
* Link from a revision to the git repository pageChristopher Baines2019-07-19
|
* Improve how repositories and branches are handledChristopher Baines2019-07-19
| | | | | Make the link between repositories and branches clearer, replacing the /branches and /branch pages by /repository/ and /repository/*/branch/* pages.