diff options
author | Ruslan Mustakov <r.mustakov@gmail.com> | 2017-07-31 20:54:57 +0700 |
---|---|---|
committer | Ruslan Mustakov <r.mustakov@gmail.com> | 2017-07-31 20:54:57 +0700 |
commit | 606aab9cdf6d846ac5633a769ab0adaf6b960a6b (patch) | |
tree | 33dd9a25521887971132a7a3012224d589e01b77 | |
parent | 6b38b37b4fa3168f1bf96822b3ff4471d8fd68c0 (diff) | |
download | Nim-606aab9cdf6d846ac5633a769ab0adaf6b960a6b.tar.gz |
Do not generate Source/Edit without git in config
-rw-r--r-- | compiler/docgen.nim | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/compiler/docgen.nim b/compiler/docgen.nim index 26dd889ce..3f4f7b164 100644 --- a/compiler/docgen.nim +++ b/compiler/docgen.nim @@ -462,12 +462,14 @@ proc genItem(d: PDoc, n, nameNode: PNode, k: TSymKind) = var path = n.info.toFullPath if path.startsWith(cwd): path = path[cwd.len+1 .. ^1].replace('\\', '/') - var commit = getConfigVar("git.commit") - if commit.len == 0: commit = "master" - dispA(seeSrcRope, "$1", "", [ropeFormatNamedVars(docItemSeeSrc, - ["path", "line", "url", "commit"], [rope path, - rope($n.info.line), rope getConfigVar("git.url"), - rope commit])]) + let gitUrl = getConfigVar("git.url") + if gitUrl.len > 0: + var commit = getConfigVar("git.commit") + if commit.len == 0: commit = "master" + dispA(seeSrcRope, "$1", "", [ropeFormatNamedVars(docItemSeeSrc, + ["path", "line", "url", "commit"], [rope path, + rope($n.info.line), rope gitUrl, + rope commit])]) add(d.section[k], ropeFormatNamedVars(getConfigVar("doc.item"), ["name", "header", "desc", "itemID", "header_plain", "itemSym", |