Author: buildbot Date: Sat Aug 9 16:07:47 2014 New Revision: 918851 Log: Staging update by buildbot for drill
Modified: websites/staging/drill/trunk/content/ (props changed) websites/staging/drill/trunk/content/drill/download.html Propchange: websites/staging/drill/trunk/content/ ------------------------------------------------------------------------------ --- cms:source-revision (original) +++ cms:source-revision Sat Aug 9 16:07:47 2014 @@ -1 +1 @@ -1616978 +1616979 Modified: websites/staging/drill/trunk/content/drill/download.html ============================================================================== --- websites/staging/drill/trunk/content/drill/download.html (original) +++ websites/staging/drill/trunk/content/drill/download.html Sat Aug 9 16:07:47 2014 @@ -1,157 +1,157 @@ -<!doctype html> -<html> - <head> - <meta charset="UTF-8"> - <title>Apache Drill - Download Apache Drill</title> - - <link href="css/style.css" rel="stylesheet" type="text/css"> - <link href="css/arrows.css" rel="stylesheet" type="text/css"> - <link href="css/button.css" rel="stylesheet" type="text/css"> - - <script language="javascript" type="text/javascript" src="js/lib/jquery-1.11.1.min.js"></script> - <script language="javascript" type="text/javascript" src="js/lib/jquery.easing.1.3.js"></script> - <script language="javascript" type="text/javascript" src="js/modernizr.custom.js"></script> - <script language="javascript" type="text/javascript" src="js/script.js"></script> - - </head> - - <body onResize="resized();"> - - <div class="bui"></div> - - <div id="search"> - <input type="text" placeholder="Enter search term here"> - </div> - - <div id="menu" class="mw"> - - <ul> - <li class="logo"><a href="/drill/index.html"></a></li> - - <li> - <a href="https://cwiki.apache.org/confluence/display/DRILL/Apache+Drill+Wiki" target="_blank">Documentation</a> - <ul> - <li><a href="overview.html">Overview</a></li> - <li><a href="https://cwiki.apache.org/confluence/display/DRILL/Apache+Drill+in+10+Minutes" target="_blank">Drill in 10 minutes</a></li> - <li><a href="https://cwiki.apache.org/confluence/display/DRILL/Connecting+to+Data+Sources#ConnectingtoDataSources-QueryingaFileSystem" target="_blank">Query Files</a></li> - <li><a href="https://cwiki.apache.org/confluence/display/DRILL/Connecting+to+Data+Sources#ConnectingtoDataSources-QueryingHBaseTables" target="_blank">Query HBase</a></li> - <li><a href="https://cwiki.apache.org/confluence/display/DRILL/Connecting+to+Data+Sources#ConnectingtoDataSources-QueryingHiveTables" target="_blank">Query Hive</a></li> - <li><a href="https://cwiki.apache.org/confluence/display/DRILL/SQL+Overview" target="_blank">SQL Support</a></li> <li><a href="architecture.html">Architecture</a></li> - </ul> - </li> - <li> - <a href="community.html">Community</a> - <ul> - <li><a href="community.html#events">Events and Meetups</a></li> - <li><a href="community.html#mailinglists">Mailing Lists</a></li> - <li><a href="community.html#getinvolved">Get Involved</a></li> - <li><a href="https://issues.apache.org/jira/browse/DRILL/" target="_blank">Issue Tracker</a></li> - <li><a href="https://github.com/apache/incubator-drill" target="_blank">Github</a></li> - </ul> - </li> - <li><a href="faq.html">FAQ</a></li> - - <li class="l"><span> </span></li> - <li class="d"><a href="download.html">Download</a></li> - </ul> - - </div> - - <div class="int_title int_title_img download"> - <h1>Download Apache Drill</h1> - </div> - - <div class="int_text download"> - - <h2>The latest release is Drill 0.4, released August 8, 2014</h2> - <br> - - <table> - <tr> - <td><a href="http://www.apache.org/dyn/closer.cgi/incubator/drill/drill-0.4.0-incubating/apache-drill-0.4.0-incubating.tar.gz" class="find" id="apachemirror">FIND AN APACHE MIRROR</a></td> - <td><a href="http://getdrill.org/drill/download/apache-drill-0.4.0-incubating.tar.gz" class="dl" id="directdownload">DIRECT FILE DOWNLOAD</a></td> - <td><a href="http://package.mapr.com/labs/drill/tools/" class="dl">ODBC DRIVERS FOR DRILL</a></td> - </tr> - </table> - - <h2>Release Notes</h2> - <p><a href="https://cwiki.apache.org/confluence/display/DRILL/Apache+Drill+0.4.0+Release+Notes" target="_new">Click here</a></p> - - <h2>Github Tag</h2> - <p><a href="https://github.com/apache/incubator-drill/tree/0.4.0-incubating" target="_new">Click here</a></p> - - </div> - - <div id="footer" class="mw"> - <div class="wrapper"> - Copyright © 2012 The Apache Software Foundation, licensed under the Apache License, Version 2.0.<br> -Apache Incubator, Apache, and the Apache feather logo are trademarks of The Apache Software Foundation. Other names appearing on the site may be trademarks of their respective owners.<br> - <br> - <strong>DISCLAIMER</strong><br> -Apache Drill is an effort undergoing incubation at The Apache Software Foundation sponsored by the Apache Incubator PMC. Incubation is required of all newly accepted projects until a further<br> -review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not<br>necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF. - </div> - </div> - - <script> - (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ - (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), - m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) - })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); - - ga('create', 'UA-53379651-1', 'auto'); - ga('send', 'pageview'); - - </script> - - <script type="text/javascript"> - - var downloadLink = document.getElementById('apachemirror'); - addListener(downloadLink, 'click', function() { - ga('send', 'event', 'button', 'click', 'download'); - }); - - - /** - * Utility to wrap the different behaviors between W3C-compliant browsers - * and IE when adding event handlers. - * - * @param {Object} element Object on which to attach the event listener. - * @param {string} type A string representing the event type to listen for - * (e.g. load, click, etc.). - * @param {function()} callback The function that receives the notification. - */ - function addListener(element, type, callback) { - if (element.addEventListener) element.addEventListener(type, callback); - else if (element.attachEvent) element.attachEvent('on' + type, callback); - } - - </script> - - - <script type="text/javascript"> - - var downloadLinkdirect = document.getElementById('directdownload'); - addListener(downloadLinkdirect, 'click', function() { - ga('send', 'event', 'buttondirect', 'clickdirect', 'downloaddirect'); - }); - - - /** - * Utility to wrap the different behaviors between W3C-compliant browsers - * and IE when adding event handlers. - * - * @param {Object} element Object on which to attach the event listener. - * @param {string} type A string representing the event type to listen for - * (e.g. load, click, etc.). - * @param {function()} callback The function that receives the notification. - */ - function addListener(element, type, callback) { - if (element.addEventListener) element.addEventListener(type, callback); - else if (element.attachEvent) element.attachEvent('on' + type, callback); - } - - </script> - - </body> -</html> +<!doctype html> +<html> + <head> + <meta charset="UTF-8"> + <title>Apache Drill - Download Apache Drill</title> + + <link href="css/style.css" rel="stylesheet" type="text/css"> + <link href="css/arrows.css" rel="stylesheet" type="text/css"> + <link href="css/button.css" rel="stylesheet" type="text/css"> + + <script language="javascript" type="text/javascript" src="js/lib/jquery-1.11.1.min.js"></script> + <script language="javascript" type="text/javascript" src="js/lib/jquery.easing.1.3.js"></script> + <script language="javascript" type="text/javascript" src="js/modernizr.custom.js"></script> + <script language="javascript" type="text/javascript" src="js/script.js"></script> + + </head> + + <body onResize="resized();"> + + <div class="bui"></div> + + <div id="search"> + <input type="text" placeholder="Enter search term here"> + </div> + + <div id="menu" class="mw"> + + <ul> + <li class="logo"><a href="/drill/index.html"></a></li> + + <li> + <a href="https://cwiki.apache.org/confluence/display/DRILL/Apache+Drill+Wiki" target="_blank">Documentation</a> + <ul> + <li><a href="overview.html">Overview</a></li> + <li><a href="https://cwiki.apache.org/confluence/display/DRILL/Apache+Drill+in+10+Minutes" target="_blank">Drill in 10 minutes</a></li> + <li><a href="https://cwiki.apache.org/confluence/display/DRILL/Connecting+to+Data+Sources#ConnectingtoDataSources-QueryingaFileSystem" target="_blank">Query Files</a></li> + <li><a href="https://cwiki.apache.org/confluence/display/DRILL/Connecting+to+Data+Sources#ConnectingtoDataSources-QueryingHBaseTables" target="_blank">Query HBase</a></li> + <li><a href="https://cwiki.apache.org/confluence/display/DRILL/Connecting+to+Data+Sources#ConnectingtoDataSources-QueryingHiveTables" target="_blank">Query Hive</a></li> + <li><a href="https://cwiki.apache.org/confluence/display/DRILL/SQL+Overview" target="_blank">SQL Support</a></li> <li><a href="architecture.html">Architecture</a></li> + </ul> + </li> + <li> + <a href="community.html">Community</a> + <ul> + <li><a href="community.html#events">Events and Meetups</a></li> + <li><a href="community.html#mailinglists">Mailing Lists</a></li> + <li><a href="community.html#getinvolved">Get Involved</a></li> + <li><a href="https://issues.apache.org/jira/browse/DRILL/" target="_blank">Issue Tracker</a></li> + <li><a href="https://github.com/apache/incubator-drill" target="_blank">Github</a></li> + </ul> + </li> + <li><a href="faq.html">FAQ</a></li> + + <li class="l"><span> </span></li> + <li class="d"><a href="download.html">Download</a></li> + </ul> + + </div> + + <div class="int_title int_title_img download"> + <h1>Download Apache Drill</h1> + </div> + + <div class="int_text download"> + + <h2>The latest release is Drill 0.4, released August 8, 2014</h2> + <br> + + <table> + <tr> + <td><a href="http://www.apache.org/dyn/closer.cgi/incubator/drill/drill-0.4.0-incubating/apache-drill-0.4.0-incubating.tar.gz" class="find" id="apachemirror">FIND AN APACHE MIRROR</a></td> + <td><a href="http://getdrill.org/drill/download/apache-drill-0.4.0-incubating.tar.gz" class="dl" id="directdownload">DIRECT FILE DOWNLOAD</a></td> + <td><a href="http://package.mapr.com/labs/drill/tools/" class="dl">ODBC DRIVERS FOR DRILL</a></td> + </tr> + </table> + + <h2>Release Notes</h2> + <p><a href="https://cwiki.apache.org/confluence/display/DRILL/Apache+Drill+0.4.0+Release+Notes">Click here</a></p> + + <h2>Fork it on Github</h2> + <p><a href="https://github.com/apache/incubator-drill/tree/0.4.0-incubating">Click here</a></p> + + </div> + + <div id="footer" class="mw"> + <div class="wrapper"> + Copyright © 2012 The Apache Software Foundation, licensed under the Apache License, Version 2.0.<br> +Apache Incubator, Apache, and the Apache feather logo are trademarks of The Apache Software Foundation. Other names appearing on the site may be trademarks of their respective owners.<br> + <br> + <strong>DISCLAIMER</strong><br> +Apache Drill is an effort undergoing incubation at The Apache Software Foundation sponsored by the Apache Incubator PMC. Incubation is required of all newly accepted projects until a further<br> +review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not<br>necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF. + </div> + </div> + + <script> + (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ + (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), + m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) + })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); + + ga('create', 'UA-53379651-1', 'auto'); + ga('send', 'pageview'); + + </script> + + <script type="text/javascript"> + + var downloadLink = document.getElementById('apachemirror'); + addListener(downloadLink, 'click', function() { + ga('send', 'event', 'button', 'click', 'download'); + }); + + + /** + * Utility to wrap the different behaviors between W3C-compliant browsers + * and IE when adding event handlers. + * + * @param {Object} element Object on which to attach the event listener. + * @param {string} type A string representing the event type to listen for + * (e.g. load, click, etc.). + * @param {function()} callback The function that receives the notification. + */ + function addListener(element, type, callback) { + if (element.addEventListener) element.addEventListener(type, callback); + else if (element.attachEvent) element.attachEvent('on' + type, callback); + } + + </script> + + + <script type="text/javascript"> + + var downloadLinkdirect = document.getElementById('directdownload'); + addListener(downloadLinkdirect, 'click', function() { + ga('send', 'event', 'buttondirect', 'clickdirect', 'downloaddirect'); + }); + + + /** + * Utility to wrap the different behaviors between W3C-compliant browsers + * and IE when adding event handlers. + * + * @param {Object} element Object on which to attach the event listener. + * @param {string} type A string representing the event type to listen for + * (e.g. load, click, etc.). + * @param {function()} callback The function that receives the notification. + */ + function addListener(element, type, callback) { + if (element.addEventListener) element.addEventListener(type, callback); + else if (element.attachEvent) element.attachEvent('on' + type, callback); + } + + </script> + + </body> +</html>