Commits
- Commit:
5191b70b5b2e123aadd88aeafe2e2cfc0958c327
- From:
- Mark Jamsek <mark@jamsek.dev>
- Date:
got: implement diffstat for got log and tog diff view
Add new got_diff_blob_cb() implementation to compute added/removed line metrics
for a given diff. This enables displaying a diffstat with 'got log -d'. As per
suggestion from stsp, change tog diff view to display the diffstat by default.
ok stsp@
- Commit:
17c726049a0c49099ef0a44190264fa4b6b037fa
- From:
- Omar Polo <op@omarpolo.com>
- Date:
backout 169b163113a6db9878c9166aa05fbd30d05eb832
pushed by mistake, wasn't reviewed.
- Commit:
ee6900c4eae543d6ae3f4e8a9cc7f09b6a64927e
- From:
- Josiah Frentsos <jfrent@tilde.team>
- Via:
- Omar Polo <op@omarpolo.com>
- Date:
template.7: fix double spaces
diff from Josiah Frentsos and clue from tb@, thanks! (I can't read.)
- Commit:
196a7c5f9fcfa7b9a562edda932a03787246e844
- From:
- Omar Polo <op@omarpolo.com>
- Date:
template: bump date in manpages
- Commit:
331d99fbfee81d11d26e65f3cd5b481241356af4
- From:
- Josiah Frentsos <jfrent@tilde.team>
- Via:
- Omar Polo <op@omarpolo.com>
- Date:
template.7: Add a missing \& where needed
based on a diff by Josiah Frentsos, thanks!
- Commit:
eb0305b223a258415c82562541c71b1da8066e6c
- From:
- Josiah Frentsos <jfrent@tilde.team>
- Via:
- Omar Polo <op@omarpolo.com>
- Date:
template.7: Use -width instead of -indent
diff from Josiah Frentsos, thanks!
- Commit:
6251b93debf41f759e05d621fd52029cd8a3b8cf
- From:
- Josiah Frentsos <jfrent@tilde.team>
- Via:
- Omar Polo <op@omarpolo.com>
- Date:
template.7: use An instead of Ar in AUTHORS
diff from Josiah Frentsos, thanks!
- Commit:
89f5e055e53f13f390f0f0346faf3170992fcb01
- From:
- Josiah Frentsos <jfrent@tilde.team>
- Via:
- Omar Polo <op@omarpolo.com>
- Date:
template.1: Use -std with Ex
diff from Josiah Frentsos, thanks!
- Commit:
169b163113a6db9878c9166aa05fbd30d05eb832
- From:
- Omar Polo <op@omarpolo.com>
- Date:
gotwebd: templateify gotweb_render_diff
To avoid calling functions from got_operations.c directly from a
template (which would hide the error), change got_output_repo_diff into
got_open_diff_for_output that returns a file with the diff in it, to be
then rendered by the template. got_gotweb_flushfile needs to be exposed
then.
It also bundles a smaller change: the `label' argument of
got_repo_match_object_id is optional and not used, so just pass NULL
there.
- Commit:
411c220f7134f9aea00d14f2601433cde03b0e06
- From:
- Omar Polo <op@omarpolo.com>
- Date:
template: specify which C loop
- Commit:
0f297329190ee2d8862b5e7f5fc3b27b960e4f49
- From:
- Omar Polo <op@omarpolo.com>
- Date:
template: add `while' construct
- Commit:
83577462cc61708af1c98d70939bb1d6c54a1506
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
switch gotd.conf syntax from 'unix_socket' to 'listen on'
ok op@
- Commit:
1dec34dfda7ccb3caadab65aca907251ab8fd72e
- From:
- Omar Polo <op@omarpolo.com>
- Date:
template: drop tmpl.c from SRCS
was added there mistakenly. it's not part of the "compiler", it's part
of the "user library" and provides useful functions for the consumers.
- Commit:
c7224e4126f5079e0dcb5b29b8ddb14c242a6c0b
- From:
- Omar Polo <op@omarpolo.com>
- Date:
gotd: delete unreachable code after gotd_shutdown()
- Commit:
4a7f5bae8842d57984b6f0f260eeb97c104d4d59
- From:
- Omar Polo <op@omarpolo.com>
- Date:
gotwebd: urlencode also the double quote character
URLs are embedded as part of the HTML and, while it seems legal from
RFC3986 to leave that character unquoted, we need it quoted to avoid
breaking the HTML output.
ok tracey@
- Commit:
43d421de222216d318387afcd42a4941d2714d95
- From:
- Omar Polo <op@omarpolo.com>
- Date:
gotwebd: templateify gotweb_render_tree
ok tracey@
- Commit:
5eeb13e79b508eacc001662d742ea375c069d7f7
- From:
- Omar Polo <op@omarpolo.com>
- Date:
gotwebd: css: fix horizontal overflow in blob and blame pages
spotted by + "looks good" tracey@
- Commit:
298f95fb39537cc43237be56aeb86ffbc21e38f0
- From:
- Omar Polo <op@omarpolo.com>
- Date:
gotwebd: render BLOB inline, add BLOBRAW for serving raw blobs
binary blobs are automatically redirected to the BLOBRAW page (which is
the old BLOB.)
ok jamske
- Commit:
389a68d86df4adffefba4050e86cd6a8fe6de36d
- From:
- Omar Polo <op@omarpolo.com>
- Date:
provide a getline-style function for blobs
ok jamsek
- Commit:
77f619a8442c52e9c02e8060b76c25def0b5f1c6
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
revoke filesystem access in gotd listen process via unveil(2)
This should avoid involuntary use of bind(2) with arbitrary socket paths.
ok op@
- Commit:
7843333165edf3bdaa739cd96c701e1b7d53aa81
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
expose 'gotctl info' output only to the root user
Now that anyone can connect to the socket, it is probably safer to
expose information about currently connected clients only to root.
- Commit:
3a1c1a1b20ae87fe3c8fe3d040d16e816ff0905c
- From:
- Omar Polo <op@omarpolo.com>
- Date:
gotwebd.conf: use `listen on socket' syntax for UNIX sockets too
and drop unix_socket and unix_socket_path in server context.
ok stsp@
- Commit:
6f854dde056f82d0c757c720beed863fc557a1ca
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
remove the gotsh group requirement from gotd; any user can now connect
Repository access is now controlled by access rules in gotd.conf,
and concurrent connections to the gotd socket by local users are
limited by the listen process. We should keep refining our anti-DoS
measures in the future, but at least we have something in place now.
ok jamsek, op
- Commit:
0b287d3f8df90ae3e97d9c35ac16299fd63e0c3e
- From:
- Omar Polo <op@omarpolo.com>
- Date:
gotwebd: rework got_output_file_blob, no functional change
can now use got_object_blob_is_binary to simplify the logic.
ok stsp@
- Commit:
0d569390539da8c000749a958bde945d57274f50
- From:
- Omar Polo <op@omarpolo.com>
- Date:
add got_object_blob_is_binary function
needed for future use by gotwebd. ok stsp@