| Age | Commit message (Collapse) | Author |
|
|
|
Update sqlx
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Finally got around to fixing the pre-receive hook to include quarantined
objects so the hook actually can run git commands on the not-yet-accepted
commits. As part of that, had to make sure git hook and eyeballs server
had the same path to the repo or confusion will appear.
|
|
|
|
|
|
Tricky to setup the docker compose env to be able to run multiple
so simple fix is run the tests sharing the same docker compose setup
in serial.
|
|
|
|
|
|
|
|
|
|
Not going to happen but why not use NUL delimiter when it's available.
|
|
Makes it possible to still keep track of which file a string comes
from.
|
|
|
|
|
|
Reads from a list of grit files, all strings and their translations.
|
|
This doesn't read the full xliff format, it only reads the translation
target string and the id for the translation unit.
|
|
reimplemented from a description of the grit id calculation
|
|
|
|
|
|
Not often used in grit files, if at all, but needed when we want
to add support for expanding grit-part in grit structure.
|
|
|
|
Parses grit files. I tried using serde-xml-rs but it can't handle
text mixed with elements so xml-rs and event stream it is.
|
|
|
|
Add logs
Add remote keys for each user
|
|
|
|
Sets up a whole slew of docker instances, all started from clean
slate for test.
|
|
Only the owner or a maintainer of the project can remove a review.
Removing a review also removes the git branch.
Only reviews that are either draft or dropped can be removed.
|
|
|
|
Apparently it is still needed when the root package only has
one binary.
|
|
|
|
|
|
Git treats most of a config name as case-insensitive.
Specifically section and value are case-insenstive while optional
subsection, if it exists, is case-sensitive.
So, in "a.b.c" a and c will be made lowercase but not b before
checking the cache. And in "a.b" both a and b will be made lowercase
|
|
Wanted to include a non-bare repo as well but git doesn't like one
adding a non-bare git repo NOT as a submodule. And bare repos are
the main code path anyway.
|
|
Arguments go after action "build".
|
|
Add coverage for common as well as server.
Fix fs_utils::create_dir_allow_existing to fail if entry exists but
isn't a dir.
|
|
|
|
But also add /review endpoint that takes an id. So you can get
review data with either the reviewid or the branchname.
|
|
Having to include --feature=build-server in basically all commands
that wasn't building eyeballs-githook got tiring quickly.
Instead, use workspaces, with a separate project for building
the githook. It means I also had to add a library common with
code shared by both githook and server.
|
|
To make a githook that can run on alpine images (using musl) they
need to be cross-compiled. Then it became apparent that the githook
binary was pulling in all the same dependencies as the server was.
This is not good, but apparently also not something Rust/Cargo has
figured out. RFC:s has been shutdown. workspace might be an option
but then I probably need to also add a "code shared by both githook
and server" library that both can link. Problem for another day.
|
|
|