From 1c5685d68f1b73270fb814fe04cbb490eb90ba5f Mon Sep 17 00:00:00 2001 From: mensonge Date: Fri, 14 Nov 2008 15:39:19 +0000 Subject: Minor fix: Remove DOJO library (60Mo) replaced by link to Google CDN (online DOJO library) git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@159 b3834d28-1941-0410-a4f8-b48e95affb8f --- includes/js/dojox/lang/functional/zip.js | 45 -------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 includes/js/dojox/lang/functional/zip.js (limited to 'includes/js/dojox/lang/functional/zip.js') diff --git a/includes/js/dojox/lang/functional/zip.js b/includes/js/dojox/lang/functional/zip.js deleted file mode 100644 index 523f400..0000000 --- a/includes/js/dojox/lang/functional/zip.js +++ /dev/null @@ -1,45 +0,0 @@ -if(!dojo._hasResource["dojox.lang.functional.zip"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["dojox.lang.functional.zip"] = true; -dojo.provide("dojox.lang.functional.zip"); - -// This module adds high-level functions and related constructs: -// - zip combiners - -// Defined methods: -// - operate on dense arrays - -(function(){ - var df = dojox.lang.functional; - - dojo.mixin(df, { - // combiners - zip: function(){ - // summary: returns an array of arrays, where the i-th array - // contains the i-th element from each of the argument arrays. - // description: This is the venerable zip combiner (for example, - // see Python documentation for general details). The returned - // array is truncated to match the length of the shortest input - // array. - var n = arguments[0].length, m = arguments.length, i; - for(i = 1; i < m; n = Math.min(n, arguments[i++].length)); - var t = new Array(n), j; - for(i = 0; i < n; ++i){ - var p = new Array(m); - for(j = 0; j < m; p[j] = arguments[j][i], ++j); - t[i] = p; - } - return t; // Array - }, - unzip: function(/*Array*/ a){ - // summary: similar to dojox.lang.functional.zip(), but takes - // a single array of arrays as the input. - // description: This function is similar to dojox.lang.functional.zip() - // and can be used to unzip objects packed by - // dojox.lang.functional.zip(). It is here mostly to provide - // a short-cut for the different method signature. - return df.zip.apply(null, a); // Array - } - }); -})(); - -} -- cgit v1.2.3-54-g00ecf