Skip to content

Commit

Permalink
Merge pull request #5203 from vkuznet/reqmgr2
Browse files Browse the repository at this point in the history
New code for ReqMgr web UI including changes for underlying WMCore
  • Loading branch information
ticoann committed Jun 30, 2014
2 parents 237abac + f2a2647 commit 74bc2bb
Show file tree
Hide file tree
Showing 64 changed files with 14,904 additions and 23 deletions.
Binary file added src/html/ReqMgr/img/cms_logo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions src/html/ReqMgr/javascript/ajax_utils.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
function ajaxApproveRequests(base, method, ids) {
// base is a URL base, e.g. https://cmsweb.cern.ch
// method is request method, e.g. /request
// ids are request ids which needs to be approved
new Ajax.Updater('response', base+'/'+method,
{ method: 'get' ,
parameters : {'ids': ids},
onException: function() {return;},
onComplete : function() {return;}
});
}
Loading

0 comments on commit 74bc2bb

Please sign in to comment.