Commits
- Commit:
b610c677694f4118404d76458ed7f75c0feb4bab
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
slightly reword 'got merge' documentation to hopefully be more clear
- Commit:
7781b9910fcbba579c2e112bbfdea73a64ccad70
- From:
- Omar Polo <op@omarpolo.com>
- Date:
gotwebd: render all the datetimes in a time tag
fixes an unused variable that should have been dropped in previous
commit too.
ok stsp@
- Commit:
bf26a633636ba2058b6bb747b0dd4ab17cb185a8
- From:
- Omar Polo <op@omarpolo.com>
- Date:
gotwebd: inline the only use of TM_RFC822
- Commit:
f82755119394cfc406b17844a3a159cc75369275
- From:
- Omar Polo <op@omarpolo.com>
- Date:
gotwebd: typo; fix closing of dd tag
- Commit:
2e2450f50c41d866e20dec2ad4d9eafa3c19f2ba
- From:
- Mark Jamsek <mark@jamsek.dev>
- Date:
tog: make patience the default diff algorithm
As discussed on IRC. It makes nicer diffs and the performance hit should
only be noticeable with the odd large diff. It might also be a motivator
in trying to speed up the patience implementation.
ok stsp@
- Commit:
f73bf5bd9e54af999a744c731dfb492e1c9b2b6d
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Date:
replace "(cd path && git cmd)" with "git -C path cmd"
This matches the existing use of "got -r path cmd" and
"git_commit path args".
- Commit:
107723488a685ddd492f1539cfc13a88a4c34ca1
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Date:
honor fetch_all_branches configuration again
Fix a regression in db82695e31945b3ce001a5fb69674c3638622368 where
the fetch_all_branches configuration setting from got.conf was dropped
and always defaulted to "no".
Add corresponding regression test.
ok stsp
- Commit:
1ef7649d68d2231933ee3e0059257bea8f3f8a7f
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Date:
put actions in test_fetch_all into more logical order
ok stsp
- Commit:
cea040d131a5c2248c94a55976a83d255a4d3a06
- From:
- Omar Polo <op@omarpolo.com>
- Date:
vertical align briefs age and author
- Commit:
1eb651da6aa7d016f6c30a0417b4259f5de7a35c
- From:
- James Cook <falsifian@falsifian.org>
- Date:
in diff error message, say what was being diffed
When trying to run "got ci" adding a large file, this changes the
following error message:
got: diff_atomize_file: Cannot allocate memory
into:
got: /dev/null vs /path/to/the/really/big/file: diff_atomize_file: Cannot allocate memory
ok stsp@
- Commit:
c0cbb5f423a2a6324675956dc85b4090cf70a34c
- From:
- James Cook <falsifian@falsifian.org>
- Date:
handle NULL argument to got_diffreg_result_free
ok stsp@
- Commit:
34f2577ca95d182c98ef00e93d05f4fa1b559094
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
bump version number
- Commit:
9f84980b8968c9e0c02ff0008dccccb2794441b9
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
CHANGES for 0.93
- Commit:
d2be89b7d819e9bf53bdf5f50fcc392d61ecd976
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix expected output; with previous change fetch -l no longer lists HEAD twice
- Commit:
18441876c29142bdeb5910e372da1200c1b7bc20
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
make gotsh handle poll timeouts when checking for gotd closing the pack pipe
This will hopefully fix issues seen on servers where gotsh exits early
for no good reason.
- Commit:
ef6234452a17eb17687612d9bd417ded3bf6802d
- From:
- Omar Polo <op@omarpolo.com>
- Date:
actually detect modified files when checking out with -E
When checking out over a pre-existing directory tree with -E, got
would store the checkout timestamp in the fileindex and so not
detect local edits until those files are touch(1)ed again. Instead,
detect that a file already exists during checkout and don't update
its {c,m}time, leaving them to zero (the epoch), so a subsequent
`got status' will look at its contents.
While here, change the status char for such file from ? to E, which
is what the manpage actually documents.
Issue reported by naddy@
ok stsp@
- Commit:
01d78e9e349d8547e36bfe47e4c53acfcef2973d
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
make 'got send' detect connections that are unexpectedly closed by the server
ok op@
- Commit:
34b3c35b08058d7664122b8f9c0bf226e68b5fc4
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
sync files from diff.git b5a9c15f4d68c06ec3bf839529b3ed2def0a6af6
Fixes 'No newline at end of file' message appearing in unexpected places.
Problem noticed by op@
- Commit:
fa9997e790c81002782c0bb2747fa2050576dbb3
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix test_send_config test directory name
- Commit:
62eab86e6a1d5aea8a1bf90999c3c058b9aedd07
- From:
- Omar Polo <op@omarpolo.com>
- Date:
gotwebd: move the buffering from the fastcgi layer to the template
Reduces the indirection in fcgi.c, starts to make the struct template
opaque, simplifies the template usage. All with a net negative :-)
reads fine to stsp@ (thanks!)
- Commit:
de8c0409ea9206f320235deea0781cac753fae53
- From:
- Omar Polo <op@omarpolo.com>
- Date:
gotwebd: don't loose track of the file in commit listing
When browsing the history of a file, the more button should generate
a link containing the file= parameter, otherwise we switch back to
the 'global' history.
Spotted by stsp@
- Commit:
6c9ac7298bef21a113492d75f7f7208f0e6fb808
- From:
- Omar Polo <op@omarpolo.com>
- Date:
TODO: gotwebd should reply with 404 on some kind of errors
- Commit:
0ec0e499ac07b3fa388b786eb0cb489bd810df26
- From:
- Omar Polo <op@omarpolo.com>
- Date:
regress/template: use template_free() rather than free(3)
- Commit:
19a5edf3da4acec32a964ac91c065e121b0a0ec2
- From:
- Omar Polo <op@omarpolo.com>
- Date:
template: join subsequent tp_puts() calls
This greatly reduces the number of tp_puts() calls: gotwebd'
pages.tmpl goes from 444 to 190.
Otherwise, this doesn't produce other observable changes.
- Commit:
424803ac446821016c55b334cd85a83aba4d3f37
- From:
- Omar Polo <op@omarpolo.com>
- Date:
gotweb: style improvements
First round of polishing, css simplification and responsiveness for
gotwebd. The new HTML is now actually usable on text-only browsers
and the fonts are bigger on smaller screens; close to no changes
for "normal" desktop usage.
A few regressions were spotted by Lucas on IRC, thanks!
No objections from stsp@