Commits
- Commit:
4b752015b5208a96c2d1b6c1c6b8589884b8b2b6
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
switch 'tog diff' and 'tog blame' to Myers diff for speed
Make the choice of diff algorithm configurable by diff API users.
The got and gotweb programs keep using Patience diffs which are
prettier than Myers. But tog should be as fast as possible since
it is being used interactively. If performance of Patience diff
gets improved later we can consider switching tog back over to it.
ok tracey jamsek
- Commit:
e6e73e5504113b6c75f1b2e3dec3e22af8f41996
- From:
- Tracey Emery <tracey@traceyemery.net>
- Date:
move remaining got_opentemp's out of blame. ok op@
- Commit:
f9d376997dd2e84bf84c3c9a4da842d1b5565e9d
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
move got_opentempfd() out of lib/diff.c again
ok tracey
- Commit:
1b484788fec38ce9936267c176e77f653d749b8d
- From:
- Tracey Emery <tracey@traceyemery.net>
- Date:
move got_opentempfd out of blame_open ok stsp@ jrick@
- Commit:
eb81bc23c735e8aa9eaee796a230c7d7c76657ba
- From:
- Tracey Emery <tracey@traceyemery.net>
- Date:
move got_opentempfd out of open_blob. ok stsp@
- Commit:
58e31a80da4f4a9e10eaea148672190f35107a47
- From:
- Omar Polo <op@omarpolo.com>
- Date:
build with -Wwrite-strings
Throwing this into the mix for a while, we can always get rid of it
again if it becomes annoying. No objections from stsp@
- Commit:
e17984a09be8df91edac0a44b56c088560951d24
- From:
- Tracey Emery <tracey@traceyemery.net>
- Date:
clear gw_trans->pack_fds pointer in gotweb
- Commit:
b0c3aa90f1603016465bfb79b4fd860b7fec0e1b
- From:
- Tracey Emery <tracey@traceyemery.net>
- Date:
fix recent regression in gotweb for pack_fds
- Commit:
0ae84acc1f0a0584e4f26ccbe029c895043b3abe
- From:
- Tracey Emery <tracey@traceyemery.net>
- Date:
move got_opentempfd out of got_repo_open. ok stsp@
thanks for all the help massaging this diff
- Commit:
b72706c3d172544098fcd24fd639374694a8fce9
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
move creation of tempfiles outside of lib/diff.c
ok tracey
- Commit:
d7b5a0e827bb38e5c8502f0ba8d7838fedaba19b
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
inline struct got_object_id in struct got_object_qid
Saves us from doing a malloc/free call for every item on the list.
ok op@
- Commit:
820e446669735d37c11281ab1f6f6d22f152ad48
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix typo in comment: navicate -> navigate
- Commit:
392891ce58d003c4ae3d634509a29ca020f12e92
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
pass an already open commit object to the blame callback
ok op@
- Commit:
a44927cc053de352796022400f27bce4522b407c
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
stop relying on commit cache for good performance of got_object_id_by_path()
Instead of internally opening and closing the same commit object over and
over again, require callers to pass an open commit object in. Avoids an
inherent dependency on the commit object cache for reasonable performance.
ok op@
- Commit:
1a4ff8fae8e8ee6133ebc8ac392e7df426981918
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix free() on uninitialized variable upon error in gw_output_file_blame()
ok op@
- Commit:
39d5d1d2ed506dd6463430eb1311f4d96a66e6ae
- From:
- Tracey Emery <tracey@traceyemery.net>
- Date:
rm unused vars
- Commit:
d58ddaf3fc10239711ae7a88664e3a100567ba3c
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Date:
const-ify tables
ok thomas_adam millert
- Commit:
4362cf9c24c2ad037cda602ae688bef54869f793
- From:
- Tracey Emery <tracey@traceyemery.net>
- Date:
style
- Commit:
b3f4d55086c5aac0aad36a57ce28e651ee5772fc
- From:
- Tracey Emery <tracey@traceyemery.net>
- Date:
unbreak gotweb index when pack files are missing
- Commit:
00fe21f262ab567bb792120514b49b37236c5422
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add "e" (close-on-exec) flag to fopen(3) calls
suggested by millert
ok thomas_adam
- Commit:
67b631c9e0d2c43ceeda1a387ba696b2d34a1035
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
implement 'got diff -c' for diffing commits with optional filtering by path
Need for filtering by path sugggested by kn@
ok naddy@
- Commit:
abc59930d57a2d46c310e1b0c758c948554bc1af
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Date:
indentation fixes
- Commit:
e385fc421f331989f2e6518465e5ead42e5a0618
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
use gmtime_r(3) instead of localtime_r(3) to display time in UTC as intended
Problem noticed by naddy due to failing regress tests at midnight, and then
analyzed with additional help from millert.
ok naddy
- Commit:
c333d3f7e18758890f7454075451edf36eb26c0f
- From:
- Tracey Emery <tracey@traceyemery.net>
- Date:
goto the right label, so we can get previous on the last page of briefs
- Commit:
178d3e72333615665cce7ea0ade9bf9fbbf59993
- From:
- Tracey Emery <tracey@traceyemery.net>
- Date:
we will never have a previous link on the summary page