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/sequence.js | 38 --------------------------- 1 file changed, 38 deletions(-) delete mode 100644 includes/js/dojox/lang/functional/sequence.js (limited to 'includes/js/dojox/lang/functional/sequence.js') diff --git a/includes/js/dojox/lang/functional/sequence.js b/includes/js/dojox/lang/functional/sequence.js deleted file mode 100644 index c5aaa1c..0000000 --- a/includes/js/dojox/lang/functional/sequence.js +++ /dev/null @@ -1,38 +0,0 @@ -if(!dojo._hasResource["dojox.lang.functional.sequence"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["dojox.lang.functional.sequence"] = true; -dojo.provide("dojox.lang.functional.sequence"); - -dojo.require("dojox.lang.functional.lambda"); - -// This module adds high-level functions and related constructs: -// - sequence generators - -// Defined methods: -// - take any valid lambda argument as the functional argument - -(function(){ - var d = dojo, df = dojox.lang.functional; - - d.mixin(df, { - // sequence generators - repeat: function(/*Number*/ n, /*Function|String|Array*/ f, /*Object*/ z, /*Object?*/ o){ - // summary: builds an array by repeatedly applying a unary function N times - // with a seed value Z. - o = o || d.global; f = df.lambda(f); - var t = new Array(n); - t[0] = z; - for(var i = 1; i < n; t[i] = z = f.call(o, z), ++i); - return t; // Array - }, - until: function(/*Function|String|Array*/ pr, /*Function|String|Array*/ f, /*Object*/ z, /*Object?*/ o){ - // summary: builds an array by repeatedly applying a unary function with - // a seed value Z until the predicate is satisfied. - o = o || d.global; f = df.lambda(f); pr = df.lambda(pr); - var t = []; - for(; !pr.call(o, z); t.push(z), z = f.call(o, z)); - return t; // Array - } - }); -})(); - -} -- cgit v1.2.3