From 8f8e790d9468245c031320d6a506a420f486638f Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Fri, 9 Nov 2012 17:13:28 +0100 Subject: Move of Web UI non AMD dep. libs to libs subdirectory Third party JS libraries which are not AMD modules were moved to src/libs/ directory. Links in html files were changed accordingly. https://fedorahosted.org/freeipa/ticket/112 --- install/ui/jquery.ordered-map.js | 155 --------------------------------------- 1 file changed, 155 deletions(-) delete mode 100755 install/ui/jquery.ordered-map.js (limited to 'install/ui/jquery.ordered-map.js') diff --git a/install/ui/jquery.ordered-map.js b/install/ui/jquery.ordered-map.js deleted file mode 100755 index 33737b56..00000000 --- a/install/ui/jquery.ordered-map.js +++ /dev/null @@ -1,155 +0,0 @@ -/* Authors: - * Endi Dewata - * - * 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, either version 3 of the License, or - * (at your option) any later version. - * - * 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, see . -*/ - -jQuery.ordered_map = jQuery.fn.ordered_map = function(map) { - - var that = {}; - - /** - * These variables can be read directly but should not be - * modified directly. Use the provided methods instead. - */ - that.keys = []; - that.values = []; - that.map = {}; - that.length = 0; - - that.get = function(key) { - return that.map[key]; - }; - - that.put = function(key, value) { - - var i = that.get_key_index(key); - if (i >= 0) { - that.values[i] = value; - } else { - that.keys.push(key); - that.values.push(value); - that.length = that.keys.length; - } - - that.map[key] = value; - - return that; - }; - - that.put_map = function(map) { - - if (typeof map !== 'object') return that; - - for (name in map) { - - if (map.hasOwnProperty(name)) { - that.put(name, map[name]); - } - } - - return that; - }; - - that.put_array = function(array, key_name, operation) { - - var i, item, type, key; - - array = array || []; - - for (i=0; i