mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
New build scripts
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5282 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
15
source/web/scripts/ajax/dojo/src/graphics/Colorspace.js
Normal file
15
source/web/scripts/ajax/dojo/src/graphics/Colorspace.js
Normal file
@@ -0,0 +1,15 @@
|
||||
/*
|
||||
Copyright (c) 2004-2006, The Dojo Foundation
|
||||
All Rights Reserved.
|
||||
|
||||
Licensed under the Academic Free License version 2.1 or above OR the
|
||||
modified BSD license. For more information on Dojo licensing, see:
|
||||
|
||||
http://dojotoolkit.org/community/licensing.shtml
|
||||
*/
|
||||
|
||||
dojo.provide("dojo.graphics.Colorspace");
|
||||
dojo.require("dojo.gfx.Colorspace");
|
||||
|
||||
dojo.deprecated("dojo.graphics.Colorspace: use dojo.gfx.Colorspace instead.", "0.5");
|
||||
dojo.graphics.Colorspace = dojo.gfx.Colorspace;
|
12
source/web/scripts/ajax/dojo/src/graphics/__package__.js
Normal file
12
source/web/scripts/ajax/dojo/src/graphics/__package__.js
Normal file
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
Copyright (c) 2004-2006, The Dojo Foundation
|
||||
All Rights Reserved.
|
||||
|
||||
Licensed under the Academic Free License version 2.1 or above OR the
|
||||
modified BSD license. For more information on Dojo licensing, see:
|
||||
|
||||
http://dojotoolkit.org/community/licensing.shtml
|
||||
*/
|
||||
|
||||
// By default... don't pull in anything? (todo: figure out what should be in list)
|
||||
dojo.provide("dojo.graphics.*");
|
37
source/web/scripts/ajax/dojo/src/graphics/color.js
Normal file
37
source/web/scripts/ajax/dojo/src/graphics/color.js
Normal file
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
Copyright (c) 2004-2006, The Dojo Foundation
|
||||
All Rights Reserved.
|
||||
|
||||
Licensed under the Academic Free License version 2.1 or above OR the
|
||||
modified BSD license. For more information on Dojo licensing, see:
|
||||
|
||||
http://dojotoolkit.org/community/licensing.shtml
|
||||
*/
|
||||
|
||||
dojo.provide("dojo.graphics.color");
|
||||
dojo.require("dojo.gfx.color");
|
||||
|
||||
dojo.deprecated("dojo.graphics.color.Color is now dojo.gfx.color.Color.", "0.5");
|
||||
dojo.graphics.color.Color = dojo.gfx.color.Color;
|
||||
|
||||
dojo.graphics.color.named = dojo.gfx.color.named;
|
||||
dojo.graphics.color.blend = function(a, b, weight) {
|
||||
dojo.deprecated("dojo.graphics.color.blend is now dojo.gfx.color.blend", "0.5");
|
||||
return dojo.gfx.color.blend(a, b, weight);
|
||||
}
|
||||
dojo.graphics.color.blendHex = function(a, b, weight) {
|
||||
dojo.deprecated("dojo.graphics.color.blendHex is now dojo.gfx.color.blendHex", "0.5");
|
||||
return dojo.gfx.color.rgb2hex(dojo.gfx.color.blend(dojo.gfx.color.hex2rgb(a), dojo.gfx.color.hex2rgb(b), weight));
|
||||
}
|
||||
dojo.graphics.color.extractRGB = function(color) {
|
||||
dojo.deprecated("dojo.graphics.color.extractRGB is now dojo.gfx.color.extractRGB", "0.5");
|
||||
return dojo.gfx.color.extractRGB(color);
|
||||
}
|
||||
dojo.graphics.color.hex2rgb = function(hex) {
|
||||
dojo.deprecated("dojo.graphics.color.hex2rgb is now dojo.gfx.color.hex2rgb", "0.5");
|
||||
return dojo.gfx.color.hex2rgb(hex);
|
||||
}
|
||||
dojo.graphics.color.rgb2hex = function(r, g, b) {
|
||||
dojo.deprecated("dojo.graphics.color.rgb2hex is now dojo.gfx.color.rgb2hex", "0.5");
|
||||
return dojo.gfx.color.rgb2hex;
|
||||
}
|
33
source/web/scripts/ajax/dojo/src/graphics/color/hsl.js
Normal file
33
source/web/scripts/ajax/dojo/src/graphics/color/hsl.js
Normal file
@@ -0,0 +1,33 @@
|
||||
/*
|
||||
Copyright (c) 2004-2006, The Dojo Foundation
|
||||
All Rights Reserved.
|
||||
|
||||
Licensed under the Academic Free License version 2.1 or above OR the
|
||||
modified BSD license. For more information on Dojo licensing, see:
|
||||
|
||||
http://dojotoolkit.org/community/licensing.shtml
|
||||
*/
|
||||
|
||||
dojo.provide("dojo.graphics.color.hsl");
|
||||
dojo.require("dojo.gfx.color.hsl");
|
||||
|
||||
dojo.deprecated("dojo.graphics.color.hsl has been replaced with dojo.gfx.color.hsl", "0.5");
|
||||
|
||||
dojo.graphics.color.rgb2hsl = function(r, g, b){
|
||||
dojo.deprecated("dojo.graphics.color.rgb2hsl has been replaced with dojo.gfx.color.rgb2hsl", "0.5");
|
||||
return dojo.gfx.color.rgb2hsl(r, g, b);
|
||||
}
|
||||
dojo.graphics.color.hsl2rgb = function(h, s, l){
|
||||
dojo.deprecated("dojo.graphics.color.hsl2rgb has been replaced with dojo.gfx.color.hsl2rgb", "0.5");
|
||||
return dojo.gfx.color.hsl2rgb(h, s, l);
|
||||
}
|
||||
|
||||
dojo.graphics.color.hsl2hex = function(h, s, l){
|
||||
dojo.deprecated("dojo.graphics.color.hsl2hex has been replaced with dojo.gfx.color.hsl2hex", "0.5");
|
||||
return dojo.gfx.color.hsl2hex(h, s, l);
|
||||
}
|
||||
|
||||
dojo.graphics.color.hex2hsl = function(hex){
|
||||
dojo.deprecated("dojo.graphics.color.hex2hsl has been replaced with dojo.gfx.color.hex2hsl", "0.5");
|
||||
return dojo.gfx.color.hex2hsl(hex);
|
||||
}
|
23
source/web/scripts/ajax/dojo/src/graphics/color/hsv.js
Normal file
23
source/web/scripts/ajax/dojo/src/graphics/color/hsv.js
Normal file
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
Copyright (c) 2004-2006, The Dojo Foundation
|
||||
All Rights Reserved.
|
||||
|
||||
Licensed under the Academic Free License version 2.1 or above OR the
|
||||
modified BSD license. For more information on Dojo licensing, see:
|
||||
|
||||
http://dojotoolkit.org/community/licensing.shtml
|
||||
*/
|
||||
|
||||
dojo.provide("dojo.graphics.color.hsv");
|
||||
dojo.require("dojo.gfx.color.hsv");
|
||||
|
||||
dojo.deprecated("dojo.graphics.color.hsv has been replaced by dojo.gfx.color.hsv", "0.5");
|
||||
|
||||
dojo.graphics.color.rgb2hsv = function(r, g, b){
|
||||
dojo.deprecated("dojo.graphics.color.rgb2hsv has been replaced by dojo.gfx.color.rgb2hsv", "0.5");
|
||||
return dojo.gfx.color.rgb2hsv(r, g, b);
|
||||
}
|
||||
dojo.graphics.color.hsv2rgb = function(h, s, v){
|
||||
dojo.deprecated("dojo.graphics.color.hsv2rgb has been replaced by dojo.gfx.color.hsv2rgb", "0.5");
|
||||
return dojo.gfx.color.hsv2rgb(h, s, v);
|
||||
}
|
Reference in New Issue
Block a user