Repository: incubator-airflow Updated Branches: refs/heads/v1-8-test b38df6b8c -> 8ad9ab673
[AIRFLOW-895] Address Apache release incompliancies * Fixes missing licenses in NOTICE * Corrects license header * Removes HighCharts left overs. Closes #2098 from bolkedebruin/AIRFLOW-895 (cherry picked from commit 784b3638c5633a9a94e020c47a3b95b942e6fb87) Signed-off-by: Bolke de Bruin <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/8ad9ab67 Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/8ad9ab67 Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/8ad9ab67 Branch: refs/heads/v1-8-test Commit: 8ad9ab673350207479e9597a36aadb1ec9987640 Parents: b38df6b Author: Bolke de Bruin <[email protected]> Authored: Thu Feb 23 23:48:03 2017 +0100 Committer: Bolke de Bruin <[email protected]> Committed: Thu Feb 23 23:48:19 2017 +0100 ---------------------------------------------------------------------- MANIFEST.in | 9 +- NOTICE | 6 +- airflow/www/static/d3.tip.v0.6.3.js | 35 +++--- airflow/www/static/dagre-d3.js | 3 +- airflow/www/static/heatmap-canvas.js | 194 ------------------------------ airflow/www/static/heatmap.js | 23 ---- airflow/www/static/nvd3.tar.gz | Bin 328377 -> 0 bytes setup.py | 8 +- 8 files changed, 37 insertions(+), 241 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/8ad9ab67/MANIFEST.in ---------------------------------------------------------------------- diff --git a/MANIFEST.in b/MANIFEST.in index 0aea6b5..717b077 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -11,7 +11,14 @@ # See the License for the specific language governing permissions and # limitations under the License. +include NOTICE +include LICENSE +include DISCLAIMER +include CHANGELOG.txt +include README.md graft airflow/www/templates graft airflow/www/static include airflow/alembic.ini -include requirements.txt +graft scripts/systemd +graft scripts/upstart + http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/8ad9ab67/NOTICE ---------------------------------------------------------------------- diff --git a/NOTICE b/NOTICE index 79f43d9..3bda66e 100644 --- a/NOTICE +++ b/NOTICE @@ -10,9 +10,11 @@ This product includes WebGL-2D.js (https://github.com/gameclosure/webgl-2d), Cop This product includes Bootstrap (http://getbootstrap.com - MIT license), Copyright (c) 2011-2016 Twitter, Inc. This product includes Bootstrap Toggle (http://www.bootstraptoggle.com - MIT license), Copyright 2014 Min Hur, The New York Times Company. This product includes Clock plugin (https://github.com/Lwangaman/jQuery-Clock-Plugin - Dual licensed under the MIT and GPL licenses), Copyright (c) 2010 John R D'Orazio ([email protected]) -This product includes DataTables (datatables.net - datatables.net/license), Copyright © 2008-2015 SpryMedia Ltd. +This product includes DataTables (datatables.net - MIT License), Copyright © 2008-2015 SpryMedia Ltd. This product includes Underscore.js (http://underscorejs.org - MIT license), Copyright (c) 2011-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors. This product includes FooTable (http://fooplugins.com/plugins/footable-jquery/ - MIT license), Copyright 2013 Steven Usher & Brad Vincent. This product includes dagre (https://github.com/cpettitt/dagre - MIT license), Copyright (c) 2012-2014 Chris Pettitt. -This product includes d3js (https://d3js.org/ - https://github.com/mbostock/d3/blob/master/LICENSE), Copyright (c) 2010-2016, Michael Bostock. +This product includes d3js (https://d3js.org/ - BSD License), Copyright (c) 2010-2016, Michael Bostock. This product includes flask-kerberos (https://github.com/mkomitee/flask-kerberos - BSD License), Copyright (c) 2013, Michael Komitee +This product includes ace (https://github.com/ajaxorg/ace - BSD License), Copyright (c) 2010, Ajax.org B.V. +This product includes d3 tip (https://github.com/Caged/d3-tip - MIT License), Copyright (c) 2013-2017 Justin Palmer http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/8ad9ab67/airflow/www/static/d3.tip.v0.6.3.js ---------------------------------------------------------------------- diff --git a/airflow/www/static/d3.tip.v0.6.3.js b/airflow/www/static/d3.tip.v0.6.3.js index 9413a78..b2b48fb 100644 --- a/airflow/www/static/d3.tip.v0.6.3.js +++ b/airflow/www/static/d3.tip.v0.6.3.js @@ -1,20 +1,23 @@ /** -* Licensed to the Apache Software Foundation (ASF) under one -* or more contributor license agreements. See the NOTICE file -* distributed with this work for additional information -* regarding copyright ownership. The ASF licenses this file -* to you under the Apache License, Version 2.0 (the -* "License"); you may not use this file except in compliance -* with the License. You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, -* software distributed under the License is distributed on an -* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -* KIND, either express or implied. See the License for the -* specific language governing permissions and limitations -* under the License. + * The MIT License (MIT) + * Copyright (c) 2013 Justin Palmer + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies + * of the Software, and to permit persons to whom the Software is furnished to do + * so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, + * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ // d3.tip http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/8ad9ab67/airflow/www/static/dagre-d3.js ---------------------------------------------------------------------- diff --git a/airflow/www/static/dagre-d3.js b/airflow/www/static/dagre-d3.js index ec26bfe..2da7cdd 100644 --- a/airflow/www/static/dagre-d3.js +++ b/airflow/www/static/dagre-d3.js @@ -1,5 +1,6 @@ ;(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ -var global=self;/** +var global=self; +/** * @license * Copyright (c) 2012-2013 Chris Pettitt * http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/8ad9ab67/airflow/www/static/heatmap-canvas.js ---------------------------------------------------------------------- diff --git a/airflow/www/static/heatmap-canvas.js b/airflow/www/static/heatmap-canvas.js deleted file mode 100644 index 01ee471..0000000 --- a/airflow/www/static/heatmap-canvas.js +++ /dev/null @@ -1,194 +0,0 @@ -/** -* Licensed to the Apache Software Foundation (ASF) under one -* or more contributor license agreements. See the NOTICE file -* distributed with this work for additional information -* regarding copyright ownership. The ASF licenses this file -* to you under the Apache License, Version 2.0 (the -* "License"); you may not use this file except in compliance -* with the License. You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, -* software distributed under the License is distributed on an -* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -* KIND, either express or implied. See the License for the -* specific language governing permissions and limitations -* under the License. -*/ - - - /** - * This plugin extends Highcharts in two ways: - * - Use HTML5 canvas instead of SVG for rendering of the heatmap squares. Canvas - * outperforms SVG when it comes to thousands of single shapes. - * - Add a K-D-tree to find the nearest point on mouse move. Since we no longer have SVG shapes - * to capture mouseovers, we need another way of detecting hover points for the tooltip. - */ - (function (H) { - var wrap = H.wrap, - seriesTypes = H.seriesTypes; - - /** - * Recursively builds a K-D-tree - */ - function KDTree(points, depth) { - var axis, median, length = points && points.length; - - if (length) { - - // alternate between the axis - axis = ['plotX', 'plotY'][depth % 2]; - - // sort point array - points.sort(function (a, b) { - return a[axis] - b[axis]; - }); - - median = Math.floor(length / 2); - - // build and return node - return { - point: points[median], - left: KDTree(points.slice(0, median), depth + 1), - right: KDTree(points.slice(median + 1), depth + 1) - }; - - } - } - - /** - * Recursively searches for the nearest neighbour using the given K-D-tree - */ - function nearest(search, tree, depth) { - var point = tree.point, - axis = ['plotX', 'plotY'][depth % 2], - tdist, - sideA, - sideB, - ret = point, - nPoint1, - nPoint2; - - // Get distance - point.dist = Math.pow(search.plotX - point.plotX, 2) + - Math.pow(search.plotY - point.plotY, 2); - - // Pick side based on distance to splitting point - tdist = search[axis] - point[axis]; - sideA = tdist < 0 ? 'left' : 'right'; - - // End of tree - if (tree[sideA]) { - nPoint1 = nearest(search, tree[sideA], depth + 1); - - ret = (nPoint1.dist < ret.dist ? nPoint1 : point); - - sideB = tdist < 0 ? 'right' : 'left'; - if (tree[sideB]) { - // compare distance to current best to splitting point to decide wether to check side B or not - if (Math.abs(tdist) < ret.dist) { - nPoint2 = nearest(search, tree[sideB], depth + 1); - ret = (nPoint2.dist < ret.dist ? nPoint2 : ret); - } - } - } - return ret; - } - - // Extend the heatmap to use the K-D-tree to search for nearest points - H.seriesTypes.heatmap.prototype.setTooltipPoints = function () { - var series = this; - - this.tree = null; - setTimeout(function () { - series.tree = KDTree(series.points, 0); - }); - }; - H.seriesTypes.heatmap.prototype.getNearest = function (search) { - if (this.tree) { - return nearest(search, this.tree, 0); - } - }; - - H.wrap(H.Pointer.prototype, 'runPointActions', function (proceed, e) { - var chart = this.chart; - proceed.call(this, e); - - // Draw independent tooltips - H.each(chart.series, function (series) { - var point; - if (series.getNearest) { - point = series.getNearest({ - plotX: e.chartX - chart.plotLeft, - plotY: e.chartY - chart.plotTop - }); - if (point) { - point.onMouseOver(e); - } - } - }) - }); - - /** - * Get the canvas context for a series - */ - H.Series.prototype.getContext = function () { - var canvas; - if (!this.ctx) { - canvas = document.createElement('canvas'); - canvas.setAttribute('width', this.chart.plotWidth); - canvas.setAttribute('height', this.chart.plotHeight); - canvas.style.position = 'absolute'; - canvas.style.left = this.group.translateX + 'px'; - canvas.style.top = this.group.translateY + 'px'; - canvas.style.zIndex = 0; - canvas.style.cursor = 'crosshair'; - this.chart.container.appendChild(canvas); - if (canvas.getContext) { - this.ctx = canvas.getContext('2d'); - } - } - return this.ctx; - } - - /** - * Wrap the drawPoints method to draw the points in canvas instead of the slower SVG, - * that requires one shape each point. - */ - H.wrap(H.seriesTypes.heatmap.prototype, 'drawPoints', function (proceed) { - - var ctx; - if (this.chart.renderer.forExport) { - // Run SVG shapes - proceed.call(this); - - } else { - - if (ctx = this.getContext()) { - - // draw the columns - H.each(this.points, function (point) { - var plotY = point.plotY, - shapeArgs; - - if (plotY !== undefined && !isNaN(plotY) && point.y !== null) { - shapeArgs = point.shapeArgs; - - ctx.fillStyle = point.pointAttr[''].fill; - ctx.fillRect(shapeArgs.x, shapeArgs.y, shapeArgs.width, shapeArgs.height); - } - }); - - } else { - this.chart.showLoading("Your browser doesn't support HTML5 canvas, <br>please use a modern browser"); - - // Uncomment this to provide low-level (slow) support in oldIE. It will cause script errors on - // charts with more than a few thousand points. - //proceed.call(this); - } - } - }); - }(Highcharts)); - - http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/8ad9ab67/airflow/www/static/heatmap.js ---------------------------------------------------------------------- diff --git a/airflow/www/static/heatmap.js b/airflow/www/static/heatmap.js deleted file mode 100644 index fc9b856..0000000 --- a/airflow/www/static/heatmap.js +++ /dev/null @@ -1,23 +0,0 @@ -/* - Highcharts JS v4.0.4 (2014-09-02) - - (c) 2011-2014 Torstein Honsi - - License: www.highcharts.com/license -*/ -(function(h){var k=h.Axis,y=h.Chart,l=h.Color,z=h.Legend,t=h.LegendSymbolMixin,u=h.Series,v=h.SVGRenderer,w=h.getOptions(),i=h.each,r=h.extend,A=h.extendClass,m=h.merge,o=h.pick,x=h.numberFormat,p=h.seriesTypes,s=h.wrap,n=function(){},q=h.ColorAxis=function(){this.isColorAxis=!0;this.init.apply(this,arguments)};r(q.prototype,k.prototype);r(q.prototype,{defaultColorAxisOptions:{lineWidth:0,gridLineWidth:1,tickPixelInterval:72,startOnTick:!0,endOnTick:!0,offset:0,marker:{animation:{duration:50},color:"gray", -width:0.01},labels:{overflow:"justify"},minColor:"#EFEFFF",maxColor:"#003875",tickLength:5},init:function(b,a){var c=b.options.legend.layout!=="vertical",d;d=m(this.defaultColorAxisOptions,{side:c?2:1,reversed:!c},a,{isX:c,opposite:!c,showEmpty:!1,title:null,isColor:!0});k.prototype.init.call(this,b,d);a.dataClasses&&this.initDataClasses(a);this.initStops(a);this.isXAxis=!0;this.horiz=c;this.zoomEnabled=!1},tweenColors:function(b,a,c){var d=a.rgba[3]!==1||b.rgba[3]!==1;return(d?"rgba(":"rgb(")+Math.round(a.rgba[0]+ -(b.rgba[0]-a.rgba[0])*(1-c))+","+Math.round(a.rgba[1]+(b.rgba[1]-a.rgba[1])*(1-c))+","+Math.round(a.rgba[2]+(b.rgba[2]-a.rgba[2])*(1-c))+(d?","+(a.rgba[3]+(b.rgba[3]-a.rgba[3])*(1-c)):"")+")"},initDataClasses:function(b){var a=this,c=this.chart,d,e=0,f=this.options,g=b.dataClasses.length;this.dataClasses=d=[];this.legendItems=[];i(b.dataClasses,function(b,h){var i,b=m(b);d.push(b);if(!b.color)f.dataClassColor==="category"?(i=c.options.colors,b.color=i[e++],e===i.length&&(e=0)):b.color=a.tweenColors(l(f.minColor), -l(f.maxColor),g<2?0.5:h/(g-1))})},initStops:function(b){this.stops=b.stops||[[0,this.options.minColor],[1,this.options.maxColor]];i(this.stops,function(a){a.color=l(a[1])})},setOptions:function(b){k.prototype.setOptions.call(this,b);this.options.crosshair=this.options.marker;this.coll="colorAxis"},setAxisSize:function(){var b=this.legendSymbol,a=this.chart,c,d,e;if(b)this.left=c=b.attr("x"),this.top=d=b.attr("y"),this.width=e=b.attr("width"),this.height=b=b.attr("height"),this.right=a.chartWidth- -c-e,this.bottom=a.chartHeight-d-b,this.len=this.horiz?e:b,this.pos=this.horiz?c:d},toColor:function(b,a){var c,d=this.stops,e,f=this.dataClasses,g,j;if(f)for(j=f.length;j--;){if(g=f[j],e=g.from,d=g.to,(e===void 0||b>=e)&&(d===void 0||b<=d)){c=g.color;if(a)a.dataClass=j;break}}else{this.isLog&&(b=this.val2lin(b));c=1-(this.max-b)/(this.max-this.min||1);for(j=d.length;j--;)if(c>d[j][0])break;e=d[j]||d[j+1];d=d[j+1]||e;c=1-(d[0]-c)/(d[0]-e[0]||1);c=this.tweenColors(e.color,d.color,c)}return c},getOffset:function(){var b= -this.legendGroup,a=this.chart.axisOffset[this.side];if(b){k.prototype.getOffset.call(this);if(!this.axisGroup.parentGroup)this.axisGroup.add(b),this.gridGroup.add(b),this.labelGroup.add(b),this.added=!0;this.chart.axisOffset[this.side]=a}},setLegendColor:function(){var b,a=this.options;b=this.horiz?[0,0,1,0]:[0,0,0,1];this.legendColor={linearGradient:{x1:b[0],y1:b[1],x2:b[2],y2:b[3]},stops:a.stops||[[0,a.minColor],[1,a.maxColor]]}},drawLegendSymbol:function(b,a){var c=b.padding,d=b.options,e=this.horiz, -f=o(d.symbolWidth,e?200:12),g=o(d.symbolHeight,e?12:200),j=o(d.labelPadding,e?16:30),d=o(d.itemDistance,10);this.setLegendColor();a.legendSymbol=this.chart.renderer.rect(0,b.baseline-11,f,g).attr({zIndex:1}).add(a.legendGroup);a.legendSymbol.getBBox();this.legendItemWidth=f+c+(e?d:j);this.legendItemHeight=g+c+(e?j:0)},setState:n,visible:!0,setVisible:n,getSeriesExtremes:function(){var b;if(this.series.length)b=this.series[0],this.dataMin=b.valueMin,this.dataMax=b.valueMax},drawCrosshair:function(b, -a){var c=!this.cross,d=a&&a.plotX,e=a&&a.plotY,f,g=this.pos,j=this.len;if(a)f=this.toPixels(a.value),f<g?f=g-2:f>g+j&&(f=g+j+2),a.plotX=f,a.plotY=this.len-f,k.prototype.drawCrosshair.call(this,b,a),a.plotX=d,a.plotY=e,!c&&this.cross&&this.cross.attr({fill:this.crosshair.color}).add(this.labelGroup)},getPlotLinePath:function(b,a,c,d,e){return e?this.horiz?["M",e-4,this.top-6,"L",e+4,this.top-6,e,this.top,"Z"]:["M",this.left,e,"L",this.left-6,e+6,this.left-6,e-6,"Z"]:k.prototype.getPlotLinePath.call(this, -b,a,c,d)},update:function(b,a){i(this.series,function(a){a.isDirtyData=!0});k.prototype.update.call(this,b,a);this.legendItem&&(this.setLegendColor(),this.chart.legend.colorizeItem(this,!0))},getDataClassLegendSymbols:function(){var b=this,a=this.chart,c=this.legendItems,d=a.options.legend,e=d.valueDecimals,f=d.valueSuffix||"",g;c.length||i(this.dataClasses,function(d,h){var k=!0,l=d.from,m=d.to;g="";l===void 0?g="< ":m===void 0&&(g="> ");l!==void 0&&(g+=x(l,e)+f);l!==void 0&&m!==void 0&&(g+=" - "); -m!==void 0&&(g+=x(m,e)+f);c.push(r({chart:a,name:g,options:{},drawLegendSymbol:t.drawRectangle,visible:!0,setState:n,setVisible:function(){k=this.visible=!k;i(b.series,function(a){i(a.points,function(a){a.dataClass===h&&a.setVisible(k)})});a.legend.colorizeItem(this,k)}},d))});return c},name:""});i(["fill","stroke"],function(b){HighchartsAdapter.addAnimSetter(b,function(a){a.elem.attr(b,q.prototype.tweenColors(l(a.start),l(a.end),a.pos))})});s(y.prototype,"getAxes",function(b){var a=this.options.colorAxis; -b.call(this);this.colorAxis=[];a&&new q(this,a)});s(z.prototype,"getAllItems",function(b){var a=[],c=this.chart.colorAxis[0];c&&(c.options.dataClasses?a=a.concat(c.getDataClassLegendSymbols()):a.push(c),i(c.series,function(a){a.options.showInLegend=!1}));return a.concat(b.call(this))});h={pointAttrToOptions:{stroke:"borderColor","stroke-width":"borderWidth",fill:"color",dashstyle:"dashStyle"},pointArrayMap:["value"],axisTypes:["xAxis","yAxis","colorAxis"],optionalAxis:"colorAxis",trackerGroups:["group", -"markerGroup","dataLabelsGroup"],getSymbol:n,parallelArrays:["x","y","value"],colorKey:"value",translateColors:function(){var b=this,a=this.options.nullColor,c=this.colorAxis,d=this.colorKey;i(this.data,function(e){var f=e[d];if(f=f===null?a:c&&f!==void 0?c.toColor(f,e):e.color||b.color)e.color=f})}};s(v.prototype,"buildText",function(b,a){var c=a.styles&&a.styles.HcTextStroke;b.call(this,a);c&&a.applyTextStroke&&a.applyTextStroke(c)});v.prototype.Element.prototype.applyTextStroke=function(b){var a= -this.element,c,d,b=b.split(" ");c=a.getElementsByTagName("tspan");d=a.firstChild;this.ySetter=this.xSetter;i([].slice.call(c),function(c,f){var g;f===0&&(c.setAttribute("x",a.getAttribute("x")),(f=a.getAttribute("y"))!==null&&c.setAttribute("y",f));g=c.cloneNode(1);g.setAttribute("stroke",b[1]);g.setAttribute("stroke-width",b[0]);g.setAttribute("stroke-linejoin","round");a.insertBefore(g,d)})};w.plotOptions.heatmap=m(w.plotOptions.scatter,{animation:!1,borderWidth:0,nullColor:"#F8F8F8",dataLabels:{formatter:function(){return this.point.value}, -verticalAlign:"middle",crop:!1,overflow:!1,style:{color:"white",fontWeight:"bold",HcTextStroke:"1px rgba(0,0,0,0.5)"}},marker:null,tooltip:{pointFormat:"{point.x}, {point.y}: {point.value}<br/>"},states:{normal:{animation:!0},hover:{brightness:0.2}}});p.heatmap=A(p.scatter,m(h,{type:"heatmap",pointArrayMap:["y","value"],hasPointSpecificOptions:!0,supportsDrilldown:!0,getExtremesFromAll:!0,init:function(){p.scatter.prototype.init.apply(this,arguments);this.pointRange=this.options.colsize||1;this.yAxis.axisPointRange= -this.options.rowsize||1},translate:function(){var b=this.options,a=this.xAxis,c=this.yAxis;this.generatePoints();i(this.points,function(d){var e=(b.colsize||1)/2,f=(b.rowsize||1)/2,g=Math.round(a.len-a.translate(d.x-e,0,1,0,1)),e=Math.round(a.len-a.translate(d.x+e,0,1,0,1)),h=Math.round(c.translate(d.y-f,0,1,0,1)),f=Math.round(c.translate(d.y+f,0,1,0,1));d.plotX=(g+e)/2;d.plotY=(h+f)/2;d.shapeType="rect";d.shapeArgs={x:Math.min(g,e),y:Math.min(h,f),width:Math.abs(e-g),height:Math.abs(f-h)}});this.translateColors(); -this.chart.hasRendered&&i(this.points,function(a){a.shapeArgs.fill=a.options.color||a.color})},drawPoints:p.column.prototype.drawPoints,animate:n,getBox:n,drawLegendSymbol:t.drawRectangle,getExtremes:function(){u.prototype.getExtremes.call(this,this.valueData);this.valueMin=this.dataMin;this.valueMax=this.dataMax;u.prototype.getExtremes.call(this)}}))})(Highcharts); http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/8ad9ab67/airflow/www/static/nvd3.tar.gz ---------------------------------------------------------------------- diff --git a/airflow/www/static/nvd3.tar.gz b/airflow/www/static/nvd3.tar.gz deleted file mode 100644 index fd9504d..0000000 Binary files a/airflow/www/static/nvd3.tar.gz and /dev/null differ http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/8ad9ab67/setup.py ---------------------------------------------------------------------- diff --git a/setup.py b/setup.py index c644eed..43b97d3 100644 --- a/setup.py +++ b/setup.py @@ -274,11 +274,11 @@ def do_setup(): 'Programming Language :: Python :: 3.4', 'Topic :: System :: Monitoring', ], - author='Maxime Beauchemin', - author_email='[email protected]', - url='https://github.com/apache/incubator-airflow', + author='Apache Software Foundation', + author_email='[email protected]', + url='http://airflow.incubator.apache.org/', download_url=( - 'https://github.com/apache/incubator-airflow/tarball/' + version), + 'https://dist.apache.org/repos/dist/release/incubator/airflow/' + version), cmdclass={ 'test': Tox, 'extra_clean': CleanCommand,
