* Always render full file path because sources may be scattered in different repositories.

This commit is contained in:
hns 2005-08-30 11:06:07 +00:00
parent f1b50186fb
commit c632c8f8bd

View file

@ -57,11 +57,8 @@ function renderLinkTag (param) {
*/
function renderLocation (docEl, param) {
var f = docEl.getLocation ();
if (f.isDirectory ())
return f.getName ();
else {
return f.getParentFile ().getName () + "/" + f.getName ();
}
// with repositories, always display full file path
return f.getAbsolutePath();
}