diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2016-05-04 17:26:31 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2016-05-04 21:26:51 +0300 |
commit | 0f487dc150ef6aa42ac4bd00edff9a02718798fe (patch) | |
tree | d97c44d845b0c3ac06abcac72613b5ed5fb8ad1a /mod/mod-package-details.cxx | |
parent | 907ba04425800ca5404c0b7c778dffe8fed38f2f (diff) |
Add repository location to package version details and repository details pages
Diffstat (limited to 'mod/mod-package-details.cxx')
-rw-r--r-- | mod/mod-package-details.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/mod-package-details.cxx b/mod/mod-package-details.cxx index 2ff93c9..1ee7a7a 100644 --- a/mod/mod-package-details.cxx +++ b/mod/mod-package-details.cxx @@ -225,9 +225,9 @@ handle (request& rq, response& rs) assert (p->internal ()); - // @@ Shouldn't we make package location to be a link to the proper + // @@ Shouldn't we make package repository name to be a link to the proper // place of the About page, describing corresponding repository? - // Yes, I think that's sounds reasonable, once we have about. + // Yes, I think that's sounds reasonable. // Or maybe it can be something more valuable like a link to the // repository package search page ? // @@ -238,7 +238,7 @@ handle (request& rq, response& rs) // // Hm, I am not so sure about this. Consider: stable/testing/unstable. // - s << TR_LOCATION (p->internal_repository.object_id (), root) + s << TR_REPOSITORY (p->internal_repository.object_id (), root) << TR_DEPENDS (p->dependencies, root) << TR_REQUIRES (p->requirements) << ~TBODY |