MantisBT - CDash
View Issue Details
0010289CDashpublic2010-02-14 00:172011-12-23 08:32
Emmanuel Christophe 
Julien Jomier 
normalfeatureN/A
resolvedfixed 
1.6 
2.0 
0010289: Patch for the support of hgweb navigation (mercurial)

Here is a patch to add the navigation in hgweb repositories (mercurial web interface) from cdash.
No tags attached.
patch cdash-hgweb-support.patch (1,815) 2010-02-14 00:17
https://public.kitware.com/Bug/file/2862/cdash-hgweb-support.patch
patch cdash-182-hgweb-support.patch (1,782) 2011-01-03 15:28
https://public.kitware.com/Bug/file/3600/cdash-182-hgweb-support.patch
Issue History
2010-02-14 00:17Emmanuel ChristopheNew Issue
2010-02-14 00:17Emmanuel ChristopheFile Added: cdash-hgweb-support.patch
2011-01-03 15:28Emmanuel ChristopheFile Added: cdash-182-hgweb-support.patch
2011-01-03 15:28Emmanuel ChristopheNote Added: 0024366
2011-12-22 12:41Julien JomierAssigned To => Julien Jomier
2011-12-22 12:41Julien JomierStatusnew => assigned
2011-12-22 16:02Julien JomierNote Added: 0028049
2011-12-22 16:02Julien JomierStatusassigned => resolved
2011-12-22 16:02Julien JomierFixed in Version => 2.0
2011-12-22 16:02Julien JomierResolutionopen => fixed
2011-12-23 08:29Emmanuel ChristopheNote Added: 0028063
2011-12-23 08:29Emmanuel ChristopheStatusresolved => feedback
2011-12-23 08:29Emmanuel ChristopheResolutionfixed => reopened
2011-12-23 08:32Julien JomierNote Added: 0028065
2011-12-23 08:32Julien JomierStatusfeedback => resolved
2011-12-23 08:32Julien JomierResolutionreopened => fixed

Notes
(0024366)
Emmanuel Christophe   
2011-01-03 15:28   
Added the patch working with cdash 1.8.2.
(0028049)
Julien Jomier   
2011-12-22 16:02   
Thanks for the patch. Could you check if the URL to get all the changes given a revision is this right one:

    $revision_url = $projecturl."/detail?r=".$revision;

Thanks again.
(0028063)
Emmanuel Christophe   
2011-12-23 08:29   
Seems like the url to get all the change for a revision is not correct:

It's something like:
http://hg.orfeo-toolbox.org/OTB/rev/1b3d97b65810 [^]

So
 $revision_url = $projecturl."/detail?r=".$revision;
Should be changed to
 $revision_url = $projecturl."/rev/".$revision;
(0028065)
Julien Jomier   
2011-12-23 08:32   
Should be better now. Thanks for the report!