From mboxrd@z Thu Jan 1 00:00:00 1970 From: andy at warmcat.com (Andy Green) Date: Tue, 19 Jun 2018 17:01:26 +0800 Subject: [PATCH v3 00/17] Render READMEs inline in tree view In-Reply-To: <152885510454.7253.3542488576272033383.stgit@mail.warmcat.com> References: <152885510454.7253.3542488576272033383.stgit@mail.warmcat.com> Message-ID: <152939875224.4492.4288866616332837866.stgit@mail.warmcat.com> The following series adds config to allow rendering of selected READMEs inline after the tree view, where present in the directory being viewed. Particularly you can use completely relative markdown to inline pictures served from the current repo rev context, eg, ![overview](./doc-assets/overview.png) will "just work" showing the png from the current view rev context; this format also works in github. It builds on John Keeping's RENDER mode series from 2016. Typical config to enable it, if you have a README.md looks like inline-readme=README.md render.md=/usr/libexec/cgit/filters/html-converters/md2html You can see examples of it in operation at https://libwebsockets.org/git/libwebsockets/tree https://libwebsockets.org/git/libwebsockets/tree/?h=v3.0-stable https://warmcat.com/git/cgit/tree/ The expected basis these apply on top of is - jk/for-jason - ch/for-jason You can find these patches on top of the expected basis here https://warmcat.com/git/cgit/log/ v3 deals with more comment from after v2 --- Andy Green (11): manpage: fix sorting order blame: css: make blame highlight div absolute and at parent top ui-blame: free read_sha1_file() buffer after use ui-tree: ls_tail: add walk table param config: add global inline-readme list config: add repo inline-readme list ui-tree: render any matching README file in tree view md2html-add-asset-postfix-arg ui-shared: deduplicate some code in repolink ui-shared: add helper for generating non-urlencoded links render: adapt for providing extra filter args for plain John Keeping (6): Use string list strdup_strings for mimetypes Add source page Parse render filters from the config ui-tree: split out buffer printing ui-tree: use render filters to display content md2html: add asset mapping cgit.c | 35 +++++- cgit.css | 7 + cgit.h | 6 + cgitrc.5.txt | 215 +++++++++++++++++++++++---------------- cmd.c | 8 + filter.c | 4 + filters/html-converters/md2html | 57 ++++++++++ shared.c | 21 ++++ ui-blame.c | 9 +- ui-shared.c | 70 ++++++++++--- ui-shared.h | 6 + ui-tree.c | 193 +++++++++++++++++++++++++++++++---- ui-tree.h | 2 13 files changed, 496 insertions(+), 137 deletions(-) -- Signature