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/dtl/filter/logic.js | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 includes/js/dojox/dtl/filter/logic.js (limited to 'includes/js/dojox/dtl/filter/logic.js') diff --git a/includes/js/dojox/dtl/filter/logic.js b/includes/js/dojox/dtl/filter/logic.js deleted file mode 100644 index b69a1a8..0000000 --- a/includes/js/dojox/dtl/filter/logic.js +++ /dev/null @@ -1,34 +0,0 @@ -if(!dojo._hasResource["dojox.dtl.filter.logic"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["dojox.dtl.filter.logic"] = true; -dojo.provide("dojox.dtl.filter.logic"); - -dojo.mixin(dojox.dtl.filter.logic, { - default_: function(value, arg){ - // summary: If value is unavailable, use given default - return value || arg || ""; - }, - default_if_none: function(value, arg){ - // summary: If value is null, use given default - return (value === null) ? arg || "" : value || ""; - }, - divisibleby: function(value, arg){ - // summary: Returns true if the value is devisible by the argument" - return (parseInt(value) % parseInt(arg)) == 0; - }, - _yesno: /\s*,\s*/g, - yesno: function(value, arg){ - // summary: - // arg being a comma-delimited string, value of true/false/none - // chooses the appropriate item from the string - if(!arg) arg = 'yes,no,maybe'; - var parts = arg.split(dojox.dtl.filter.logic._yesno); - if(parts.length < 2){ - return value; - } - if(value) return parts[0]; - if((!value && value !== null) || parts.length < 3) return parts[1]; - return parts[2]; - } -}); - -} -- cgit v1.2.3-54-g00ecf