make mailing list tab navigable

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1378047 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2012-08-28 09:54:11 +00:00
parent 875ad3c945
commit a787389a39
2 changed files with 30 additions and 2 deletions

View File

@ -315,7 +315,7 @@ function(jquery,ui,sammy,tmpl) {
if(htmlIdSelect.html()!=null){ if(htmlIdSelect.html()!=null){
if( $.trim(htmlIdSelect.html().length)>0){ if( $.trim(htmlIdSelect.html().length)>0){
$("#main-content #"+tabToActivate).tab('show'); $("#main-content #"+tabToActivate).tab('show');
$.log("checkArtifactDetailContent " + htmlId + " html not empty no calculation"); $.log("checkArtifactDetailContent " + htmlId + " html not empty no calculation, tabToActivate:"+tabToActivate);
return; return;
} }
} }
@ -438,6 +438,24 @@ function(jquery,ui,sammy,tmpl) {
checkArtifactDetailContent(groupId,artifactId,version,repositoryId,"artifact-details-dependency-tree-content-a"); checkArtifactDetailContent(groupId,artifactId,version,repositoryId,"artifact-details-dependency-tree-content-a");
}); });
this.get('#artifact-mailing-list/:groupId/:artifactId/:version',function(context){
var repositoryId = this.params.repositoryId;
var groupId= this.params.groupId;
var artifactId= this.params.artifactId;
var version= this.params.version;
checkArtifactDetailContent(groupId,artifactId,version,repositoryId,"artifact-details-mailing-list-content-a");
});
this.get('#artifact-mailing-list~:repositoryId/:groupId/:artifactId/:version',function(context){
var repositoryId = this.params.repositoryId;
var groupId= this.params.groupId;
var artifactId= this.params.artifactId;
var version= this.params.version;
checkArtifactDetailContent(groupId,artifactId,version,repositoryId,"artifact-details-mailing-list-content-a");
});
var calculateUsedBy=function(groupId,artifactId,version){ var calculateUsedBy=function(groupId,artifactId,version){
var dependeesContentDiv=$("#main-content" ).find("#artifact-details-used-by-content" ); var dependeesContentDiv=$("#main-content" ).find("#artifact-details-used-by-content" );

View File

@ -271,7 +271,7 @@ define("archiva.search",["jquery","i18n","jquery.tmpl","choosen","knockout","kno
mainContent.find("#artifact-details-tabs").on('show', function (e) { mainContent.find("#artifact-details-tabs").on('show', function (e) {
$.log("e.target:"+e.target);
if ($(e.target).attr("data-target")=="#artifact-details-info-content") { if ($(e.target).attr("data-target")=="#artifact-details-info-content") {
var location ="#artifact"; var location ="#artifact";
if (self.repositoryId){ if (self.repositoryId){
@ -345,6 +345,16 @@ define("archiva.search",["jquery","i18n","jquery.tmpl","choosen","knockout","kno
} }
location+="/"+self.groupId+"/"+self.artifactId+"/"+self.version; location+="/"+self.groupId+"/"+self.artifactId+"/"+self.version;
window.sammyArchivaApplication.setLocation(location);
return;
}
if ($(e.target).attr("href")=="#artifact-details-mailing-list-content") {
var location ="#artifact-mailing-list";
if (self.repositoryId){
location+="~"+self.repositoryId;
}
location+="/"+self.groupId+"/"+self.artifactId+"/"+self.version;
window.sammyArchivaApplication.setLocation(location); window.sammyArchivaApplication.setLocation(location);
return; return;
} }