mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-04 20:17:42 +00:00
make nimblepkglist tool work with newer versions of the website
This commit is contained in:
@@ -33,6 +33,7 @@ proc processContent(content: string) =
|
||||
|
||||
for pkg in jsonArr:
|
||||
assert pkg.kind == JObject
|
||||
if not pkg.hasKey"url": continue
|
||||
let pkgWeb =
|
||||
if pkg.hasKey("web"): pkg["web"].str
|
||||
else: pkg["url"].str
|
||||
@@ -40,7 +41,7 @@ proc processContent(content: string) =
|
||||
desc = pkg["description"].str
|
||||
dot = if desc.high > 0 and desc[desc.high] in endings: "" else: "."
|
||||
listItem = li(a(href=pkgWeb, pkg["name"].str), " ", desc & dot)
|
||||
if pkg["url"].str.startsWith("git://github.com/nimrod-code") or
|
||||
if pkg["url"].str.startsWith("https://github.com/nim-lang") or
|
||||
pkg["url"].str.startsWith("git://github.com/nim-lang") or
|
||||
"official" in pkg["tags"].elems:
|
||||
officialCount.inc
|
||||
|
||||
Reference in New Issue
Block a user