| -rw-r--r-- | cgit.c | 2 | ||||
| -rw-r--r-- | cgit.h | 1 | ||||
| -rw-r--r-- | cgitrc.5.txt | 4 | ||||
| -rw-r--r-- | ui-tree.c | 27 |
4 files changed, 11 insertions, 23 deletions
@@ -66,8 +66,6 @@ void config_cb(const char *name, const char *value) ctx.cfg.index_info = xstrdup(value); else if (!strcmp(name, "logo-link")) ctx.cfg.logo_link = xstrdup(value); - else if (!strcmp(name, "linenumbers")) - ctx.cfg.linenumbers = atoi(value); else if (!strcmp(name, "module-link")) ctx.cfg.module_link = xstrdup(value); else if (!strcmp(name, "virtual-root")) { @@ -174,7 +174,6 @@ struct cgit_config { int enable_log_filecount; int enable_log_linecount; int local_time; - int linenumbers; int max_repo_count; int max_commit_count; int max_lock_attempts; diff --git a/cgitrc.5.txt b/cgitrc.5.txt index a762ccc..3c35b02 100644 --- a/cgitrc.5.txt +++ b/cgitrc.5.txt @@ -146,10 +146,6 @@ logo-link:: calculated url of the repository index page will be used. Default value: none. -linenumbers:: - If set to "1" lines in tree view will have numbers. - Default value: "0". - max-commit-count:: Specifies the number of entries to list per page in "log" view. Default value: "50". @@ -23,24 +23,19 @@ static void print_text_buffer(const char *name, char *buf, unsigned long size) html("<table summary='blob content' class='blob'>\n"); - if (ctx.cfg.linenumbers) { - html("<tr><td class='linenumbers'><pre>"); - idx = 0; - lineno = 0; - - if (size) { - htmlf(numberfmt, ++lineno); - while(idx < size - 1) { // skip absolute last newline - if (buf[idx] == '\n') - htmlf(numberfmt, ++lineno); - idx++; - } + html("<tr><td class='linenumbers'><pre>"); + idx = 0; + lineno = 0; + + if (size) { + htmlf(numberfmt, ++lineno); + while(idx < size - 1) { // skip absolute last newline + if (buf[idx] == '\n') + htmlf(numberfmt, ++lineno); + idx++; } - html("</pre></td>\n"); - } - else { - html("<tr>\n"); } + html("</pre></td>\n"); if (ctx.repo->source_filter) { html("<td class='lines'><pre><code>"); |