aboutsummaryrefslogtreecommitdiff
path: root/guix-data-service/model/git-branch.scm
Commit message (Expand)AuthorAge
* Add copyright and license headers to a bunch of source files•••That were missing them. Christopher Baines2019-12-26
* Remove a redundant query condition•••The git_branches.commits column doesn't allow NULL values. Christopher Baines2019-09-29
* Start handling ids as numbers, rather than strings•••squee, returns all data as strings, and expects strings as inputs to queries. So, keeping the ids as strings was easy initially, but it means that you can't tell from the type whether it should be quoted, or not... Therefore, handle ids as strings, converting them to numbers when they're fetched from the database, and back to strings as part of the queries. Christopher Baines2019-09-05
* Fix the latest-processed-revision pagesChristopher Baines2019-07-27
* Link from a revision to the git repository pageChristopher Baines2019-07-19
* Improve how repositories and branches are handled•••Make the link between repositories and branches clearer, replacing the /branches and /branch pages by /repository/ and /repository/*/branch/* pages. Christopher Baines2019-07-19
* Add labels to revisions on the branches and branch pages•••And always link to the revision page. Now the label let's you know if you should expect information or not for that revision. Christopher Baines2019-06-19
* Support accessing the latest processed revision for a branch•••This makes is easier to get the latest data for a branch in a single request, rather than making one request to find the latest revision, then another to get the data. Christopher Baines2019-06-13
* Add git-branches-with-repository-details-for-commit•••To get git repository and git branch information suitable for the revision page. Christopher Baines2019-05-18
* Fix how email dates are inserted in to PostgreSQL•••Previously, the timezone was stripped off, so the timestamps were off. This commit changes the code to use a Unix timestamp, which avoids this issue. Christopher Baines2019-05-16
* Add some options to the branch page•••Add handling for some query parameters to the branch page. This takes advantage of the improvements for building forms and query parameter validation. Christopher Baines2019-05-11
* Start to handle information about Git branches•••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. Christopher Baines2019-05-05