// Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you may not use this file except in compliance // with the License. You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, // software distributed under the License is distributed on an // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. (function(cloudStack, $) { cloudStack.uiCustom.recurringSnapshots = function(args) { var desc = args.desc; var selects = args.selects; var actions = args.actions; var dataProvider = args.dataProvider; return function(args) { var $snapshots = $('#template').find('.recurring-snapshots').clone(); var context = args.context; // Update labels $snapshots.find('.forms ul li.hourly a').html(_l('label.hourly')); $snapshots.find('.forms ul li.daily a').html(_l('label.daily')); $snapshots.find('.forms ul li.weekly a').html(_l('label.weekly')); $snapshots.find('.forms ul li.monthly a').html(_l('label.monthly')); $snapshots.find('.field.timezone .name').html(_l('label.timezone')); $snapshots.find('.field.time .name').html(_l('label.time')); $snapshots.find('.field.time .value label').html(_l('label.minute.past.hour')); $snapshots.find('.add-snapshot-action.add').html(_l('label.add')); // Get description $snapshots.find('.desc').html(_l(desc)); // Snapshot type tabs $snapshots.find('.forms').tabs(); // Populate selects $snapshots.find('form select').each(function() { var $select = $(this); var selectData = selects[$select.attr('name')]; if (selectData) { selectData({ response: { success: function(args) { $(args.data).each(function() { var $option = $('