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/crypto/Blowfish.js | 10 ---------- includes/js/dojox/crypto/MD5.js | 10 ---------- includes/js/dojox/crypto/README | 12 ------------ includes/js/dojox/crypto/_base.js | 14 -------------- 4 files changed, 46 deletions(-) delete mode 100644 includes/js/dojox/crypto/Blowfish.js delete mode 100644 includes/js/dojox/crypto/MD5.js delete mode 100644 includes/js/dojox/crypto/README delete mode 100644 includes/js/dojox/crypto/_base.js (limited to 'includes/js/dojox/crypto') diff --git a/includes/js/dojox/crypto/Blowfish.js b/includes/js/dojox/crypto/Blowfish.js deleted file mode 100644 index a317887..0000000 --- a/includes/js/dojox/crypto/Blowfish.js +++ /dev/null @@ -1,10 +0,0 @@ -if(!dojo._hasResource["dojox.crypto.Blowfish"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["dojox.crypto.Blowfish"] = true; -dojo.provide("dojox.crypto.Blowfish"); -dojo.require("dojox.encoding.crypto.Blowfish"); - -dojo.deprecated("dojox.crypto.Blowfish", "DojoX cryptography has been merged into DojoX Encoding. To use Blowfish, include dojox.encoding.crypto.Blowfish.", "1.2"); - -dojox.crypto.Blowfish=dojox.encoding.crypto.Blowfish; - -} diff --git a/includes/js/dojox/crypto/MD5.js b/includes/js/dojox/crypto/MD5.js deleted file mode 100644 index aa5ac1e..0000000 --- a/includes/js/dojox/crypto/MD5.js +++ /dev/null @@ -1,10 +0,0 @@ -if(!dojo._hasResource["dojox.crypto.MD5"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["dojox.crypto.MD5"] = true; -dojo.provide("dojox.crypto.MD5"); -dojo.require("dojox.encoding.digests.MD5"); - -dojo.deprecated("dojox.crypto.MD5.compute", "DojoX cryptography has been merged into DojoX Encoding. To use MD5, include dojox.encoding.digests.MD5.", "1.2"); - -dojox.crypto.MD5.compute=dojox.encoding.digests.MD5; - -} diff --git a/includes/js/dojox/crypto/README b/includes/js/dojox/crypto/README deleted file mode 100644 index 4103fa6..0000000 --- a/includes/js/dojox/crypto/README +++ /dev/null @@ -1,12 +0,0 @@ -------------------------------------------------------------------------------- -DojoX Cryptography -------------------------------------------------------------------------------- -Project state: -deprecated -------------------------------------------------------------------------------- -This project will be removed in the near future in favor of dojox.encoding. If -you are using this code, please follow the upgrade path: - -Digests (MD5): dojox.encoding.digests.MD5 -Crypto (Blowfish): dojox.encoding.crypto.Blowfish -------------------------------------------------------------------------------- diff --git a/includes/js/dojox/crypto/_base.js b/includes/js/dojox/crypto/_base.js deleted file mode 100644 index 152dd02..0000000 --- a/includes/js/dojox/crypto/_base.js +++ /dev/null @@ -1,14 +0,0 @@ -if(!dojo._hasResource["dojox.crypto._base"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["dojox.crypto._base"] = true; -dojo.provide("dojox.crypto._base"); - -dojo.require("dojox.encoding.crypto._base"); -dojo.require("dojox.encoding.digests._base"); - -dojo.deprecated("dojox.crypto._base", "DojoX cryptography has been merged into DojoX Encoding. To use, include dojox.encoding.digests and/or dojox.encoding.crypto.", "1.2"); - -// unfortunately there's no way of pointing at two files with an alias, particularly -// when both have similarly named things; but we'll try anyways. -dojox.crypto._base=dojo.mixin(dojox.encoding.crypto._base, dojox.encoding.digests._base); - -} -- cgit v1.2.3-54-g00ecf