http://git-wip-us.apache.org/repos/asf/incubator-superset-site/blob/886f04b0/_static/underscore.js
----------------------------------------------------------------------
diff --git a/_static/underscore.js b/_static/underscore.js
new file mode 100644
index 0000000..5b55f32
--- /dev/null
+++ b/_static/underscore.js
@@ -0,0 +1,31 @@
+// Underscore.js 1.3.1
+// (c) 2009-2012 Jeremy Ashkenas, DocumentCloud Inc.
+// Underscore is freely distributable under the MIT license.
+// Portions of Underscore are inspired or borrowed from Prototype,
+// Oliver Steele's Functional, and John Resig's Micro-Templating.
+// For all details and documentation:
+// http://documentcloud.github.com/underscore
+(function(){function q(a,c,d){if(a===c)return 
a!==0||1/a==1/c;if(a==null||c==null)return 
a===c;if(a._chain)a=a._wrapped;if(c._chain)c=c._wrapped;if(a.isEqual&&b.isFunction(a.isEqual))return
 a.isEqual(c);if(c.isEqual&&b.isFunction(c.isEqual))return c.isEqual(a);var 
e=l.call(a);if(e!=l.call(c))return false;switch(e){case "[object 
String]":return a==String(c);case "[object Number]":return 
a!=+a?c!=+c:a==0?1/a==1/c:a==+c;case "[object Date]":case "[object 
Boolean]":return+a==+c;case "[object RegExp]":return a.source==
+c.source&&a.global==c.global&&a.multiline==c.multiline&&a.ignoreCase==c.ignoreCase}if(typeof
 a!="object"||typeof c!="object")return false;for(var 
f=d.length;f--;)if(d[f]==a)return true;d.push(a);var f=0,g=true;if(e=="[object 
Array]"){if(f=a.length,g=f==c.length)for(;f--;)if(!(g=f in a==f in 
c&&q(a[f],c[f],d)))break}else{if("constructor"in a!="constructor"in 
c||a.constructor!=c.constructor)return false;for(var h in 
a)if(b.has(a,h)&&(f++,!(g=b.has(c,h)&&q(a[h],c[h],d))))break;if(g){for(h in 
c)if(b.has(c,
+h)&&!f--)break;g=!f}}d.pop();return g}var 
r=this,G=r._,n={},k=Array.prototype,o=Object.prototype,i=k.slice,H=k.unshift,l=o.toString,I=o.hasOwnProperty,w=k.forEach,x=k.map,y=k.reduce,z=k.reduceRight,A=k.filter,B=k.every,C=k.some,p=k.indexOf,D=k.lastIndexOf,o=Array.isArray,J=Object.keys,s=Function.prototype.bind,b=function(a){return
 new m(a)};if(typeof exports!=="undefined"){if(typeof 
module!=="undefined"&&module.exports)exports=module.exports=b;exports._=b}else 
r._=b;b.VERSION="1.3.1";var j=b.each=
+b.forEach=function(a,c,d){if(a!=null)if(w&&a.forEach===w)a.forEach(c,d);else 
if(a.length===+a.length)for(var e=0,f=a.length;e<f;e++){if(e in 
a&&c.call(d,a[e],e,a)===n)break}else for(e in 
a)if(b.has(a,e)&&c.call(d,a[e],e,a)===n)break};b.map=b.collect=function(a,c,b){var
 e=[];if(a==null)return e;if(x&&a.map===x)return 
a.map(c,b);j(a,function(a,g,h){e[e.length]=c.call(b,a,g,h)});if(a.length===+a.length)e.length=a.length;return
 e};b.reduce=b.foldl=b.inject=function(a,c,d,e){var f=arguments.length>2;a==
+null&&(a=[]);if(y&&a.reduce===y)return 
e&&(c=b.bind(c,e)),f?a.reduce(c,d):a.reduce(c);j(a,function(a,b,i){f?d=c.call(e,d,a,b,i):(d=a,f=true)});if(!f)throw
 new TypeError("Reduce of empty array with no initial value");return 
d};b.reduceRight=b.foldr=function(a,c,d,e){var 
f=arguments.length>2;a==null&&(a=[]);if(z&&a.reduceRight===z)return 
e&&(c=b.bind(c,e)),f?a.reduceRight(c,d):a.reduceRight(c);var 
g=b.toArray(a).reverse();e&&!f&&(c=b.bind(c,e));return 
f?b.reduce(g,c,d,e):b.reduce(g,c)};b.find=b.detect=
+function(a,c,b){var e;E(a,function(a,g,h){if(c.call(b,a,g,h))return 
e=a,true});return e};b.filter=b.select=function(a,c,b){var 
e=[];if(a==null)return e;if(A&&a.filter===A)return 
a.filter(c,b);j(a,function(a,g,h){c.call(b,a,g,h)&&(e[e.length]=a)});return 
e};b.reject=function(a,c,b){var e=[];if(a==null)return 
e;j(a,function(a,g,h){c.call(b,a,g,h)||(e[e.length]=a)});return 
e};b.every=b.all=function(a,c,b){var e=true;if(a==null)return 
e;if(B&&a.every===B)return a.every(c,b);j(a,function(a,g,h){if(!(e=
+e&&c.call(b,a,g,h)))return n});return e};var 
E=b.some=b.any=function(a,c,d){c||(c=b.identity);var e=false;if(a==null)return 
e;if(C&&a.some===C)return 
a.some(c,d);j(a,function(a,b,h){if(e||(e=c.call(d,a,b,h)))return 
n});return!!e};b.include=b.contains=function(a,c){var b=false;if(a==null)return 
b;return p&&a.indexOf===p?a.indexOf(c)!=-1:b=E(a,function(a){return 
a===c})};b.invoke=function(a,c){var d=i.call(arguments,2);return 
b.map(a,function(a){return(b.isFunction(c)?c||a:a[c]).apply(a,d)})};b.pluck=
+function(a,c){return b.map(a,function(a){return 
a[c]})};b.max=function(a,c,d){if(!c&&b.isArray(a))return 
Math.max.apply(Math,a);if(!c&&b.isEmpty(a))return-Infinity;var 
e={computed:-Infinity};j(a,function(a,b,h){b=c?c.call(d,a,b,h):a;b>=e.computed&&(e={value:a,computed:b})});return
 e.value};b.min=function(a,c,d){if(!c&&b.isArray(a))return 
Math.min.apply(Math,a);if(!c&&b.isEmpty(a))return Infinity;var 
e={computed:Infinity};j(a,function(a,b,h){b=c?c.call(d,a,b,h):a;b<e.computed&&(e={value:a,computed:b})});
+return e.value};b.shuffle=function(a){var 
b=[],d;j(a,function(a,f){f==0?b[0]=a:(d=Math.floor(Math.random()*(f+1)),b[f]=b[d],b[d]=a)});return
 b};b.sortBy=function(a,c,d){return 
b.pluck(b.map(a,function(a,b,g){return{value:a,criteria:c.call(d,a,b,g)}}).sort(function(a,b){var
 c=a.criteria,d=b.criteria;return 
c<d?-1:c>d?1:0}),"value")};b.groupBy=function(a,c){var 
d={},e=b.isFunction(c)?c:function(a){return a[c]};j(a,function(a,b){var 
c=e(a,b);(d[c]||(d[c]=[])).push(a)});return d};b.sortedIndex=function(a,
+c,d){d||(d=b.identity);for(var e=0,f=a.length;e<f;){var 
g=e+f>>1;d(a[g])<d(c)?e=g+1:f=g}return 
e};b.toArray=function(a){return!a?[]:a.toArray?a.toArray():b.isArray(a)?i.call(a):b.isArguments(a)?i.call(a):b.values(a)};b.size=function(a){return
 b.toArray(a).length};b.first=b.head=function(a,b,d){return 
b!=null&&!d?i.call(a,0,b):a[0]};b.initial=function(a,b,d){return 
i.call(a,0,a.length-(b==null||d?1:b))};b.last=function(a,b,d){return 
b!=null&&!d?i.call(a,Math.max(a.length-b,0)):a[a.length-1]};b.rest=
+b.tail=function(a,b,d){return 
i.call(a,b==null||d?1:b)};b.compact=function(a){return 
b.filter(a,function(a){return!!a})};b.flatten=function(a,c){return 
b.reduce(a,function(a,e){if(b.isArray(e))return 
a.concat(c?e:b.flatten(e));a[a.length]=e;return 
a},[])};b.without=function(a){return 
b.difference(a,i.call(arguments,1))};b.uniq=b.unique=function(a,c,d){var 
d=d?b.map(a,d):a,e=[];b.reduce(d,function(d,g,h){if(0==h||(c===true?b.last(d)!=g:!b.include(d,g)))d[d.length]=g,e[e.length]=a[h];return
 d},[]);
+return e};b.union=function(){return 
b.uniq(b.flatten(arguments,true))};b.intersection=b.intersect=function(a){var 
c=i.call(arguments,1);return b.filter(b.uniq(a),function(a){return 
b.every(c,function(c){return 
b.indexOf(c,a)>=0})})};b.difference=function(a){var 
c=b.flatten(i.call(arguments,1));return 
b.filter(a,function(a){return!b.include(c,a)})};b.zip=function(){for(var 
a=i.call(arguments),c=b.max(b.pluck(a,"length")),d=Array(c),e=0;e<c;e++)d[e]=b.pluck(a,""+e);return
 d};b.indexOf=function(a,c,
+d){if(a==null)return-1;var e;if(d)return 
d=b.sortedIndex(a,c),a[d]===c?d:-1;if(p&&a.indexOf===p)return 
a.indexOf(c);for(d=0,e=a.length;d<e;d++)if(d in a&&a[d]===c)return 
d;return-1};b.lastIndexOf=function(a,b){if(a==null)return-1;if(D&&a.lastIndexOf===D)return
 a.lastIndexOf(b);for(var d=a.length;d--;)if(d in a&&a[d]===b)return 
d;return-1};b.range=function(a,b,d){arguments.length<=1&&(b=a||0,a=0);for(var 
d=arguments[2]||1,e=Math.max(Math.ceil((b-a)/d),0),f=0,g=Array(e);f<e;)g[f++]=a,a+=d;return
 g};
+var F=function(){};b.bind=function(a,c){var d,e;if(a.bind===s&&s)return 
s.apply(a,i.call(arguments,1));if(!b.isFunction(a))throw new 
TypeError;e=i.call(arguments,2);return d=function(){if(!(this instanceof 
d))return a.apply(c,e.concat(i.call(arguments)));F.prototype=a.prototype;var 
b=new F,g=a.apply(b,e.concat(i.call(arguments)));return 
Object(g)===g?g:b}};b.bindAll=function(a){var 
c=i.call(arguments,1);c.length==0&&(c=b.functions(a));j(c,function(c){a[c]=b.bind(a[c],a)});return
 a};b.memoize=function(a,
+c){var d={};c||(c=b.identity);return function(){var 
e=c.apply(this,arguments);return 
b.has(d,e)?d[e]:d[e]=a.apply(this,arguments)}};b.delay=function(a,b){var 
d=i.call(arguments,2);return setTimeout(function(){return 
a.apply(a,d)},b)};b.defer=function(a){return 
b.delay.apply(b,[a,1].concat(i.call(arguments,1)))};b.throttle=function(a,c){var
 d,e,f,g,h,i=b.debounce(function(){h=g=false},c);return 
function(){d=this;e=arguments;var 
b;f||(f=setTimeout(function(){f=null;h&&a.apply(d,e);i()},c));g?h=true:
+a.apply(d,e);i();g=true}};b.debounce=function(a,b){var d;return function(){var 
e=this,f=arguments;clearTimeout(d);d=setTimeout(function(){d=null;a.apply(e,f)},b)}};b.once=function(a){var
 b=false,d;return function(){if(b)return d;b=true;return 
d=a.apply(this,arguments)}};b.wrap=function(a,b){return function(){var 
d=[a].concat(i.call(arguments,0));return 
b.apply(this,d)}};b.compose=function(){var a=arguments;return 
function(){for(var 
b=arguments,d=a.length-1;d>=0;d--)b=[a[d].apply(this,b)];return b[0]}};
+b.after=function(a,b){return a<=0?b():function(){if(--a<1)return 
b.apply(this,arguments)}};b.keys=J||function(a){if(a!==Object(a))throw new 
TypeError("Invalid object");var c=[],d;for(d in 
a)b.has(a,d)&&(c[c.length]=d);return c};b.values=function(a){return 
b.map(a,b.identity)};b.functions=b.methods=function(a){var c=[],d;for(d in 
a)b.isFunction(a[d])&&c.push(d);return 
c.sort()};b.extend=function(a){j(i.call(arguments,1),function(b){for(var d in 
b)a[d]=b[d]});return a};b.defaults=function(a){j(i.call(arguments,
+1),function(b){for(var d in b)a[d]==null&&(a[d]=b[d])});return 
a};b.clone=function(a){return!b.isObject(a)?a:b.isArray(a)?a.slice():b.extend({},a)};b.tap=function(a,b){b(a);return
 a};b.isEqual=function(a,b){return 
q(a,b,[])};b.isEmpty=function(a){if(b.isArray(a)||b.isString(a))return 
a.length===0;for(var c in a)if(b.has(a,c))return false;return 
true};b.isElement=function(a){return!!(a&&a.nodeType==1)};b.isArray=o||function(a){return
 l.call(a)=="[object Array]"};b.isObject=function(a){return a===Object(a)};
+b.isArguments=function(a){return l.call(a)=="[object 
Arguments]"};if(!b.isArguments(arguments))b.isArguments=function(a){return!(!a||!b.has(a,"callee"))};b.isFunction=function(a){return
 l.call(a)=="[object Function]"};b.isString=function(a){return 
l.call(a)=="[object String]"};b.isNumber=function(a){return l.call(a)=="[object 
Number]"};b.isNaN=function(a){return a!==a};b.isBoolean=function(a){return 
a===true||a===false||l.call(a)=="[object Boolean]"};b.isDate=function(a){return 
l.call(a)=="[object Date]"};
+b.isRegExp=function(a){return l.call(a)=="[object 
RegExp]"};b.isNull=function(a){return 
a===null};b.isUndefined=function(a){return a===void 
0};b.has=function(a,b){return I.call(a,b)};b.noConflict=function(){r._=G;return 
this};b.identity=function(a){return a};b.times=function(a,b,d){for(var 
e=0;e<a;e++)b.call(d,e)};b.escape=function(a){return(""+a).replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/'/g,"&#x27;").replace(/\//g,"&#x2F;")};b.mixin=function(a){j(b.functions(a),
+function(c){K(c,b[c]=a[c])})};var L=0;b.uniqueId=function(a){var b=L++;return 
a?a+b:b};b.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var
 t=/.^/,u=function(a){return 
a.replace(/\\\\/g,"\\").replace(/\\'/g,"'")};b.template=function(a,c){var 
d=b.templateSettings,d="var 
__p=[],print=function(){__p.push.apply(__p,arguments);};with(obj||{}){__p.push('"+a.replace(/\\/g,"\\\\").replace(/'/g,"\\'").replace(d.escape||t,function(a,b){return"',_.escape("+
+u(b)+"),'"}).replace(d.interpolate||t,function(a,b){return"',"+u(b)+",'"}).replace(d.evaluate||t,function(a,b){return"');"+u(b).replace(/[\r\n\t]/g,"
 
")+";__p.push('"}).replace(/\r/g,"\\r").replace(/\n/g,"\\n").replace(/\t/g,"\\t")+"');}return
 __p.join('');",e=new Function("obj","_",d);return c?e(c,b):function(a){return 
e.call(this,a,b)}};b.chain=function(a){return b(a).chain()};var 
m=function(a){this._wrapped=a};b.prototype=m.prototype;var 
v=function(a,c){return c?b(a).chain():a},K=function(a,c){m.prototype[a]=
+function(){var a=i.call(arguments);H.call(a,this._wrapped);return 
v(c.apply(b,a),this._chain)}};b.mixin(b);j("pop,push,reverse,shift,sort,splice,unshift".split(","),function(a){var
 b=k[a];m.prototype[a]=function(){var d=this._wrapped;b.apply(d,arguments);var 
e=d.length;(a=="shift"||a=="splice")&&e===0&&delete d[0];return 
v(d,this._chain)}});j(["concat","join","slice"],function(a){var 
b=k[a];m.prototype[a]=function(){return 
v(b.apply(this._wrapped,arguments),this._chain)}});m.prototype.chain=function(){this._chain=
+true;return this};m.prototype.value=function(){return 
this._wrapped}}).call(this);

http://git-wip-us.apache.org/repos/asf/incubator-superset-site/blob/886f04b0/_static/up-pressed.png
----------------------------------------------------------------------
diff --git a/_static/up-pressed.png b/_static/up-pressed.png
new file mode 100644
index 0000000..99e7210
Binary files /dev/null and b/_static/up-pressed.png differ

http://git-wip-us.apache.org/repos/asf/incubator-superset-site/blob/886f04b0/_static/up.png
----------------------------------------------------------------------
diff --git a/_static/up.png b/_static/up.png
new file mode 100644
index 0000000..26de002
Binary files /dev/null and b/_static/up.png differ

http://git-wip-us.apache.org/repos/asf/incubator-superset-site/blob/886f04b0/_static/websupport.js
----------------------------------------------------------------------
diff --git a/_static/websupport.js b/_static/websupport.js
new file mode 100644
index 0000000..98e7f40
--- /dev/null
+++ b/_static/websupport.js
@@ -0,0 +1,808 @@
+/*
+ * websupport.js
+ * ~~~~~~~~~~~~~
+ *
+ * sphinx.websupport utilities for all documentation.
+ *
+ * :copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
+ * :license: BSD, see LICENSE for details.
+ *
+ */
+
+(function($) {
+  $.fn.autogrow = function() {
+    return this.each(function() {
+    var textarea = this;
+
+    $.fn.autogrow.resize(textarea);
+
+    $(textarea)
+      .focus(function() {
+        textarea.interval = setInterval(function() {
+          $.fn.autogrow.resize(textarea);
+        }, 500);
+      })
+      .blur(function() {
+        clearInterval(textarea.interval);
+      });
+    });
+  };
+
+  $.fn.autogrow.resize = function(textarea) {
+    var lineHeight = parseInt($(textarea).css('line-height'), 10);
+    var lines = textarea.value.split('\n');
+    var columns = textarea.cols;
+    var lineCount = 0;
+    $.each(lines, function() {
+      lineCount += Math.ceil(this.length / columns) || 1;
+    });
+    var height = lineHeight * (lineCount + 1);
+    $(textarea).css('height', height);
+  };
+})(jQuery);
+
+(function($) {
+  var comp, by;
+
+  function init() {
+    initEvents();
+    initComparator();
+  }
+
+  function initEvents() {
+    $(document).on("click", 'a.comment-close', function(event) {
+      event.preventDefault();
+      hide($(this).attr('id').substring(2));
+    });
+    $(document).on("click", 'a.vote', function(event) {
+      event.preventDefault();
+      handleVote($(this));
+    });
+    $(document).on("click", 'a.reply', function(event) {
+      event.preventDefault();
+      openReply($(this).attr('id').substring(2));
+    });
+    $(document).on("click", 'a.close-reply', function(event) {
+      event.preventDefault();
+      closeReply($(this).attr('id').substring(2));
+    });
+    $(document).on("click", 'a.sort-option', function(event) {
+      event.preventDefault();
+      handleReSort($(this));
+    });
+    $(document).on("click", 'a.show-proposal', function(event) {
+      event.preventDefault();
+      showProposal($(this).attr('id').substring(2));
+    });
+    $(document).on("click", 'a.hide-proposal', function(event) {
+      event.preventDefault();
+      hideProposal($(this).attr('id').substring(2));
+    });
+    $(document).on("click", 'a.show-propose-change', function(event) {
+      event.preventDefault();
+      showProposeChange($(this).attr('id').substring(2));
+    });
+    $(document).on("click", 'a.hide-propose-change', function(event) {
+      event.preventDefault();
+      hideProposeChange($(this).attr('id').substring(2));
+    });
+    $(document).on("click", 'a.accept-comment', function(event) {
+      event.preventDefault();
+      acceptComment($(this).attr('id').substring(2));
+    });
+    $(document).on("click", 'a.delete-comment', function(event) {
+      event.preventDefault();
+      deleteComment($(this).attr('id').substring(2));
+    });
+    $(document).on("click", 'a.comment-markup', function(event) {
+      event.preventDefault();
+      toggleCommentMarkupBox($(this).attr('id').substring(2));
+    });
+  }
+
+  /**
+   * Set comp, which is a comparator function used for sorting and
+   * inserting comments into the list.
+   */
+  function setComparator() {
+    // If the first three letters are "asc", sort in ascending order
+    // and remove the prefix.
+    if (by.substring(0,3) == 'asc') {
+      var i = by.substring(3);
+      comp = function(a, b) { return a[i] - b[i]; };
+    } else {
+      // Otherwise sort in descending order.
+      comp = function(a, b) { return b[by] - a[by]; };
+    }
+
+    // Reset link styles and format the selected sort option.
+    $('a.sel').attr('href', '#').removeClass('sel');
+    $('a.by' + by).removeAttr('href').addClass('sel');
+  }
+
+  /**
+   * Create a comp function. If the user has preferences stored in
+   * the sortBy cookie, use those, otherwise use the default.
+   */
+  function initComparator() {
+    by = 'rating'; // Default to sort by rating.
+    // If the sortBy cookie is set, use that instead.
+    if (document.cookie.length > 0) {
+      var start = document.cookie.indexOf('sortBy=');
+      if (start != -1) {
+        start = start + 7;
+        var end = document.cookie.indexOf(";", start);
+        if (end == -1) {
+          end = document.cookie.length;
+          by = unescape(document.cookie.substring(start, end));
+        }
+      }
+    }
+    setComparator();
+  }
+
+  /**
+   * Show a comment div.
+   */
+  function show(id) {
+    $('#ao' + id).hide();
+    $('#ah' + id).show();
+    var context = $.extend({id: id}, opts);
+    var popup = $(renderTemplate(popupTemplate, context)).hide();
+    popup.find('textarea[name="proposal"]').hide();
+    popup.find('a.by' + by).addClass('sel');
+    var form = popup.find('#cf' + id);
+    form.submit(function(event) {
+      event.preventDefault();
+      addComment(form);
+    });
+    $('#s' + id).after(popup);
+    popup.slideDown('fast', function() {
+      getComments(id);
+    });
+  }
+
+  /**
+   * Hide a comment div.
+   */
+  function hide(id) {
+    $('#ah' + id).hide();
+    $('#ao' + id).show();
+    var div = $('#sc' + id);
+    div.slideUp('fast', function() {
+      div.remove();
+    });
+  }
+
+  /**
+   * Perform an ajax request to get comments for a node
+   * and insert the comments into the comments tree.
+   */
+  function getComments(id) {
+    $.ajax({
+     type: 'GET',
+     url: opts.getCommentsURL,
+     data: {node: id},
+     success: function(data, textStatus, request) {
+       var ul = $('#cl' + id);
+       var speed = 100;
+       $('#cf' + id)
+         .find('textarea[name="proposal"]')
+         .data('source', data.source);
+
+       if (data.comments.length === 0) {
+         ul.html('<li>No comments yet.</li>');
+         ul.data('empty', true);
+       } else {
+         // If there are comments, sort them and put them in the list.
+         var comments = sortComments(data.comments);
+         speed = data.comments.length * 100;
+         appendComments(comments, ul);
+         ul.data('empty', false);
+       }
+       $('#cn' + id).slideUp(speed + 200);
+       ul.slideDown(speed);
+     },
+     error: function(request, textStatus, error) {
+       showError('Oops, there was a problem retrieving the comments.');
+     },
+     dataType: 'json'
+    });
+  }
+
+  /**
+   * Add a comment via ajax and insert the comment into the comment tree.
+   */
+  function addComment(form) {
+    var node_id = form.find('input[name="node"]').val();
+    var parent_id = form.find('input[name="parent"]').val();
+    var text = form.find('textarea[name="comment"]').val();
+    var proposal = form.find('textarea[name="proposal"]').val();
+
+    if (text == '') {
+      showError('Please enter a comment.');
+      return;
+    }
+
+    // Disable the form that is being submitted.
+    form.find('textarea,input').attr('disabled', 'disabled');
+
+    // Send the comment to the server.
+    $.ajax({
+      type: "POST",
+      url: opts.addCommentURL,
+      dataType: 'json',
+      data: {
+        node: node_id,
+        parent: parent_id,
+        text: text,
+        proposal: proposal
+      },
+      success: function(data, textStatus, error) {
+        // Reset the form.
+        if (node_id) {
+          hideProposeChange(node_id);
+        }
+        form.find('textarea')
+          .val('')
+          .add(form.find('input'))
+          .removeAttr('disabled');
+       var ul = $('#cl' + (node_id || parent_id));
+        if (ul.data('empty')) {
+          $(ul).empty();
+          ul.data('empty', false);
+        }
+        insertComment(data.comment);
+        var ao = $('#ao' + node_id);
+        ao.find('img').attr({'src': opts.commentBrightImage});
+        if (node_id) {
+          // if this was a "root" comment, remove the commenting box
+          // (the user can get it back by reopening the comment popup)
+          $('#ca' + node_id).slideUp();
+        }
+      },
+      error: function(request, textStatus, error) {
+        form.find('textarea,input').removeAttr('disabled');
+        showError('Oops, there was a problem adding the comment.');
+      }
+    });
+  }
+
+  /**
+   * Recursively append comments to the main comment list and children
+   * lists, creating the comment tree.
+   */
+  function appendComments(comments, ul) {
+    $.each(comments, function() {
+      var div = createCommentDiv(this);
+      ul.append($(document.createElement('li')).html(div));
+      appendComments(this.children, div.find('ul.comment-children'));
+      // To avoid stagnating data, don't store the comments children in data.
+      this.children = null;
+      div.data('comment', this);
+    });
+  }
+
+  /**
+   * After adding a new comment, it must be inserted in the correct
+   * location in the comment tree.
+   */
+  function insertComment(comment) {
+    var div = createCommentDiv(comment);
+
+    // To avoid stagnating data, don't store the comments children in data.
+    comment.children = null;
+    div.data('comment', comment);
+
+    var ul = $('#cl' + (comment.node || comment.parent));
+    var siblings = getChildren(ul);
+
+    var li = $(document.createElement('li'));
+    li.hide();
+
+    // Determine where in the parents children list to insert this comment.
+    for(i=0; i < siblings.length; i++) {
+      if (comp(comment, siblings[i]) <= 0) {
+        $('#cd' + siblings[i].id)
+          .parent()
+          .before(li.html(div));
+        li.slideDown('fast');
+        return;
+      }
+    }
+
+    // If we get here, this comment rates lower than all the others,
+    // or it is the only comment in the list.
+    ul.append(li.html(div));
+    li.slideDown('fast');
+  }
+
+  function acceptComment(id) {
+    $.ajax({
+      type: 'POST',
+      url: opts.acceptCommentURL,
+      data: {id: id},
+      success: function(data, textStatus, request) {
+        $('#cm' + id).fadeOut('fast');
+        $('#cd' + id).removeClass('moderate');
+      },
+      error: function(request, textStatus, error) {
+        showError('Oops, there was a problem accepting the comment.');
+      }
+    });
+  }
+
+  function deleteComment(id) {
+    $.ajax({
+      type: 'POST',
+      url: opts.deleteCommentURL,
+      data: {id: id},
+      success: function(data, textStatus, request) {
+        var div = $('#cd' + id);
+        if (data == 'delete') {
+          // Moderator mode: remove the comment and all children immediately
+          div.slideUp('fast', function() {
+            div.remove();
+          });
+          return;
+        }
+        // User mode: only mark the comment as deleted
+        div
+          .find('span.user-id:first')
+          .text('[deleted]').end()
+          .find('div.comment-text:first')
+          .text('[deleted]').end()
+          .find('#cm' + id + ', #dc' + id + ', #ac' + id + ', #rc' + id +
+                ', #sp' + id + ', #hp' + id + ', #cr' + id + ', #rl' + id)
+          .remove();
+        var comment = div.data('comment');
+        comment.username = '[deleted]';
+        comment.text = '[deleted]';
+        div.data('comment', comment);
+      },
+      error: function(request, textStatus, error) {
+        showError('Oops, there was a problem deleting the comment.');
+      }
+    });
+  }
+
+  function showProposal(id) {
+    $('#sp' + id).hide();
+    $('#hp' + id).show();
+    $('#pr' + id).slideDown('fast');
+  }
+
+  function hideProposal(id) {
+    $('#hp' + id).hide();
+    $('#sp' + id).show();
+    $('#pr' + id).slideUp('fast');
+  }
+
+  function showProposeChange(id) {
+    $('#pc' + id).hide();
+    $('#hc' + id).show();
+    var textarea = $('#pt' + id);
+    textarea.val(textarea.data('source'));
+    $.fn.autogrow.resize(textarea[0]);
+    textarea.slideDown('fast');
+  }
+
+  function hideProposeChange(id) {
+    $('#hc' + id).hide();
+    $('#pc' + id).show();
+    var textarea = $('#pt' + id);
+    textarea.val('').removeAttr('disabled');
+    textarea.slideUp('fast');
+  }
+
+  function toggleCommentMarkupBox(id) {
+    $('#mb' + id).toggle();
+  }
+
+  /** Handle when the user clicks on a sort by link. */
+  function handleReSort(link) {
+    var classes = link.attr('class').split(/\s+/);
+    for (var i=0; i<classes.length; i++) {
+      if (classes[i] != 'sort-option') {
+       by = classes[i].substring(2);
+      }
+    }
+    setComparator();
+    // Save/update the sortBy cookie.
+    var expiration = new Date();
+    expiration.setDate(expiration.getDate() + 365);
+    document.cookie= 'sortBy=' + escape(by) +
+                     ';expires=' + expiration.toUTCString();
+    $('ul.comment-ul').each(function(index, ul) {
+      var comments = getChildren($(ul), true);
+      comments = sortComments(comments);
+      appendComments(comments, $(ul).empty());
+    });
+  }
+
+  /**
+   * Function to process a vote when a user clicks an arrow.
+   */
+  function handleVote(link) {
+    if (!opts.voting) {
+      showError("You'll need to login to vote.");
+      return;
+    }
+
+    var id = link.attr('id');
+    if (!id) {
+      // Didn't click on one of the voting arrows.
+      return;
+    }
+    // If it is an unvote, the new vote value is 0,
+    // Otherwise it's 1 for an upvote, or -1 for a downvote.
+    var value = 0;
+    if (id.charAt(1) != 'u') {
+      value = id.charAt(0) == 'u' ? 1 : -1;
+    }
+    // The data to be sent to the server.
+    var d = {
+      comment_id: id.substring(2),
+      value: value
+    };
+
+    // Swap the vote and unvote links.
+    link.hide();
+    $('#' + id.charAt(0) + (id.charAt(1) == 'u' ? 'v' : 'u') + d.comment_id)
+      .show();
+
+    // The div the comment is displayed in.
+    var div = $('div#cd' + d.comment_id);
+    var data = div.data('comment');
+
+    // If this is not an unvote, and the other vote arrow has
+    // already been pressed, unpress it.
+    if ((d.value !== 0) && (data.vote === d.value * -1)) {
+      $('#' + (d.value == 1 ? 'd' : 'u') + 'u' + d.comment_id).hide();
+      $('#' + (d.value == 1 ? 'd' : 'u') + 'v' + d.comment_id).show();
+    }
+
+    // Update the comments rating in the local data.
+    data.rating += (data.vote === 0) ? d.value : (d.value - data.vote);
+    data.vote = d.value;
+    div.data('comment', data);
+
+    // Change the rating text.
+    div.find('.rating:first')
+      .text(data.rating + ' point' + (data.rating == 1 ? '' : 's'));
+
+    // Send the vote information to the server.
+    $.ajax({
+      type: "POST",
+      url: opts.processVoteURL,
+      data: d,
+      error: function(request, textStatus, error) {
+        showError('Oops, there was a problem casting that vote.');
+      }
+    });
+  }
+
+  /**
+   * Open a reply form used to reply to an existing comment.
+   */
+  function openReply(id) {
+    // Swap out the reply link for the hide link
+    $('#rl' + id).hide();
+    $('#cr' + id).show();
+
+    // Add the reply li to the children ul.
+    var div = $(renderTemplate(replyTemplate, {id: id})).hide();
+    $('#cl' + id)
+      .prepend(div)
+      // Setup the submit handler for the reply form.
+      .find('#rf' + id)
+      .submit(function(event) {
+        event.preventDefault();
+        addComment($('#rf' + id));
+        closeReply(id);
+      })
+      .find('input[type=button]')
+      .click(function() {
+        closeReply(id);
+      });
+    div.slideDown('fast', function() {
+      $('#rf' + id).find('textarea').focus();
+    });
+  }
+
+  /**
+   * Close the reply form opened with openReply.
+   */
+  function closeReply(id) {
+    // Remove the reply div from the DOM.
+    $('#rd' + id).slideUp('fast', function() {
+      $(this).remove();
+    });
+
+    // Swap out the hide link for the reply link
+    $('#cr' + id).hide();
+    $('#rl' + id).show();
+  }
+
+  /**
+   * Recursively sort a tree of comments using the comp comparator.
+   */
+  function sortComments(comments) {
+    comments.sort(comp);
+    $.each(comments, function() {
+      this.children = sortComments(this.children);
+    });
+    return comments;
+  }
+
+  /**
+   * Get the children comments from a ul. If recursive is true,
+   * recursively include childrens' children.
+   */
+  function getChildren(ul, recursive) {
+    var children = [];
+    ul.children().children("[id^='cd']")
+      .each(function() {
+        var comment = $(this).data('comment');
+        if (recursive)
+          comment.children = getChildren($(this).find('#cl' + comment.id), 
true);
+        children.push(comment);
+      });
+    return children;
+  }
+
+  /** Create a div to display a comment in. */
+  function createCommentDiv(comment) {
+    if (!comment.displayed && !opts.moderator) {
+      return $('<div class="moderate">Thank you!  Your comment will show up '
+               + 'once it is has been approved by a moderator.</div>');
+    }
+    // Prettify the comment rating.
+    comment.pretty_rating = comment.rating + ' point' +
+      (comment.rating == 1 ? '' : 's');
+    // Make a class (for displaying not yet moderated comments differently)
+    comment.css_class = comment.displayed ? '' : ' moderate';
+    // Create a div for this comment.
+    var context = $.extend({}, opts, comment);
+    var div = $(renderTemplate(commentTemplate, context));
+
+    // If the user has voted on this comment, highlight the correct arrow.
+    if (comment.vote) {
+      var direction = (comment.vote == 1) ? 'u' : 'd';
+      div.find('#' + direction + 'v' + comment.id).hide();
+      div.find('#' + direction + 'u' + comment.id).show();
+    }
+
+    if (opts.moderator || comment.text != '[deleted]') {
+      div.find('a.reply').show();
+      if (comment.proposal_diff)
+        div.find('#sp' + comment.id).show();
+      if (opts.moderator && !comment.displayed)
+        div.find('#cm' + comment.id).show();
+      if (opts.moderator || (opts.username == comment.username))
+        div.find('#dc' + comment.id).show();
+    }
+    return div;
+  }
+
+  /**
+   * A simple template renderer. Placeholders such as <%id%> are replaced
+   * by context['id'] with items being escaped. Placeholders such as <#id#>
+   * are not escaped.
+   */
+  function renderTemplate(template, context) {
+    var esc = $(document.createElement('div'));
+
+    function handle(ph, escape) {
+      var cur = context;
+      $.each(ph.split('.'), function() {
+        cur = cur[this];
+      });
+      return escape ? esc.text(cur || "").html() : cur;
+    }
+
+    return template.replace(/<([%#])([\w\.]*)\1>/g, function() {
+      return handle(arguments[2], arguments[1] == '%' ? true : false);
+    });
+  }
+
+  /** Flash an error message briefly. */
+  function showError(message) {
+    $(document.createElement('div')).attr({'class': 'popup-error'})
+      .append($(document.createElement('div'))
+               .attr({'class': 'error-message'}).text(message))
+      .appendTo('body')
+      .fadeIn("slow")
+      .delay(2000)
+      .fadeOut("slow");
+  }
+
+  /** Add a link the user uses to open the comments popup. */
+  $.fn.comment = function() {
+    return this.each(function() {
+      var id = $(this).attr('id').substring(1);
+      var count = COMMENT_METADATA[id];
+      var title = count + ' comment' + (count == 1 ? '' : 's');
+      var image = count > 0 ? opts.commentBrightImage : opts.commentImage;
+      var addcls = count == 0 ? ' nocomment' : '';
+      $(this)
+        .append(
+          $(document.createElement('a')).attr({
+            href: '#',
+            'class': 'sphinx-comment-open' + addcls,
+            id: 'ao' + id
+          })
+            .append($(document.createElement('img')).attr({
+              src: image,
+              alt: 'comment',
+              title: title
+            }))
+            .click(function(event) {
+              event.preventDefault();
+              show($(this).attr('id').substring(2));
+            })
+        )
+        .append(
+          $(document.createElement('a')).attr({
+            href: '#',
+            'class': 'sphinx-comment-close hidden',
+            id: 'ah' + id
+          })
+            .append($(document.createElement('img')).attr({
+              src: opts.closeCommentImage,
+              alt: 'close',
+              title: 'close'
+            }))
+            .click(function(event) {
+              event.preventDefault();
+              hide($(this).attr('id').substring(2));
+            })
+        );
+    });
+  };
+
+  var opts = {
+    processVoteURL: '/_process_vote',
+    addCommentURL: '/_add_comment',
+    getCommentsURL: '/_get_comments',
+    acceptCommentURL: '/_accept_comment',
+    deleteCommentURL: '/_delete_comment',
+    commentImage: '/static/_static/comment.png',
+    closeCommentImage: '/static/_static/comment-close.png',
+    loadingImage: '/static/_static/ajax-loader.gif',
+    commentBrightImage: '/static/_static/comment-bright.png',
+    upArrow: '/static/_static/up.png',
+    downArrow: '/static/_static/down.png',
+    upArrowPressed: '/static/_static/up-pressed.png',
+    downArrowPressed: '/static/_static/down-pressed.png',
+    voting: false,
+    moderator: false
+  };
+
+  if (typeof COMMENT_OPTIONS != "undefined") {
+    opts = jQuery.extend(opts, COMMENT_OPTIONS);
+  }
+
+  var popupTemplate = '\
+    <div class="sphinx-comments" id="sc<%id%>">\
+      <p class="sort-options">\
+        Sort by:\
+        <a href="#" class="sort-option byrating">best rated</a>\
+        <a href="#" class="sort-option byascage">newest</a>\
+        <a href="#" class="sort-option byage">oldest</a>\
+      </p>\
+      <div class="comment-header">Comments</div>\
+      <div class="comment-loading" id="cn<%id%>">\
+        loading comments... <img src="<%loadingImage%>" alt="" /></div>\
+      <ul id="cl<%id%>" class="comment-ul"></ul>\
+      <div id="ca<%id%>">\
+      <p class="add-a-comment">Add a comment\
+        (<a href="#" class="comment-markup" id="ab<%id%>">markup</a>):</p>\
+      <div class="comment-markup-box" id="mb<%id%>">\
+        reStructured text markup: <i>*emph*</i>, <b>**strong**</b>, \
+        <code>``code``</code>, \
+        code blocks: <code>::</code> and an indented block after blank 
line</div>\
+      <form method="post" id="cf<%id%>" class="comment-form" action="">\
+        <textarea name="comment" cols="80"></textarea>\
+        <p class="propose-button">\
+          <a href="#" id="pc<%id%>" class="show-propose-change">\
+            Propose a change &#9657;\
+          </a>\
+          <a href="#" id="hc<%id%>" class="hide-propose-change">\
+            Propose a change &#9663;\
+          </a>\
+        </p>\
+        <textarea name="proposal" id="pt<%id%>" cols="80"\
+                  spellcheck="false"></textarea>\
+        <input type="submit" value="Add comment" />\
+        <input type="hidden" name="node" value="<%id%>" />\
+        <input type="hidden" name="parent" value="" />\
+      </form>\
+      </div>\
+    </div>';
+
+  var commentTemplate = '\
+    <div id="cd<%id%>" class="sphinx-comment<%css_class%>">\
+      <div class="vote">\
+        <div class="arrow">\
+          <a href="#" id="uv<%id%>" class="vote" title="vote up">\
+            <img src="<%upArrow%>" />\
+          </a>\
+          <a href="#" id="uu<%id%>" class="un vote" title="vote up">\
+            <img src="<%upArrowPressed%>" />\
+          </a>\
+        </div>\
+        <div class="arrow">\
+          <a href="#" id="dv<%id%>" class="vote" title="vote down">\
+            <img src="<%downArrow%>" id="da<%id%>" />\
+          </a>\
+          <a href="#" id="du<%id%>" class="un vote" title="vote down">\
+            <img src="<%downArrowPressed%>" />\
+          </a>\
+        </div>\
+      </div>\
+      <div class="comment-content">\
+        <p class="tagline comment">\
+          <span class="user-id"><%username%></span>\
+          <span class="rating"><%pretty_rating%></span>\
+          <span class="delta"><%time.delta%></span>\
+        </p>\
+        <div class="comment-text comment"><#text#></div>\
+        <p class="comment-opts comment">\
+          <a href="#" class="reply hidden" id="rl<%id%>">reply &#9657;</a>\
+          <a href="#" class="close-reply" id="cr<%id%>">reply &#9663;</a>\
+          <a href="#" id="sp<%id%>" class="show-proposal">proposal &#9657;</a>\
+          <a href="#" id="hp<%id%>" class="hide-proposal">proposal &#9663;</a>\
+          <a href="#" id="dc<%id%>" class="delete-comment hidden">delete</a>\
+          <span id="cm<%id%>" class="moderation hidden">\
+            <a href="#" id="ac<%id%>" class="accept-comment">accept</a>\
+          </span>\
+        </p>\
+        <pre class="proposal" id="pr<%id%>">\
+<#proposal_diff#>\
+        </pre>\
+          <ul class="comment-children" id="cl<%id%>"></ul>\
+        </div>\
+        <div class="clearleft"></div>\
+      </div>\
+    </div>';
+
+  var replyTemplate = '\
+    <li>\
+      <div class="reply-div" id="rd<%id%>">\
+        <form id="rf<%id%>">\
+          <textarea name="comment" cols="80"></textarea>\
+          <input type="submit" value="Add reply" />\
+          <input type="button" value="Cancel" />\
+          <input type="hidden" name="parent" value="<%id%>" />\
+          <input type="hidden" name="node" value="" />\
+        </form>\
+      </div>\
+    </li>';
+
+  $(document).ready(function() {
+    init();
+  });
+})(jQuery);
+
+$(document).ready(function() {
+  // add comment anchors for all paragraphs that are commentable
+  $('.sphinx-has-comment').comment();
+
+  // highlight search words in search results
+  $("div.context").each(function() {
+    var params = $.getQueryParameters();
+    var terms = (params.q) ? params.q[0].split(/\s+/) : [];
+    var result = $(this);
+    $.each(terms, function() {
+      result.highlightText(this.toLowerCase(), 'highlighted');
+    });
+  });
+
+  // directly open comment window if requested
+  var anchor = document.location.hash;
+  if (anchor.substring(0, 9) == '#comment-') {
+    $('#ao' + anchor.substring(9)).click();
+    document.location.hash = '#s' + anchor.substring(9);
+  }
+});

http://git-wip-us.apache.org/repos/asf/incubator-superset-site/blob/886f04b0/druid.html
----------------------------------------------------------------------
diff --git a/druid.html b/druid.html
new file mode 100644
index 0000000..524a7c8
--- /dev/null
+++ b/druid.html
@@ -0,0 +1,256 @@
+
+
+<!DOCTYPE html>
+<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
+<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
+<head>
+  <meta charset="utf-8">
+  
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  
+  <title>Druid &mdash; Superset&#39;s documentation  documentation</title>
+  
+
+  
+  
+
+  
+
+  
+  
+    
+
+  
+
+  
+  
+    <link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
+  
+
+  
+
+  
+        <link rel="index" title="Index"
+              href="genindex.html"/>
+        <link rel="search" title="Search" href="search.html"/>
+    <link rel="top" title="Superset&#39;s documentation  documentation" 
href="index.html"/>
+        <link rel="next" title="FAQ" href="faq.html"/>
+        <link rel="prev" title="Gallery" href="gallery.html"/> 
+
+  
+  <script src="_static/js/modernizr.min.js"></script>
+
+</head>
+
+<body class="wy-body-for-nav" role="document">
+
+  <div class="wy-grid-for-nav">
+
+    
+    <nav data-toggle="wy-nav-shift" class="wy-nav-side">
+      <div class="wy-side-scroll">
+        <div class="wy-side-nav-search">
+          
+
+          
+            <a href="index.html" class="icon icon-home"> Superset's 
documentation
+          
+
+          
+          </a>
+
+          
+            
+            
+          
+
+          
+<div role="search">
+  <form id="rtd-search-form" class="wy-form" action="search.html" method="get">
+    <input type="text" name="q" placeholder="Search docs" />
+    <input type="hidden" name="check_keywords" value="yes" />
+    <input type="hidden" name="area" value="default" />
+  </form>
+</div>
+
+          
+        </div>
+
+        <div class="wy-menu wy-menu-vertical" data-spy="affix" 
role="navigation" aria-label="main navigation">
+          
+            
+            
+                <ul class="current">
+<li class="toctree-l1"><a class="reference internal" 
href="installation.html">Installation &amp; Configuration</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="tutorial.html">Tutorial for Superset Administrators</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="security.html">Security</a></li>
+<li class="toctree-l1"><a class="reference internal" href="sqllab.html">SQL 
Lab</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="visualization.html">Visualization Tools</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="videos.html">Videos</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="gallery.html">Gallery</a></li>
+<li class="toctree-l1 current"><a class="current reference internal" 
href="#">Druid</a><ul>
+<li class="toctree-l2"><a class="reference internal" 
href="#supported">Supported</a><ul>
+<li class="toctree-l3"><a class="reference internal" 
href="#aggregations">Aggregations</a></li>
+<li class="toctree-l3"><a class="reference internal" 
href="#post-aggregations">Post-Aggregations</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" 
href="#not-yet-supported">Not yet supported</a></li>
+</ul>
+</li>
+<li class="toctree-l1"><a class="reference internal" 
href="faq.html">FAQ</a></li>
+</ul>
+
+            
+          
+        </div>
+      </div>
+    </nav>
+
+    <section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">
+
+      
+      <nav class="wy-nav-top" role="navigation" aria-label="top navigation">
+        <i data-toggle="wy-nav-top" class="fa fa-bars"></i>
+        <a href="index.html">Superset's documentation</a>
+      </nav>
+
+
+      
+      <div class="wy-nav-content">
+        <div class="rst-content">
+          
+
+ 
+
+
+
+<div role="navigation" aria-label="breadcrumbs navigation">
+  <ul class="wy-breadcrumbs">
+    <li><a href="index.html">Docs</a> &raquo;</li>
+      
+    <li>Druid</li>
+      <li class="wy-breadcrumbs-aside">
+        
+          
+        
+      </li>
+  </ul>
+  <hr/>
+</div>
+          <div role="main" class="document" itemscope="itemscope" 
itemtype="http://schema.org/Article";>
+           <div itemprop="articleBody">
+            
+  <div class="section" id="druid">
+<h1>Druid<a class="headerlink" href="#druid" title="Permalink to this 
headline">¶</a></h1>
+<p>Superset works well with Druid, though currently not all
+advanced features out of Druid are covered. This page clarifies what is
+covered and what isn&#8217;t and explains how to use some of the features.</p>
+<div class="admonition note">
+<p class="first admonition-title">Note</p>
+<p class="last">Currently Airbnb runs against Druid <code class="docutils 
literal"><span class="pre">0.8.x</span></code> and previous /
+following versions are not tested against.</p>
+</div>
+<div class="section" id="supported">
+<h2>Supported<a class="headerlink" href="#supported" title="Permalink to this 
headline">¶</a></h2>
+<div class="section" id="aggregations">
+<h3>Aggregations<a class="headerlink" href="#aggregations" title="Permalink to 
this headline">¶</a></h3>
+<p>Common aggregations, or Druid metrics can be defined and used in Superset.
+The first and simpler use case is to use the checkbox matrix expose in your
+datasource&#8217;s edit view (<code class="docutils literal"><span 
class="pre">Sources</span> <span class="pre">-&gt;</span> <span 
class="pre">Druid</span> <span class="pre">Datasources</span> <span 
class="pre">-&gt;</span>
+<span class="pre">[your</span> <span class="pre">datasource]</span> <span 
class="pre">-&gt;</span> <span class="pre">Edit</span> <span 
class="pre">-&gt;</span> <span class="pre">[tab]</span> <span 
class="pre">List</span> <span class="pre">Druid</span> <span 
class="pre">Column</span></code>).
+Clicking the <code class="docutils literal"><span 
class="pre">GroupBy</span></code> and <code class="docutils literal"><span 
class="pre">Filterable</span></code> checkboxes will make the column
+appear in the related dropdowns while in explore view. Checking
+<code class="docutils literal"><span class="pre">Count</span> <span 
class="pre">Distinct</span></code>, <code class="docutils literal"><span 
class="pre">Min</span></code>, <code class="docutils literal"><span 
class="pre">Max</span></code> or <code class="docutils literal"><span 
class="pre">Sum</span></code> will result in creating
+new metrics that will appear in the <code class="docutils literal"><span 
class="pre">List</span> <span class="pre">Druid</span> <span 
class="pre">Metric</span></code> tab upon saving the
+datasource. By editing these metrics, you&#8217;ll notice that they their 
<code class="docutils literal"><span class="pre">json</span></code>
+element correspond to Druid aggregation definition. You can create your own
+aggregations manually from the <code class="docutils literal"><span 
class="pre">List</span> <span class="pre">Druid</span> <span 
class="pre">Metric</span></code> tab following Druid
+documentation.</p>
+<a class="reference internal image-reference" 
href="_images/druid_agg.png"><img alt="_images/druid_agg.png" 
src="_images/druid_agg.png" style="width: 894.0px; height: 564.0px;" /></a>
+</div>
+<div class="section" id="post-aggregations">
+<h3>Post-Aggregations<a class="headerlink" href="#post-aggregations" 
title="Permalink to this headline">¶</a></h3>
+<p>Druid supports post aggregation and this works in Superset. All you have to
+do is creating a metric, much like you would create an aggregation manually,
+but specify <code class="docutils literal"><span 
class="pre">postagg</span></code> as a <code class="docutils literal"><span 
class="pre">Metric</span> <span class="pre">Type</span></code>. You then have 
to provide a valid
+json post-aggregation definition (as specified in the Druid docs) in the
+Json field.</p>
+</div>
+</div>
+<div class="section" id="not-yet-supported">
+<h2>Not yet supported<a class="headerlink" href="#not-yet-supported" 
title="Permalink to this headline">¶</a></h2>
+<ul class="simple">
+<li>Regex filters</li>
+<li>Lookups / joins</li>
+</ul>
+</div>
+</div>
+
+
+           </div>
+          </div>
+          <footer>
+  
+    <div class="rst-footer-buttons" role="navigation" aria-label="footer 
navigation">
+      
+        <a href="faq.html" class="btn btn-neutral float-right" title="FAQ" 
accesskey="n">Next <span class="fa fa-arrow-circle-right"></span></a>
+      
+      
+        <a href="gallery.html" class="btn btn-neutral" title="Gallery" 
accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous</a>
+      
+    </div>
+  
+
+  <hr/>
+
+  <div role="contentinfo">
+    <p>
+
+    </p>
+  </div>
+  Built with <a href="http://sphinx-doc.org/";>Sphinx</a> using a <a 
href="https://github.com/snide/sphinx_rtd_theme";>theme</a> provided by <a 
href="https://readthedocs.org";>Read the Docs</a>. 
+
+</footer>
+
+        </div>
+      </div>
+
+    </section>
+
+  </div>
+  
+
+
+  
+
+    <script type="text/javascript">
+        var DOCUMENTATION_OPTIONS = {
+            URL_ROOT:'./',
+            VERSION:'',
+            COLLAPSE_INDEX:false,
+            FILE_SUFFIX:'.html',
+            HAS_SOURCE:  true
+        };
+    </script>
+      <script type="text/javascript" src="_static/jquery.js"></script>
+      <script type="text/javascript" src="_static/underscore.js"></script>
+      <script type="text/javascript" src="_static/doctools.js"></script>
+
+  
+
+  
+  
+    <script type="text/javascript" src="_static/js/theme.js"></script>
+  
+
+  
+  
+  <script type="text/javascript">
+      jQuery(function () {
+          SphinxRtdTheme.StickyNav.enable();
+      });
+  </script>
+   
+
+</body>
+</html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-superset-site/blob/886f04b0/faq.html
----------------------------------------------------------------------
diff --git a/faq.html b/faq.html
new file mode 100644
index 0000000..04f8452
--- /dev/null
+++ b/faq.html
@@ -0,0 +1,327 @@
+
+
+<!DOCTYPE html>
+<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
+<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
+<head>
+  <meta charset="utf-8">
+  
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  
+  <title>FAQ &mdash; Superset&#39;s documentation  documentation</title>
+  
+
+  
+  
+
+  
+
+  
+  
+    
+
+  
+
+  
+  
+    <link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
+  
+
+  
+
+  
+        <link rel="index" title="Index"
+              href="genindex.html"/>
+        <link rel="search" title="Search" href="search.html"/>
+    <link rel="top" title="Superset&#39;s documentation  documentation" 
href="index.html"/>
+        <link rel="prev" title="Druid" href="druid.html"/> 
+
+  
+  <script src="_static/js/modernizr.min.js"></script>
+
+</head>
+
+<body class="wy-body-for-nav" role="document">
+
+  <div class="wy-grid-for-nav">
+
+    
+    <nav data-toggle="wy-nav-shift" class="wy-nav-side">
+      <div class="wy-side-scroll">
+        <div class="wy-side-nav-search">
+          
+
+          
+            <a href="index.html" class="icon icon-home"> Superset's 
documentation
+          
+
+          
+          </a>
+
+          
+            
+            
+          
+
+          
+<div role="search">
+  <form id="rtd-search-form" class="wy-form" action="search.html" method="get">
+    <input type="text" name="q" placeholder="Search docs" />
+    <input type="hidden" name="check_keywords" value="yes" />
+    <input type="hidden" name="area" value="default" />
+  </form>
+</div>
+
+          
+        </div>
+
+        <div class="wy-menu wy-menu-vertical" data-spy="affix" 
role="navigation" aria-label="main navigation">
+          
+            
+            
+                <ul class="current">
+<li class="toctree-l1"><a class="reference internal" 
href="installation.html">Installation &amp; Configuration</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="tutorial.html">Tutorial for Superset Administrators</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="security.html">Security</a></li>
+<li class="toctree-l1"><a class="reference internal" href="sqllab.html">SQL 
Lab</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="visualization.html">Visualization Tools</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="videos.html">Videos</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="gallery.html">Gallery</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="druid.html">Druid</a></li>
+<li class="toctree-l1 current"><a class="current reference internal" 
href="#">FAQ</a><ul>
+<li class="toctree-l2"><a class="reference internal" 
href="#can-i-query-join-multiple-tables-at-one-time">Can I query/join multiple 
tables at one time?</a></li>
+<li class="toctree-l2"><a class="reference internal" 
href="#how-big-can-my-data-source-be">How BIG can my data source be?</a></li>
+<li class="toctree-l2"><a class="reference internal" 
href="#how-do-i-create-my-own-visualization">How do I create my own 
visualization?</a></li>
+<li class="toctree-l2"><a class="reference internal" 
href="#why-are-my-queries-timing-out">Why are my queries timing out?</a></li>
+<li class="toctree-l2"><a class="reference internal" 
href="#why-is-the-map-not-visible-in-the-mapbox-visualization">Why is the map 
not visible in the mapbox visualization?</a></li>
+<li class="toctree-l2"><a class="reference internal" 
href="#how-to-add-dynamic-filters-to-a-dashboard">How to add dynamic filters to 
a dashboard?</a></li>
+<li class="toctree-l2"><a class="reference internal" 
href="#why-does-fabmanager-or-superset-freezed-hung-not-responding-when-started-my-home-directory-is-nfs-mounted">Why
 does fabmanager or superset freezed/hung/not responding when started (my home 
directory is NFS mounted)?</a></li>
+<li class="toctree-l2"><a class="reference internal" 
href="#how-do-i-add-new-columns-to-an-existing-table">How do I add new columns 
to an existing table</a></li>
+<li class="toctree-l2"><a class="reference internal" 
href="#how-do-i-go-about-developing-a-new-visualization-type">How do I go about 
developing a new visualization type?</a></li>
+</ul>
+</li>
+</ul>
+
+            
+          
+        </div>
+      </div>
+    </nav>
+
+    <section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">
+
+      
+      <nav class="wy-nav-top" role="navigation" aria-label="top navigation">
+        <i data-toggle="wy-nav-top" class="fa fa-bars"></i>
+        <a href="index.html">Superset's documentation</a>
+      </nav>
+
+
+      
+      <div class="wy-nav-content">
+        <div class="rst-content">
+          
+
+ 
+
+
+
+<div role="navigation" aria-label="breadcrumbs navigation">
+  <ul class="wy-breadcrumbs">
+    <li><a href="index.html">Docs</a> &raquo;</li>
+      
+    <li>FAQ</li>
+      <li class="wy-breadcrumbs-aside">
+        
+          
+        
+      </li>
+  </ul>
+  <hr/>
+</div>
+          <div role="main" class="document" itemscope="itemscope" 
itemtype="http://schema.org/Article";>
+           <div itemprop="articleBody">
+            
+  <div class="section" id="faq">
+<h1>FAQ<a class="headerlink" href="#faq" title="Permalink to this 
headline">¶</a></h1>
+<div class="section" id="can-i-query-join-multiple-tables-at-one-time">
+<h2>Can I query/join multiple tables at one time?<a class="headerlink" 
href="#can-i-query-join-multiple-tables-at-one-time" title="Permalink to this 
headline">¶</a></h2>
+<p>Not directly no. A Superset SQLAlchemy datasource can only be a single table
+or a view.</p>
+<p>When working with tables, the solution would be to materialize
+a table that contains all the fields needed for your analysis, most likely
+through some scheduled batch process.</p>
+<p>A view is a simple logical layer that abstract an arbitrary SQL queries as
+a virtual table. This can allow you to join and union multiple tables, and
+to apply some transformation using arbitrary SQL expressions. The limitation
+there is your database performance as Superset effectively will run a query
+on top of your query (view). A good practice may be to limit yourself to
+joining your main large table to one or many small tables only, and avoid
+using <code class="docutils literal"><span class="pre">GROUP</span> <span 
class="pre">BY</span></code> where possible as Superset will do its own <code 
class="docutils literal"><span class="pre">GROUP</span> <span 
class="pre">BY</span></code> and
+doing the work twice might slow down performance.</p>
+<p>Whether you use a table or a view, the important factor is whether your
+database is fast enough to serve it in an interactive fashion to provide
+a good user experience in Superset.</p>
+</div>
+<div class="section" id="how-big-can-my-data-source-be">
+<h2>How BIG can my data source be?<a class="headerlink" 
href="#how-big-can-my-data-source-be" title="Permalink to this 
headline">¶</a></h2>
+<p>It can be gigantic! As mentioned above, the main criteria is whether your
+database can execute queries and return results in a time frame that is
+acceptable to your users. Many distributed databases out there can execute
+queries that scan through terabytes in an interactive fashion.</p>
+</div>
+<div class="section" id="how-do-i-create-my-own-visualization">
+<h2>How do I create my own visualization?<a class="headerlink" 
href="#how-do-i-create-my-own-visualization" title="Permalink to this 
headline">¶</a></h2>
+<p>We are planning on making it easier to add new visualizations to the
+framework, in the meantime, we&#8217;ve tagged a few pull requests as
+<code class="docutils literal"><span class="pre">example</span></code> to give 
people examples of how to contribute new
+visualizations.</p>
+<p><a class="reference external" 
href="https://github.com/airbnb/superset/issues?q=label%3Aexample+is%3Aclosed";>https://github.com/airbnb/superset/issues?q=label%3Aexample+is%3Aclosed</a></p>
+</div>
+<div class="section" id="why-are-my-queries-timing-out">
+<h2>Why are my queries timing out?<a class="headerlink" 
href="#why-are-my-queries-timing-out" title="Permalink to this 
headline">¶</a></h2>
+<p>If you are seeing timeouts (504 Gateway Time-out) when running queries,
+it&#8217;s because the web server is timing out web requests. If you want to
+increase the default (50), you can specify the timeout when starting the
+web server with the <code class="docutils literal"><span 
class="pre">-t</span></code> flag, which is expressed in seconds.</p>
+<p><code class="docutils literal"><span class="pre">superset</span> <span 
class="pre">runserver</span> <span class="pre">-t</span> <span 
class="pre">300</span></code></p>
+</div>
+<div class="section" 
id="why-is-the-map-not-visible-in-the-mapbox-visualization">
+<h2>Why is the map not visible in the mapbox visualization?<a 
class="headerlink" 
href="#why-is-the-map-not-visible-in-the-mapbox-visualization" title="Permalink 
to this headline">¶</a></h2>
+<p>You need to register to mapbox.com, get an API key and configure it as
+<code class="docutils literal"><span class="pre">MAPBOX_API_KEY</span></code> 
in <code class="docutils literal"><span 
class="pre">superset_config.py</span></code>.</p>
+</div>
+<div class="section" id="how-to-add-dynamic-filters-to-a-dashboard">
+<h2>How to add dynamic filters to a dashboard?<a class="headerlink" 
href="#how-to-add-dynamic-filters-to-a-dashboard" title="Permalink to this 
headline">¶</a></h2>
+<p>It&#8217;s easy: use the <code class="docutils literal"><span 
class="pre">Filter</span> <span class="pre">Box</span></code> widget, build a 
slice, and add it to your
+dashboard.</p>
+<p>The <code class="docutils literal"><span class="pre">Filter</span> <span 
class="pre">Box</span></code> widget allows you to define a query to populate 
dropdowns
+that can be use for filtering. To build the list of distinct values, we
+run a query, and sort the result by the metric you provide, sorting
+descending.</p>
+<p>The widget also has a checkbox <code class="docutils literal"><span 
class="pre">Date</span> <span class="pre">Filter</span></code>, which enables 
time filtering
+capabilities to your dashboard. After checking the box and refreshing, 
you&#8217;ll
+see a <code class="docutils literal"><span class="pre">from</span></code> and 
a <code class="docutils literal"><span class="pre">to</span></code> dropdown 
show up.</p>
+<p>By default, the filtering will be applied to all the slices that are built
+on top of a datasource that shares the column name that the filter is based
+on. It&#8217;s also a requirement for that column to be checked as 
&#8220;filterable&#8221;
+in the column tab of the table editor.</p>
+<p>But what about if you don&#8217;t want certain widgets to get filtered on 
your
+dashboard? You can do that by editing your dashboard, and in the form,
+edit the <code class="docutils literal"><span class="pre">JSON</span> <span 
class="pre">Metadata</span></code> field, more specifically the
+<code class="docutils literal"><span 
class="pre">filter_immune_slices</span></code> key, that receives an array of 
sliceIds that should
+never be affected by any dashboard level filtering.</p>
+<p>..code:</p>
+<div class="highlight-default"><div class="highlight"><pre><span></span><span 
class="p">{</span>
+    <span class="s2">&quot;filter_immune_slices&quot;</span><span 
class="p">:</span> <span class="p">[</span><span class="mi">324</span><span 
class="p">,</span> <span class="mi">65</span><span class="p">,</span> <span 
class="mi">92</span><span class="p">],</span>
+    <span class="s2">&quot;expanded_slices&quot;</span><span 
class="p">:</span> <span class="p">{},</span>
+    <span class="s2">&quot;filter_immune_slice_fields&quot;</span><span 
class="p">:</span> <span class="p">{</span>
+        <span class="s2">&quot;177&quot;</span><span class="p">:</span> <span 
class="p">[</span><span class="s2">&quot;country_name&quot;</span><span 
class="p">,</span> <span class="s2">&quot;__from&quot;</span><span 
class="p">,</span> <span class="s2">&quot;__to&quot;</span><span 
class="p">],</span>
+        <span class="s2">&quot;32&quot;</span><span class="p">:</span> <span 
class="p">[</span><span class="s2">&quot;__from&quot;</span><span 
class="p">,</span> <span class="s2">&quot;__to&quot;</span><span 
class="p">]</span>
+    <span class="p">}</span>
+<span class="p">}</span>
+</pre></div>
+</div>
+<p>In the json blob above, slices 324, 65 and 92 won&#8217;t be affected by any
+dashboard level filtering.</p>
+<p>Now note the <code class="docutils literal"><span 
class="pre">filter_immune_slice_fields</span></code> key. This one allows you to
+be more specific and define for a specific slice_id, which filter fields
+should be disregarded.</p>
+<p>Note the use of the <code class="docutils literal"><span 
class="pre">__from</span></code> and <code class="docutils literal"><span 
class="pre">__to</span></code> keywords, those are reserved
+for dealing with the time boundary filtering mentioned above.</p>
+<p>But what happens with filtering when dealing with slices coming from
+different tables or databases? If the column name is shared, the filter will
+be applied, it&#8217;s as simple as that.</p>
+</div>
+<div class="section" 
id="why-does-fabmanager-or-superset-freezed-hung-not-responding-when-started-my-home-directory-is-nfs-mounted">
+<h2>Why does fabmanager or superset freezed/hung/not responding when started 
(my home directory is NFS mounted)?<a class="headerlink" 
href="#why-does-fabmanager-or-superset-freezed-hung-not-responding-when-started-my-home-directory-is-nfs-mounted"
 title="Permalink to this headline">¶</a></h2>
+<p>superset creates and uses an sqlite database at <code class="docutils 
literal"><span class="pre">~/.superset/superset.db</span></code>. Sqlite is 
known to <a class="reference external" 
href="https://www.sqlite.org/lockingv3.html";>don&#8217;t work well if used on 
NFS</a> due to broken file locking implementation on NFS.</p>
+<p>One work around is to create a symlink from ~/.superset to a directory 
located on a non-NFS partition.</p>
+<p>Another work around is to change where superset stores the sqlite database 
by adding <code class="docutils literal"><span 
class="pre">SQLALCHEMY_DATABASE_URI</span> <span class="pre">=</span> <span 
class="pre">'sqlite:////new/localtion/superset.db'</span></code> in 
superset_config.py (create the file if needed), then adding the directory where 
superset_config.py lives to PYTHONPATH environment variable (e.g. <code 
class="docutils literal"><span class="pre">export</span> <span 
class="pre">PYTHONPATH=/opt/logs/sandbox/airbnb/</span></code>).</p>
+</div>
+<div class="section" id="how-do-i-add-new-columns-to-an-existing-table">
+<h2>How do I add new columns to an existing table<a class="headerlink" 
href="#how-do-i-add-new-columns-to-an-existing-table" title="Permalink to this 
headline">¶</a></h2>
+<p>Table schemas evolve, and Superset needs to reflect that. It&#8217;s pretty 
common
+in the life cycle of a dashboard to want to add a new dimension or metric.
+To get Superset to discover your new columns, all you have to do is to
+go to <code class="docutils literal"><span class="pre">Menu</span> <span 
class="pre">-&gt;</span> <span class="pre">Sources</span> <span 
class="pre">-&gt;</span> <span class="pre">Tables</span></code>, click the 
<code class="docutils literal"><span class="pre">edit</span></code> icon next 
to the
+table who&#8217;s schema has changed, and hit <code class="docutils 
literal"><span class="pre">Save</span></code> from the <code class="docutils 
literal"><span class="pre">Detail</span></code> tab.
+Behind the scene, the new columns will get merged it. Following this,
+you may want to
+re-edit the table afterwards to configure the <code class="docutils 
literal"><span class="pre">Column</span></code> tab, check the
+appropriate boxes and save again.</p>
+</div>
+<div class="section" 
id="how-do-i-go-about-developing-a-new-visualization-type">
+<h2>How do I go about developing a new visualization type?<a 
class="headerlink" 
href="#how-do-i-go-about-developing-a-new-visualization-type" title="Permalink 
to this headline">¶</a></h2>
+<p>Here&#8217;s an example as a Github PR with comments that describe what the
+different sections of the code do:
+<a class="reference external" 
href="https://github.com/airbnb/superset/pull/3013";>https://github.com/airbnb/superset/pull/3013</a></p>
+</div>
+</div>
+
+
+           </div>
+          </div>
+          <footer>
+  
+    <div class="rst-footer-buttons" role="navigation" aria-label="footer 
navigation">
+      
+      
+        <a href="druid.html" class="btn btn-neutral" title="Druid" 
accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous</a>
+      
+    </div>
+  
+
+  <hr/>
+
+  <div role="contentinfo">
+    <p>
+
+    </p>
+  </div>
+  Built with <a href="http://sphinx-doc.org/";>Sphinx</a> using a <a 
href="https://github.com/snide/sphinx_rtd_theme";>theme</a> provided by <a 
href="https://readthedocs.org";>Read the Docs</a>. 
+
+</footer>
+
+        </div>
+      </div>
+
+    </section>
+
+  </div>
+  
+
+
+  
+
+    <script type="text/javascript">
+        var DOCUMENTATION_OPTIONS = {
+            URL_ROOT:'./',
+            VERSION:'',
+            COLLAPSE_INDEX:false,
+            FILE_SUFFIX:'.html',
+            HAS_SOURCE:  true
+        };
+    </script>
+      <script type="text/javascript" src="_static/jquery.js"></script>
+      <script type="text/javascript" src="_static/underscore.js"></script>
+      <script type="text/javascript" src="_static/doctools.js"></script>
+
+  
+
+  
+  
+    <script type="text/javascript" src="_static/js/theme.js"></script>
+  
+
+  
+  
+  <script type="text/javascript">
+      jQuery(function () {
+          SphinxRtdTheme.StickyNav.enable();
+      });
+  </script>
+   
+
+</body>
+</html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-superset-site/blob/886f04b0/gallery.html
----------------------------------------------------------------------
diff --git a/gallery.html b/gallery.html
new file mode 100644
index 0000000..3ccdb87
--- /dev/null
+++ b/gallery.html
@@ -0,0 +1,235 @@
+
+
+<!DOCTYPE html>
+<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
+<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
+<head>
+  <meta charset="utf-8">
+  
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  
+  <title>Gallery &mdash; Superset&#39;s documentation  documentation</title>
+  
+
+  
+  
+
+  
+
+  
+  
+    
+
+  
+
+  
+  
+    <link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
+  
+
+  
+
+  
+        <link rel="index" title="Index"
+              href="genindex.html"/>
+        <link rel="search" title="Search" href="search.html"/>
+    <link rel="top" title="Superset&#39;s documentation  documentation" 
href="index.html"/>
+        <link rel="next" title="Druid" href="druid.html"/>
+        <link rel="prev" title="Videos" href="videos.html"/> 
+
+  
+  <script src="_static/js/modernizr.min.js"></script>
+
+</head>
+
+<body class="wy-body-for-nav" role="document">
+
+  <div class="wy-grid-for-nav">
+
+    
+    <nav data-toggle="wy-nav-shift" class="wy-nav-side">
+      <div class="wy-side-scroll">
+        <div class="wy-side-nav-search">
+          
+
+          
+            <a href="index.html" class="icon icon-home"> Superset's 
documentation
+          
+
+          
+          </a>
+
+          
+            
+            
+          
+
+          
+<div role="search">
+  <form id="rtd-search-form" class="wy-form" action="search.html" method="get">
+    <input type="text" name="q" placeholder="Search docs" />
+    <input type="hidden" name="check_keywords" value="yes" />
+    <input type="hidden" name="area" value="default" />
+  </form>
+</div>
+
+          
+        </div>
+
+        <div class="wy-menu wy-menu-vertical" data-spy="affix" 
role="navigation" aria-label="main navigation">
+          
+            
+            
+                <ul class="current">
+<li class="toctree-l1"><a class="reference internal" 
href="installation.html">Installation &amp; Configuration</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="tutorial.html">Tutorial for Superset Administrators</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="security.html">Security</a></li>
+<li class="toctree-l1"><a class="reference internal" href="sqllab.html">SQL 
Lab</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="visualization.html">Visualization Tools</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="videos.html">Videos</a></li>
+<li class="toctree-l1 current"><a class="current reference internal" 
href="#">Gallery</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="druid.html">Druid</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="faq.html">FAQ</a></li>
+</ul>
+
+            
+          
+        </div>
+      </div>
+    </nav>
+
+    <section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">
+
+      
+      <nav class="wy-nav-top" role="navigation" aria-label="top navigation">
+        <i data-toggle="wy-nav-top" class="fa fa-bars"></i>
+        <a href="index.html">Superset's documentation</a>
+      </nav>
+
+
+      
+      <div class="wy-nav-content">
+        <div class="rst-content">
+          
+
+ 
+
+
+
+<div role="navigation" aria-label="breadcrumbs navigation">
+  <ul class="wy-breadcrumbs">
+    <li><a href="index.html">Docs</a> &raquo;</li>
+      
+    <li>Gallery</li>
+      <li class="wy-breadcrumbs-aside">
+        
+          
+        
+      </li>
+  </ul>
+  <hr/>
+</div>
+          <div role="main" class="document" itemscope="itemscope" 
itemtype="http://schema.org/Article";>
+           <div itemprop="articleBody">
+            
+  <div class="section" id="gallery">
+<h1>Gallery<a class="headerlink" href="#gallery" title="Permalink to this 
headline">¶</a></h1>
+<a class="reference internal image-reference" href="_images/line.png"><img 
alt="_images/line.png" src="_images/line.png" style="width: 256.0px; height: 
256.0px;" /></a>
+<a class="reference internal image-reference" href="_images/bubble.png"><img 
alt="_images/bubble.png" src="_images/bubble.png" style="width: 256.0px; 
height: 256.0px;" /></a>
+<a class="reference internal image-reference" href="_images/table.png"><img 
alt="_images/table.png" src="_images/table.png" style="width: 256.0px; height: 
256.0px;" /></a>
+<a class="reference internal image-reference" href="_images/pie.png"><img 
alt="_images/pie.png" src="_images/pie.png" style="width: 256.0px; height: 
256.0px;" /></a>
+<a class="reference internal image-reference" href="_images/bar.png"><img 
alt="_images/bar.png" src="_images/bar.png" style="width: 256.0px; height: 
256.0px;" /></a>
+<a class="reference internal image-reference" 
href="_images/world_map.png"><img alt="_images/world_map.png" 
src="_images/world_map.png" style="width: 256.0px; height: 256.0px;" /></a>
+<a class="reference internal image-reference" href="_images/sankey.png"><img 
alt="_images/sankey.png" src="_images/sankey.png" style="width: 256.0px; 
height: 256.0px;" /></a>
+<a class="reference internal image-reference" 
href="_images/word_cloud.png"><img alt="_images/word_cloud.png" 
src="_images/word_cloud.png" style="width: 256.0px; height: 256.0px;" /></a>
+<a class="reference internal image-reference" 
href="_images/filter_box.png"><img alt="_images/filter_box.png" 
src="_images/filter_box.png" style="width: 256.0px; height: 256.0px;" /></a>
+<a class="reference internal image-reference" 
href="_images/pivot_table.png"><img alt="_images/pivot_table.png" 
src="_images/pivot_table.png" style="width: 256.0px; height: 256.0px;" /></a>
+<a class="reference internal image-reference" 
href="_images/directed_force.png"><img alt="_images/directed_force.png" 
src="_images/directed_force.png" style="width: 256.0px; height: 256.0px;" /></a>
+<a class="reference internal image-reference" href="_images/compare.png"><img 
alt="_images/compare.png" src="_images/compare.png" style="width: 256.0px; 
height: 256.0px;" /></a>
+<a class="reference internal image-reference" href="_images/sunburst.png"><img 
alt="_images/sunburst.png" src="_images/sunburst.png" style="width: 256.0px; 
height: 256.0px;" /></a>
+<a class="reference internal image-reference" href="_images/area.png"><img 
alt="_images/area.png" src="_images/area.png" style="width: 256.0px; height: 
256.0px;" /></a>
+<a class="reference internal image-reference" 
href="_images/big_number.png"><img alt="_images/big_number.png" 
src="_images/big_number.png" style="width: 256.0px; height: 256.0px;" /></a>
+<a class="reference internal image-reference" 
href="_images/big_number_total.png"><img alt="_images/big_number_total.png" 
src="_images/big_number_total.png" style="width: 256.0px; height: 256.0px;" 
/></a>
+<a class="reference internal image-reference" href="_images/bullet.png"><img 
alt="_images/bullet.png" src="_images/bullet.png" style="width: 256.0px; 
height: 256.0px;" /></a>
+<a class="reference internal image-reference" href="_images/dist_bar.png"><img 
alt="_images/dist_bar.png" src="_images/dist_bar.png" style="width: 256.0px; 
height: 256.0px;" /></a>
+<a class="reference internal image-reference" href="_images/heatmap.png"><img 
alt="_images/heatmap.png" src="_images/heatmap.png" style="width: 256.0px; 
height: 256.0px;" /></a>
+<a class="reference internal image-reference" href="_images/markup.png"><img 
alt="_images/markup.png" src="_images/markup.png" style="width: 256.0px; 
height: 256.0px;" /></a>
+<a class="reference internal image-reference" href="_images/para.png"><img 
alt="_images/para.png" src="_images/para.png" style="width: 256.0px; height: 
256.0px;" /></a>
+<a class="reference internal image-reference" href="_images/iframe.png"><img 
alt="_images/iframe.png" src="_images/iframe.png" style="width: 256.0px; 
height: 256.0px;" /></a>
+<a class="reference internal image-reference" href="_images/box_plot.png"><img 
alt="_images/box_plot.png" src="_images/box_plot.png" style="width: 256.0px; 
height: 256.0px;" /></a>
+<a class="reference internal image-reference" href="_images/treemap.png"><img 
alt="_images/treemap.png" src="_images/treemap.png" style="width: 256.0px; 
height: 256.0px;" /></a>
+<a class="reference internal image-reference" 
href="_images/cal_heatmap.png"><img alt="_images/cal_heatmap.png" 
src="_images/cal_heatmap.png" style="width: 187.75px; height: 187.75px;" /></a>
+<a class="reference internal image-reference" href="_images/horizon.png"><img 
alt="_images/horizon.png" src="_images/horizon.png" style="width: 256.0px; 
height: 256.0px;" /></a>
+<a class="reference internal image-reference" href="_images/mapbox.png"><img 
alt="_images/mapbox.png" src="_images/mapbox.png" style="width: 125.0px; 
height: 125.0px;" /></a>
+<a class="reference internal image-reference" 
href="_images/separator.png"><img alt="_images/separator.png" 
src="_images/separator.png" style="width: 256.0px; height: 256.0px;" /></a>
+<a class="reference internal image-reference" 
href="_images/histogram.png"><img alt="_images/histogram.png" 
src="_images/histogram.png" style="width: 256.0px; height: 256.0px;" /></a>
+</div>
+
+
+           </div>
+          </div>
+          <footer>
+  
+    <div class="rst-footer-buttons" role="navigation" aria-label="footer 
navigation">
+      
+        <a href="druid.html" class="btn btn-neutral float-right" title="Druid" 
accesskey="n">Next <span class="fa fa-arrow-circle-right"></span></a>
+      
+      
+        <a href="videos.html" class="btn btn-neutral" title="Videos" 
accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous</a>
+      
+    </div>
+  
+
+  <hr/>
+
+  <div role="contentinfo">
+    <p>
+
+    </p>
+  </div>
+  Built with <a href="http://sphinx-doc.org/";>Sphinx</a> using a <a 
href="https://github.com/snide/sphinx_rtd_theme";>theme</a> provided by <a 
href="https://readthedocs.org";>Read the Docs</a>. 
+
+</footer>
+
+        </div>
+      </div>
+
+    </section>
+
+  </div>
+  
+
+
+  
+
+    <script type="text/javascript">
+        var DOCUMENTATION_OPTIONS = {
+            URL_ROOT:'./',
+            VERSION:'',
+            COLLAPSE_INDEX:false,
+            FILE_SUFFIX:'.html',
+            HAS_SOURCE:  true
+        };
+    </script>
+      <script type="text/javascript" src="_static/jquery.js"></script>
+      <script type="text/javascript" src="_static/underscore.js"></script>
+      <script type="text/javascript" src="_static/doctools.js"></script>
+
+  
+
+  
+  
+    <script type="text/javascript" src="_static/js/theme.js"></script>
+  
+
+  
+  
+  <script type="text/javascript">
+      jQuery(function () {
+          SphinxRtdTheme.StickyNav.enable();
+      });
+  </script>
+   
+
+</body>
+</html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-superset-site/blob/886f04b0/genindex.html
----------------------------------------------------------------------
diff --git a/genindex.html b/genindex.html
new file mode 100644
index 0000000..36af928
--- /dev/null
+++ b/genindex.html
@@ -0,0 +1,221 @@
+
+
+
+<!DOCTYPE html>
+<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
+<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
+<head>
+  <meta charset="utf-8">
+  
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  
+  <title>Index &mdash; Superset&#39;s documentation  documentation</title>
+  
+
+  
+  
+
+  
+
+  
+  
+    
+
+  
+
+  
+  
+    <link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
+  
+
+  
+
+  
+        <link rel="index" title="Index"
+              href="#"/>
+        <link rel="search" title="Search" href="search.html"/>
+    <link rel="top" title="Superset&#39;s documentation  documentation" 
href="index.html"/> 
+
+  
+  <script src="_static/js/modernizr.min.js"></script>
+
+</head>
+
+<body class="wy-body-for-nav" role="document">
+
+  <div class="wy-grid-for-nav">
+
+    
+    <nav data-toggle="wy-nav-shift" class="wy-nav-side">
+      <div class="wy-side-scroll">
+        <div class="wy-side-nav-search">
+          
+
+          
+            <a href="index.html" class="icon icon-home"> Superset's 
documentation
+          
+
+          
+          </a>
+
+          
+            
+            
+          
+
+          
+<div role="search">
+  <form id="rtd-search-form" class="wy-form" action="search.html" method="get">
+    <input type="text" name="q" placeholder="Search docs" />
+    <input type="hidden" name="check_keywords" value="yes" />
+    <input type="hidden" name="area" value="default" />
+  </form>
+</div>
+
+          
+        </div>
+
+        <div class="wy-menu wy-menu-vertical" data-spy="affix" 
role="navigation" aria-label="main navigation">
+          
+            
+            
+                <ul>
+<li class="toctree-l1"><a class="reference internal" 
href="installation.html">Installation &amp; Configuration</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="tutorial.html">Tutorial for Superset Administrators</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="security.html">Security</a></li>
+<li class="toctree-l1"><a class="reference internal" href="sqllab.html">SQL 
Lab</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="visualization.html">Visualization Tools</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="videos.html">Videos</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="gallery.html">Gallery</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="druid.html">Druid</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="faq.html">FAQ</a></li>
+</ul>
+
+            
+          
+        </div>
+      </div>
+    </nav>
+
+    <section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">
+
+      
+      <nav class="wy-nav-top" role="navigation" aria-label="top navigation">
+        <i data-toggle="wy-nav-top" class="fa fa-bars"></i>
+        <a href="index.html">Superset's documentation</a>
+      </nav>
+
+
+      
+      <div class="wy-nav-content">
+        <div class="rst-content">
+          
+
+
+
+
+
+<div role="navigation" aria-label="breadcrumbs navigation">
+  <ul class="wy-breadcrumbs">
+    <li><a href="index.html">Docs</a> &raquo;</li>
+      
+    <li>Index</li>
+      <li class="wy-breadcrumbs-aside">
+        
+          
+        
+      </li>
+  </ul>
+  <hr/>
+</div>
+          <div role="main" class="document" itemscope="itemscope" 
itemtype="http://schema.org/Article";>
+           <div itemprop="articleBody">
+            
+
+<h1 id="index">Index</h1>
+
+<div class="genindex-jumpbox">
+ <a href="#P"><strong>P</strong></a>
+ | <a href="#U"><strong>U</strong></a>
+ 
+</div>
+<h2 id="P">P</h2>
+<table style="width: 100%" class="indextable genindextable"><tr>
+  <td style="width: 33%" valign="top"><dl>
+      
+  <dt><a 
href="sqllab.html#superset.jinja_context.PrestoTemplateProcessor">PrestoTemplateProcessor
 (class in superset.jinja_context)</a>
+  </dt>
+
+  </dl></td>
+</tr></table>
+
+<h2 id="U">U</h2>
+<table style="width: 100%" class="indextable genindextable"><tr>
+  <td style="width: 33%" valign="top"><dl>
+      
+  <dt><a href="sqllab.html#superset.jinja_context.url_param">url_param() (in 
module superset.jinja_context)</a>
+  </dt>
+
+  </dl></td>
+</tr></table>
+
+
+
+           </div>
+          </div>
+          <footer>
+  
+
+  <hr/>
+
+  <div role="contentinfo">
+    <p>
+
+    </p>
+  </div>
+  Built with <a href="http://sphinx-doc.org/";>Sphinx</a> using a <a 
href="https://github.com/snide/sphinx_rtd_theme";>theme</a> provided by <a 
href="https://readthedocs.org";>Read the Docs</a>. 
+
+</footer>
+
+        </div>
+      </div>
+
+    </section>
+
+  </div>
+  
+
+
+  
+
+    <script type="text/javascript">
+        var DOCUMENTATION_OPTIONS = {
+            URL_ROOT:'./',
+            VERSION:'',
+            COLLAPSE_INDEX:false,
+            FILE_SUFFIX:'.html',
+            HAS_SOURCE:  true
+        };
+    </script>
+      <script type="text/javascript" src="_static/jquery.js"></script>
+      <script type="text/javascript" src="_static/underscore.js"></script>
+      <script type="text/javascript" src="_static/doctools.js"></script>
+
+  
+
+  
+  
+    <script type="text/javascript" src="_static/js/theme.js"></script>
+  
+
+  
+  
+  <script type="text/javascript">
+      jQuery(function () {
+          SphinxRtdTheme.StickyNav.enable();
+      });
+  </script>
+   
+
+</body>
+</html>
\ No newline at end of file

Reply via email to