added repository name and revision to the bottom of the repository browser

This commit is contained in:
Sebastian Sdorra
2011-06-22 18:10:20 +02:00
parent 2a8ba7c70c
commit 854fc6bb03

View File

@@ -106,7 +106,17 @@ Sonia.repository.RepositoryBrowser = Ext.extend(Ext.grid.GridPanel, {
}]
});
var bbar = [
'->',
this.repository.name
];
if ( this.revision != null ){
bbar.push(': ', this.revision);
}
var config = {
bbar: bbar,
autoExpandColumn: 'description',
title: String.format(this.repositoryBrowserTitleText, this.repository.name),
store: browserStore,