aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAge
...
* Fix the 'NULL' values in git_branches for the commits•••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. Christopher Baines2019-09-29
* Add migration to create an index on load_new_guix_revision_job_events•••To speed up the rendering of the index page. Christopher Baines2019-09-29
* Fail early if the inferior is #f•••This happens when the repl can't be loaded for example. Christopher Baines2019-09-29
* Try setting the en_US.UTF-8 locale, if the normalised fails•••Older versions of the glibc-locales package just contain the UTF-8 variants, not utf8. Christopher Baines2019-09-29
* Don't error when processing revisions of Guix without graft supportChristopher Baines2019-09-29
* Handle loading revisions without the (guix lint) module•••This is a recent addition, so to support loading revisions without it, better handle the error when loading the module. Christopher Baines2019-09-29
* Unset the GUILE_LOAD_* environment variables when using inferiors•••Otherwise modules from outside of the inferior can leak in. Christopher Baines2019-09-28
* Provide the job id for jobs on the revision page•••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. Christopher Baines2019-09-28
* Add a new script to process emails in an mbox file•••This can be used with the mbox files for the guix-commits mailing list to add older emails in to the database. Christopher Baines2019-09-28
* Add JSON output for the branch package versions pageChristopher Baines2019-09-27
* Add some bars to the table on the branch package versions page•••To provide a more visual view of when the package versions were available. Christopher Baines2019-09-27
* Add a new page to show package versions available on a branch•••This is useful when looking back through history at what package versions were previously available. Christopher Baines2019-09-27
* Add a new table to store package versions by revision ranges•••This isn't new information, but derived from information already in the database. It's collected here to make querying faster. The table is updated when each new revision is entered. Christopher Baines2019-09-27
* Tweak the textual search to rank exact name matches higher•••Previously, if you searched for packages like Ruby or Guile, the actual Ruby and Guile packages would be low in the rankings, as the terms Ruby or Guile don't appear much in the descriptions. Therefore, change the ordering to make these exact matches appear higher up. Christopher Baines2019-09-26
* Switch to processing emails as bytevectors•••This is better, as different parts of the email might be encoded differently, and guile-email will take care of this if handed a bytevector. Christopher Baines2019-09-26
* Add a Roadmap section to the READMEChristopher Baines2019-09-23
* Handle the README.html file being missingChristopher Baines2019-09-23
* Tweak screen.css to display paragraphs and lists betterChristopher Baines2019-09-21
* Serve the README.html file on the siteChristopher Baines2019-09-21
* Hack building a HTML version of the README in to Makefile.am•••This is to be able to serve a readable version of the README on the site, allowing those without Emacs to more easily read it. Christopher Baines2019-09-21
* Add a README•••With local development instructions. Christopher Baines2019-09-21
* Fix the godir in Makefile.am•••I think the .go files should be in lib, rather than share. Christopher Baines2019-09-21
* Add guix as a dependency•••This is used as a Guile module. Christopher Baines2019-09-21
* Remove test-env from the repository•••This is a generated file. Christopher Baines2019-09-21
* Add support for a .local.envrc file•••As this is useful when setting custom configuration. Christopher Baines2019-09-21
* Fix the repository page•••The repository id is expected to be a number. Christopher Baines2019-09-14
* 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
* Add newline to the end of the duplicate lint warning outputChristopher Baines2019-09-05
* Use numbers for ids in the derivation model•••As this is easier to handle when doing queries with PostgreSQL, as you can use the type information to determine how to handle the values. Christopher Baines2019-09-05
* Fix data input for package-metadata•••Represent non-string home pages as NULL, and delete duplicates, as package metadata entries can be duplicated. Christopher Baines2019-09-05
* Improve error handling for insert-missing-data-and-return-all-idsChristopher Baines2019-09-05
* Support deleting duplicates in insert-missing-data-and-return-all-ids•••This is useful when you want to pass in data with some duplicates, and get back a list of ids, where the duplicate entries are represented by the same id. Christopher Baines2019-09-05
* Improve the package and package-metadata modules•••Add tests around the package module, extract out the use of the inferior-package record assessors so that they aren't part of the tests, and switch across the package-metadata module to use insert-missing-data-and-return-all-ids. Christopher Baines2019-09-05
* Put some comments in the mock-inferior module•••About mocking the record file accessors not working :( Christopher Baines2019-09-05
* 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
* Reduce code duplication in the package module•••By using insert-missing-data-and-return-all-ids. Christopher Baines2019-09-05
* Reduce code duplication in the package-derivation module•••Through using insert-missing-data-and-return-all-ids. Christopher Baines2019-09-04
* Change license code to use insert-missing-data-and-return-all-ids•••As this now supports inserting sets of data. Christopher Baines2019-09-04
* Improve insert-missing-data-and-return-all-ids•••Use exec-query-with-null-handling to distinguish NULL values, change it to just take a list of fields and remove the handlers. Also, add a sets-of-data? parameter so that this can be used licenses. Christopher Baines2019-09-04
* Hack better NULL support on to (squee)•••PQgetvalue used by squee returns null values as empty strings, which are ambiguous for string fields. Therefore, use PQgetisnull to implement a serialiser for squee which checks empty strings to see if they're actually a NULL value, then returns '() in this case. exec-query-with-null-handling can be used to access this behaviour. Christopher Baines2019-09-04
* Change normalise-database-values to normalise-values•••As these values are not from the database, which is why they're not strings. Christopher Baines2019-09-02
* Fix a couple of GET's in the controller match expression•••These should be symbols, not just placeholders. Christopher Baines2019-09-01
* 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