mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-02 12:16:56 -06:00
64f273a40d
The add.js has been modified to support adding new entry with dynamically generated pkey. The index.xhtml has been modified to include service.js. The service.js has been modified to use the new API to define the search, add, and details fields. Callbacks are used to add quick links and generate pkey dynamically. The webui.js has been modified to add the Services tab.
108 lines
3.1 KiB
JavaScript
108 lines
3.1 KiB
JavaScript
/* Authors:
|
|
* Pavel Zuna <pzuna@redhat.com>
|
|
*
|
|
* Copyright (C) 2010 Red Hat
|
|
* see file 'COPYING' for use and warranty information
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; version 2 only
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
/* REQUIRES: ipa.js */
|
|
|
|
var IPA_ADD_POPULATE = 1;
|
|
var IPA_ADD_UPDATE = 2;
|
|
|
|
function add_dialog_create(obj_name, adl)
|
|
{
|
|
var add_dialog = $('<div></div>');
|
|
|
|
function add(evt, called_from_add_and_edit) {
|
|
var pkey = [];
|
|
var options = {};
|
|
var pkey_name = ipa_objs[obj_name].primary_key;
|
|
|
|
function add_win(data, text_status, xhr) {
|
|
if (called_from_add_and_edit) {
|
|
var state = {};
|
|
state[obj_name + '-facet'] = 'details';
|
|
state[obj_name + '-pkey'] = pkey[0];
|
|
$.bbq.pushState(state);
|
|
}
|
|
};
|
|
|
|
var fields = adl[2];
|
|
for (var i = 0; i < fields.length; ++i) {
|
|
var f = fields[i];
|
|
var attr = f[0];
|
|
if (typeof f[2] == 'function') {
|
|
var value = f[2](add_dialog, IPA_ADD_UPDATE);
|
|
if (value != null) {
|
|
if (attr == pkey_name)
|
|
pkey = [value];
|
|
else
|
|
options[attr] = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
add_dialog.find('input').each(function () {
|
|
var jobj = $(this);
|
|
var attr = jobj.attr('name');
|
|
var value = jobj.val();
|
|
if (value) {
|
|
if (pkey.length == 0 && attr == pkey_name)
|
|
pkey = [jobj.val()];
|
|
else if (options[attr] == null)
|
|
options[attr] = jobj.val();
|
|
}
|
|
});
|
|
|
|
ipa_cmd('add', pkey, options, add_win, null, obj_name);
|
|
add_dialog.dialog('close');
|
|
};
|
|
|
|
function add_and_edit(evt) {
|
|
add(evt, true);
|
|
add_dialog.dialog('close');
|
|
};
|
|
|
|
function cancel() {
|
|
add_dialog.dialog('close');
|
|
};
|
|
|
|
add_dialog.attr('id', adl[0]);
|
|
add_dialog.attr('title', adl[1]);
|
|
|
|
var fields = adl[2];
|
|
for (var i = 0; i < fields.length; ++i) {
|
|
var f = fields[i];
|
|
if (typeof f[2] == 'function') {
|
|
f[2](add_dialog, IPA_ADD_POPULATE);
|
|
} else {
|
|
add_dialog.append('<label>' + f[1] + '</label>');
|
|
add_dialog.append('<input type="text" name="' + f[0] + '" />');
|
|
}
|
|
}
|
|
|
|
add_dialog.dialog({
|
|
modal: true,
|
|
buttons: {
|
|
'Add': add,
|
|
'Add and edit': add_and_edit,
|
|
'Cancel': cancel
|
|
}
|
|
});
|
|
}
|
|
|