diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2016-05-04 17:26:31 +0300 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-05-06 15:18:18 +0200 |
commit | 3f7d602fd4e56c9b20a2ee8769ecd4cf69e6b696 (patch) | |
tree | 55d38a3118f6397de2c553505b0eaeaed28871da /mod/mod-package-details.cxx | |
parent | d2cef486101075942746f58a7fdbc31eb707553d (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 |