]> granicus.if.org Git - cgit/commitdiff
render: adapt for providing extra filter args for plain
authorAndy Green <andy@warmcat.com>
Mon, 18 Jun 2018 06:25:59 +0000 (14:25 +0800)
committerAndy Green <andy@warmcat.com>
Thu, 28 Jun 2018 23:53:21 +0000 (07:53 +0800)
This changes the render filter exec part to provide a second
and third argument, which are used by md2html to fix up the url
path for "plain" for the repo, eg, "/cgit/plain/" and
"?h=mybranch", as required by the modifications to md2html in
the previous patches.

The combination means cgit becomes able to serve assets using
markdown urls starting from the repo root dir, without mentioning
any virtual url part specific to a cgit or other web rendering
instance, while respecting the version context.

Eg, continuing the example of the arguments being
"/cgit/plain/" and "?h=mybranch" from above, if the markdown has

![overview](./doc-assets/overview.png)

the img src will be fixed up to

"/cgit/plain/doc-assets/overview.png?h=mybranch"

If the same document is viewed from a different rev in cgit, the
processed markdown url will change to match the cgit context, even
though the markdown relative URL is the same for all versions.

Signed-off-by: Andy Green <andy@warmcat.com>
Reviewed-by: John Keeping <john@keeping.me.uk>
cgitrc.5.txt
filter.c
ui-tree.c

index 62d7c2adb8f20bb261b44a770e937436a9f4e22f..99fc7992a1943bccf00bef3511fbbff7c489d870 100644 (file)
@@ -738,11 +738,17 @@ owner filter::
        output.  The output is included in the Owner column.
 
 render filter::
-       This filter is given a single parameter: the filename of the source
-       file to render. The filter can use the filename to determine (for
-       example) the syntax highlighting mode. The contents of the file that
-       is to be rendered is available on standard input and the rendered
-       content is expected on standard output.
+       This filter is given a single required parameter: the filename of
+       the source file to render. The filter can use the filename to
+       determine (for example) the syntax highlighting mode. The
+       contents of the file that is to be rendered is available on standard
+       input and the rendered content is expected on standard output.  Two
+       additional optional parameters are the base URL path and optional
+       URL parameter arguments needed to adapt relative paths in the input
+       to absolute URLs pointing to the "plain" version of the file in the
+       repo rev context, eg, "/myvirt/reponame/plain" and "?h=mybranch"
+       could be used to convert input references like "pics/myfile.png" to
+       '<img src="/myvirt/reponame/plain/pics/myfile.png?h=mybranch">'
 
 source filter::
        This filter is given a single parameter: the filename of the source
index 4ae4aaa2418cfdf134edbab2642953e5b8e7e33f..7c1f18818bcfba8cbc67cc6a78e5d8b8c80deec6 100644 (file)
--- a/filter.c
+++ b/filter.c
@@ -424,6 +424,10 @@ struct cgit_filter *cgit_new_filter(const char *cmd, filter_type filtertype)
                        argument_count = 12;
                        break;
 
+               case RENDER:
+                       argument_count = 3;
+                       break;
+
                case EMAIL:
                        argument_count = 2;
                        break;
@@ -434,7 +438,6 @@ struct cgit_filter *cgit_new_filter(const char *cmd, filter_type filtertype)
 
                case SOURCE:
                case ABOUT:
-               case RENDER:
                        argument_count = 1;
                        break;
 
index 6ffd4ddca398d34309e0c17a3a157960b72c2e57..e4cb5587154869729bb81adc67106dd0a9e05ab7 100644 (file)
--- a/ui-tree.c
+++ b/ui-tree.c
@@ -102,16 +102,21 @@ static void print_buffer(const char *basename, char *buf, unsigned long size)
 }
 
 static void render_buffer(struct cgit_filter *render, const char *name,
-               char *buf, unsigned long size)
+                         char *buf, unsigned long size)
 {
        char *filter_arg = xstrdup(name);
+       struct strbuf sb_pre = STRBUF_INIT, sb_post = STRBUF_INIT;
+
+       cgit_repo_create_url(&sb_pre, &sb_post, "plain", ctx.qry.head, NULL);
 
        html("<div class='blob'>");
-       cgit_open_filter(render, filter_arg);
+       cgit_open_filter(render, filter_arg, sb_pre.buf, sb_post.buf);
        html_raw(buf, size);
        cgit_close_filter(render);
        html("</div>");
 
+       strbuf_release(&sb_pre);
+       strbuf_release(&sb_post);
        free(filter_arg);
 }