author | Johan Herland <johan@herland.net> | 2010-06-09 23:09:28 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2010-06-19 08:40:22 (UTC) |
commit | c93ef96aaf77437abeb552bd9e30973f90365f3a (patch) (side-by-side diff) | |
tree | dec445607efb7a9996d008330517730fc0482de3 /ui-shared.c | |
parent | c8e3295469bd3b8e38a9ea4478d517d3861e6c93 (diff) | |
download | cgit-c93ef96aaf77437abeb552bd9e30973f90365f3a.zip cgit-c93ef96aaf77437abeb552bd9e30973f90365f3a.tar.gz cgit-c93ef96aaf77437abeb552bd9e30973f90365f3a.tar.bz2 |
ui-shared: Display path limit directly beneath tab bar in relevant pages
Design-wise, the path is shown by "expanding" the grey border between the
tab bar and the content area of the page to house the current path limit.
This is only displayed on pages where the path limit is relevant, and only
when a path limit is in effect.
Signed-off-by: Johan Herland <johan@herland.net>
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | ui-shared.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ui-shared.c b/ui-shared.c index 3d5030b..bc14e70 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -744,32 +744,38 @@ void cgit_print_pageheader(struct cgit_context *ctx) } else { site_link(NULL, "index", NULL, hc(ctx, "repolist"), NULL, 0); if (ctx->cfg.root_readme) site_link("about", "about", NULL, hc(ctx, "about"), NULL, 0); html("</td><td class='form'>"); html("<form method='get' action='"); html_attr(cgit_rooturl()); html("'>\n"); html("<input type='text' name='q' size='10' value='"); html_attr(ctx->qry.search); html("'/>\n"); html("<input type='submit' value='search'/>\n"); html("</form>"); } html("</td></tr></table>\n"); + if (ctx->qry.vpath) { + html("<div class='path'>"); + html("path: "); + html_txt(ctx->qry.vpath); + html("</div>"); + } html("<div class='content'>"); } void cgit_print_filemode(unsigned short mode) { if (S_ISDIR(mode)) html("d"); else if (S_ISLNK(mode)) html("l"); else if (S_ISGITLINK(mode)) html("m"); else html("-"); html_fileperm(mode >> 6); html_fileperm(mode >> 3); html_fileperm(mode); |