id,summary,reporter,owner,description,type,status,priority,component,severity,resolution,keywords,cc,release 13313,ChangeLog macro (more) link does not work when you specify a repository,Ian Lewis,Ryan J Ollos,"If you specify a repository to the `ChangeLog()` macro it creates a `(more)` link at the bottom of the listing. That link has an incorrect `href` when you specify the repository to report against. The patch below corrects the problem. {{{ #!diff @@ -153,7 +153,9 @@ message = _remove_p(format_to_html( self.env, context, change.message, escape_newlines=True)) out.write('\n
\n%s\n
' % message) - out.write(html.small(html.a(_(""(more)""), href=req.href.log(path)))) + if reponame: + reponame = reponame + '/' + out.write(html.small(html.a(_(""(more)""), href=req.href.log('%s%s' % (reponame, path))))) out.write('\n\n') out.write('\n

') # re-open surrounding paragraph return out.getvalue() }}}",defect,closed,normal,ChangeLogMacro,minor,fixed,,,