diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-07-29 22:38:55 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-07-29 22:38:55 +0300 |
commit | 33153c6816c65c96a083c6f5b5e85418c444f929 (patch) | |
tree | d48dff79ef36668b50a5f912aa98a75cce1ed823 /mod/mod-package-details.cxx | |
parent | bb4daf280cbae9f37a44d3b8893a3b933134cddc (diff) |
Add support for src-url and doc-url package manifest values
Diffstat (limited to 'mod/mod-package-details.cxx')
-rw-r--r-- | mod/mod-package-details.cxx | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/mod/mod-package-details.cxx b/mod/mod-package-details.cxx index a241c23..605022d 100644 --- a/mod/mod-package-details.cxx +++ b/mod/mod-package-details.cxx @@ -180,8 +180,15 @@ handle (request& rq, response& rs) << TBODY << TR_LICENSE (licenses) << TR_URL (pkg->url) - << TR_EMAIL (pkg->email) - << TR_TAGS (pkg->tags, root) + << TR_EMAIL (pkg->email); + + if (pkg->doc_url) + s << TR_URL (*pkg->doc_url, "doc-url"); + + if (pkg->src_url) + s << TR_URL (*pkg->src_url, "src-url"); + + s << TR_TAGS (pkg->tags, root) << ~TBODY << ~TABLE; } |