start adding small comment

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1304226 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2012-03-23 08:32:40 +00:00
parent 9dd6b36861
commit a105ea35a5
1 changed files with 22 additions and 0 deletions

View File

@ -265,20 +265,42 @@ $(function() {
})
}
/**
* display groupId note #main-content must contains browse-tmpl
* @param groupId
*/
generalDisplayGroup=function(groupId) {
var parentBrowseViewModel=new BrowseViewModel(null,null,null);
displayGroupDetail(groupId,parentBrowseViewModel,null);
}
/**
* display groupId/artifactId detail note #main-content must contains browse-tmpl
* @param groupId
* @param artifactId
*/
generalDisplayArtifactDetailView=function(groupId, artifactId){
displayArtifactDetail(groupId, artifactId);
}
/**
* display groupId/artifactId/version detail note #main-content must contains browse-tmpl
* @param groupId
* @param artifactId
* @param version
*/
generalDisplayArtifactVersionDetailViewModel=function(groupId,artifactId,version){
var artifactVersionDetailViewModel = new ArtifactVersionDetailViewModel (groupId,artifactId,version)
artifactVersionDetailViewModel.display();
}
/**
*
* @param groupId
* @param artifactId
* @param parentBrowseViewModel
* @param restUrl
*/
displayArtifactDetail=function(groupId,artifactId,parentBrowseViewModel,restUrl){
var artifactDetailViewModel=new ArtifactDetailViewModel(groupId,artifactId);
var mainContent = $("#main-content");