summary refs log tree commit diff
path: root/etc
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-09-11 21:46:31 -0400
committerJune McEnroe <june@causal.agency>2018-09-11 21:46:31 -0400
commitaa942e8832a227d41c49ad862971616a454010d9 (patch)
tree1aba54ce1bde28cba67084e50dc1f76dae2d29df /etc
parentAdd "blank" lines to man pages (diff)
downloadsrc-aa942e8832a227d41c49ad862971616a454010d9.tar.gz
src-aa942e8832a227d41c49ad862971616a454010d9.zip
Rewrite bin.7 and render to plaintext README
Diffstat (limited to '')
0 files changed, 0 insertions, 0 deletions
tr> Free up the buffer allocated in read_sha1_file() Signed-off-by: Andy Green <andy@warmcat.com> Signed-off-by: John Keeping <john@keeping.me.uk> 2018-06-16Makefile: drive asciidoc directly for HTML outputJohn Keeping This is mostly taken from Git's doc/Makefile, although simplified for our use. The output now uses Asciidoc's default CSS which I think looks a bit nicer than the Docbook formatting; as a result of this we no longer need our custom .css file. A side effect of this change is that temporary files generated from the HTML output no longer conflict with the manpage output format (because any temporary HTML output files use names derived from the output filename which includes .html). Signed-off-by: John Keeping <john@keeping.me.uk> 2018-02-21doc: use consistent id's when generating html filesTodd Zullinger The html documentation is generated using a2x which calls docbook tools to do the work. The generate.consistent.ids parameter ensures that when the docbook stylesheet assigns an id value to an output element it is consistent as long as the document structure has not changed. Having consistent html files reduces frivolous changes between builds. Distributions can more easily deploy multiple architecture builds and compare changes between package versions. End-users avoid needless changes in files deployed or backed up. The generate.consistent.ids parameter was added in docbook-xsl-1.77.0. Older versions gracefully ignore the parameter, so we can pass the parameter unconditionally. Most distributions contain docbook-xsl newer than 1.77.0. This includes Fedora, Debian, Ubuntu, and RHEL/CentOS 7. RHEL/CentOS 6 and Debian Wheezy (old stable) ship with an older version, unsurprisingly. Signed-off-by: Todd Zullinger <tmz@pobox.com> 2018-02-12cgit: prepare repo before error pagesJason A. Donenfeld This fixes a crash when showing a list of all heads in the <select> box in the header. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2018-01-19ui-blame: Allow syntax highlightingJeff Smith Place file contents into a single block so that syntax highlighting can be applied in the usual fashion. Place the alternating color bars behind the file contents. Force the default syntax highlighting background to transparent. Signed-off-by: Jeff Smith <whydoubt@gmail.com> Reviewed-by: John Keeping <john@keeping.me.uk> 2018-01-19ui-blame: Make each column into a single table cellJeff Smith Signed-off-by: Jeff Smith <whydoubt@gmail.com> Reviewed-by: John Keeping <john@keeping.me.uk> 2018-01-19ui-blame: Break out emit_blame_entry into component methodsJeff Smith Signed-off-by: Jeff Smith <whydoubt@gmail.com> Reviewed-by: John Keeping <john@keeping.me.uk> 2018-01-19ui-blame: Distinguish hashes column from lines column