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/charting/axis2d/common.js | 75 ----------------------------- 1 file changed, 75 deletions(-) delete mode 100644 includes/js/dojox/charting/axis2d/common.js (limited to 'includes/js/dojox/charting/axis2d/common.js') diff --git a/includes/js/dojox/charting/axis2d/common.js b/includes/js/dojox/charting/axis2d/common.js deleted file mode 100644 index dd8ceb3..0000000 --- a/includes/js/dojox/charting/axis2d/common.js +++ /dev/null @@ -1,75 +0,0 @@ -if(!dojo._hasResource["dojox.charting.axis2d.common"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["dojox.charting.axis2d.common"] = true; -dojo.provide("dojox.charting.axis2d.common"); - -dojo.require("dojox.gfx"); - -(function(){ - var g = dojox.gfx; - - function clearNode(s){ - s.marginLeft = "0px"; - s.marginTop = "0px"; - s.marginRight = "0px"; - s.marginBottom = "0px"; - s.paddingLeft = "0px"; - s.paddingTop = "0px"; - s.paddingRight = "0px"; - s.paddingBottom = "0px"; - s.borderLeftWidth = "0px"; - s.borderTopWidth = "0px"; - s.borderRightWidth = "0px"; - s.borderBottomWidth = "0px"; - } - - dojo.mixin(dojox.charting.axis2d.common, { - createText: { - gfx: function(chart, creator, x, y, align, text, font, fontColor){ - return creator.createText({ - x: x, y: y, text: text, align: align - }).setFont(font).setFill(fontColor); - }, - html: function(chart, creator, x, y, align, text, font, fontColor){ - // setup the text node - var p = dojo.doc.createElement("div"), s = p.style; - clearNode(s); - s.font = font; - p.innerHTML = text; - s.color = fontColor; - // measure the size - s.position = "absolute"; - s.left = "-10000px"; - dojo.body().appendChild(p); - var size = g.normalizedLength(g.splitFontString(font).size), - box = dojo.marginBox(p); - // new settings for the text node - dojo.body().removeChild(p); - s.position = "relative"; - switch(align){ - case "middle": - s.left = Math.floor(x - box.w / 2) + "px"; - break; - case "end": - s.left = Math.floor(x - box.w) + "px"; - break; - //case "start": - default: - s.left = Math.floor(x) + "px"; - break; - } - s.top = Math.floor(y - size) + "px"; - // setup the wrapper node - var wrap = dojo.doc.createElement("div"), w = wrap.style; - clearNode(w); - w.width = "0px"; - w.height = "0px"; - // insert nodes - wrap.appendChild(p) - chart.node.insertBefore(wrap, chart.node.firstChild); - return p; - } - } - }); -})(); - -} -- cgit v1.2.3