-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5203 from vkuznet/reqmgr2
New code for ReqMgr web UI including changes for underlying WMCore
- Loading branch information
Showing
64 changed files
with
14,904 additions
and
23 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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;} | ||
}); | ||
} |
Oops, something went wrong.