mirror of https://github.com/apache/archiva.git
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:
parent
9dd6b36861
commit
a105ea35a5
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue