Added: incubator/zeppelin/site/docs/zeppelincontext.html URL: http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/zeppelincontext.html?rev=1650869&view=auto ============================================================================== --- incubator/zeppelin/site/docs/zeppelincontext.html (added) +++ incubator/zeppelin/site/docs/zeppelincontext.html Sun Jan 11 04:30:31 2015 @@ -0,0 +1,295 @@ + +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <title>ZeppelinContext</title> + <meta name="description" content=""> + <meta name="author" content="The Apache Software Foundation"> + + <!-- Enable responsive viewport --> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + + <!-- Le HTML5 shim, for IE6-8 support of HTML elements --> + <!--[if lt IE 9]> + <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> + <![endif]--> + + <!-- Le styles --> + <link href="/assets/themes/zeppelin/bootstrap/css/bootstrap.css" rel="stylesheet"> + <link href="/assets/themes/zeppelin/css/style.css?body=1" rel="stylesheet" type="text/css"> + + <!-- Le fav and touch icons --> + <!-- Update these with your own images + <link rel="shortcut icon" href="images/favicon.ico"> + <link rel="apple-touch-icon" href="images/apple-touch-icon.png"> + <link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png"> + <link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png"> + --> + + <!-- atom & rss feed --> + <link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Sitewide ATOM Feed"> + <link href="/rss.xml" type="application/rss+xml" rel="alternate" title="Sitewide RSS Feed"> + </head> + + <body> + + <div class="navbar navbar-inverse navbar-fixed-top" role="navigation"> + <div class="container"> + <div class="navbar-header"> + <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> + <span class="sr-only">Toggle navigation</span> + <span class="icon-bar"></span> + <span class="icon-bar"></span> + <span class="icon-bar"></span> + </button> + <a class="navbar-brand" style="font-family: 'Patua One', cursive;" href="/"><img style="margin-top: -7px;s" src="/assets/themes/zeppelin/img/zeppelin_logo.png" width="50" alt="I'm zeppelin"> Zeppelin</a> + </div> + <nav class="navbar-collapse collapse" role="navigation"> + <ul class="nav navbar-nav"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + </ul> + <ul class="nav navbar-nav navbar-right"> + + + + + + + + + + + + + + <li><a href="/community.html">Community</a></li> + + + + + + + + + + + + + + + + + + + + + + + + <li><a href="/docs/index.html">Docs</a></li> + + + + + + + + + + + + + + + + + + + + <li><a href="/download.html">Download</a></li> + + + + + + + + + + + + + + + + + + + + + + + + <li><a href="https://github.com/NFLabs/zeppelin">GitHub</a></li> + </ul> + </nav><!--/.navbar-collapse --> + </div> + </div> + + + <div class="container"> + +<!--<div class="hero-unit ZeppelinContext"> + <h1></h1> +</div> +--> + +<div class="row"> + <div class="col-md-12"> + <h3>Zeppelin Context</h3> + +<p>ZeppelinContext is automatically created and injected into Scala language backend. +It provies following function and references.</p> + +<p><br /></p> + +<h4>SparkContext, SQLContext</h4> + +<p>ZeppelinContext provides reference to SparkContext and SQLContext with some shortcut function.</p> +<div class="highlight"><pre><code class="text language-text" data-lang="text">/* reference to SparkContext */ +z.sc + +/* reference to SQLContext */ +z.sqlContext + +/* Shortcut to z.sqlContext.sql() */ +z.sql("select * from ...") +</code></pre></div> +<p><br /></p> + +<h4>Dependency loader (Experimental)</h4> + +<p>ZeppelinContext provides series of functions that loads jar library from local FS or Remote Maven repository. Loaded library is automatically added into Scala interpreter and SparkContext.</p> +<div class="highlight"><pre><code class="text language-text" data-lang="text">/* Load a library from local FS */ +z.load("/path/to/your.jar") + +/* Load a library from Maven repository */ +z.load("groupId:artifactId:version") + +/* Load library from Maven repository with dependencies */ +z.load("groupId:artifactId:version", true) + +/* Load a library from Local FS and add it into SparkContext */ +z.loadAndDist("/path/to/your.jar") + +/* Load a library with dependencies from Maven repository and add it into SparkContext*/ +z.loadAndDist("groupId:artifactId:version") + +/* Load library with dependencies from maven repository and add it into SparkContext*/ +z.loadAndDist("groupId:artifactId:version", true) +</code></pre></div> +<p><br /></p> + +<h4>Form creation</h4> + +<p>ZeppelinContext also provides functions for creating forms. To learn more about dynamic form, checkout <a href="./dynamicform.html">Dynamic Form</a>.</p> +<div class="highlight"><pre><code class="text language-text" data-lang="text">/* Create text input form */ +z.input("formName") + +/* Create text input form with default value */ +z.input("formName", "defaultValue") + +/* Create select form */ +z.select("formName", Seq(("option1", "option1DisplayName"), + ("option2", "option2DisplayName"))) + +/* Create select form with default value*/ +z.select("formName", "option1", Seq(("option1", "option1DisplayName"), + ("option2", "option2DisplayName"))) +</code></pre></div> + </div> +</div> + + + <hr> + <footer> + <p>© 2015 The Apache Software Foundation</p> + </footer> + </div> + + + <script src="https://code.jquery.com/jquery-1.10.2.min.js"></script> + + <script src="/assets/themes/zeppelin/bootstrap/js/bootstrap.min.js"></script> + </body> +</html> +
Added: incubator/zeppelin/site/download.html URL: http://svn.apache.org/viewvc/incubator/zeppelin/site/download.html?rev=1650869&view=auto ============================================================================== --- incubator/zeppelin/site/download.html (added) +++ incubator/zeppelin/site/download.html Sun Jan 11 04:30:31 2015 @@ -0,0 +1,271 @@ + +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <title>Download</title> + <meta name="description" content=""> + <meta name="author" content="The Apache Software Foundation"> + + <!-- Enable responsive viewport --> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + + <!-- Le HTML5 shim, for IE6-8 support of HTML elements --> + <!--[if lt IE 9]> + <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> + <![endif]--> + + <!-- Le styles --> + <link href="/assets/themes/zeppelin/bootstrap/css/bootstrap.css" rel="stylesheet"> + <link href="/assets/themes/zeppelin/css/style.css?body=1" rel="stylesheet" type="text/css"> + + <!-- Le fav and touch icons --> + <!-- Update these with your own images + <link rel="shortcut icon" href="images/favicon.ico"> + <link rel="apple-touch-icon" href="images/apple-touch-icon.png"> + <link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png"> + <link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png"> + --> + + <!-- atom & rss feed --> + <link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Sitewide ATOM Feed"> + <link href="/rss.xml" type="application/rss+xml" rel="alternate" title="Sitewide RSS Feed"> + </head> + + <body> + + <div class="navbar navbar-inverse navbar-fixed-top" role="navigation"> + <div class="container"> + <div class="navbar-header"> + <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> + <span class="sr-only">Toggle navigation</span> + <span class="icon-bar"></span> + <span class="icon-bar"></span> + <span class="icon-bar"></span> + </button> + <a class="navbar-brand" style="font-family: 'Patua One', cursive;" href="/"><img style="margin-top: -7px;s" src="/assets/themes/zeppelin/img/zeppelin_logo.png" width="50" alt="I'm zeppelin"> Zeppelin</a> + </div> + <nav class="navbar-collapse collapse" role="navigation"> + <ul class="nav navbar-nav"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + </ul> + <ul class="nav navbar-nav navbar-right"> + + + + + + + + + + + + + + <li><a href="/community.html">Community</a></li> + + + + + + + + + + + + + + + + + + + + + + + + <li><a href="/docs/index.html">Docs</a></li> + + + + + + + + + + + + + + + + + + + + <li class="active"><a href="/download.html" class="active">Download</a></li> + + + + + + + + + + + + + + + + + + + + + + + + <li><a href="https://github.com/NFLabs/zeppelin">GitHub</a></li> + </ul> + </nav><!--/.navbar-collapse --> + </div> + </div> + + + <div class="container"> + +<!--<div class="hero-unit Download"> + <h1></h1> +</div> +--> + +<div class="row"> + <div class="col-md-12"> + <h3>Build from source</h3> + +<p>Check <a href="./docs/install/install.html">install</a>.</p> + +<h3>Current binary release</h3> + +<p>We will provide binary release pretty soon. Until then, please build your own. It's not that difficult.</p> + +<p>For install and configure, check <a href="./docs/install/install.html">install</a>.</p> + +<!-- +------------- +### Old release + +##### Zeppelin-0.3.3 (2014.03.29) + +Download <a onclick="ga('send', 'event', 'download', 'zeppelin', '0.3.3');" href="https://s3-ap-northeast-1.amazonaws.com/zeppel.in/zeppelin-0.3.3.tar.gz">zeppelin-0.3.3.tar.gz</a> ([release note](https://zeppelin-project.atlassian.net/secure/ReleaseNote.jspa?projectId=10001&version=10301)) + + +##### Zeppelin-0.3.2 (2014.03.14) + +Download <a onclick="ga('send', 'event', 'download', 'zeppelin', '0.3.2');" href="https://s3-ap-northeast-1.amazonaws.com/zeppel.in/zeppelin-0.3.2.tar.gz">zeppelin-0.3.2.tar.gz</a> ([release note](https://zeppelin-project.atlassian.net/secure/ReleaseNote.jspa?projectId=10001&version=10300)) + +##### Zeppelin-0.3.1 (2014.03.06) + +Download <a onclick="ga('send', 'event', 'download', 'zeppelin', '0.3.1');" href="https://s3-ap-northeast-1.amazonaws.com/zeppel.in/zeppelin-0.3.1.tar.gz">zeppelin-0.3.1.tar.gz</a> ([release note](https://zeppelin-project.atlassian.net/secure/ReleaseNote.jspa?projectId=10001&version=10201)) + +##### Zeppelin-0.3.0 (2014.02.07) + +Download <a onclick="ga('send', 'event', 'download', 'zeppelin', '0.3.0');" href="https://s3-ap-northeast-1.amazonaws.com/zeppel.in/zeppelin-0.3.0.tar.gz">zeppelin-0.3.0.tar.gz</a>, ([release note](https://zeppelin-project.atlassian.net/secure/ReleaseNote.jspa?projectId=10001&version=10200)) + +##### Zeppelin-0.2.0 (2014.01.22) + +Download Download <a onclick="ga('send', 'event', 'download', 'zeppelin', '0.2.0');" href="https://s3-ap-northeast-1.amazonaws.com/zeppel.in/zeppelin-0.2.0.tar.gz">zeppelin-0.2.0.tar.gz</a>, ([release note](https://zeppelin-project.atlassian.net/secure/ReleaseNote.jspa?projectId=10001&version=10001)) + +--> + + </div> +</div> + + + <hr> + <footer> + <p>© 2015 The Apache Software Foundation</p> + </footer> + </div> + + + <script src="https://code.jquery.com/jquery-1.10.2.min.js"></script> + + <script src="/assets/themes/zeppelin/bootstrap/js/bootstrap.min.js"></script> + </body> +</html> + Modified: incubator/zeppelin/site/index.html URL: http://svn.apache.org/viewvc/incubator/zeppelin/site/index.html?rev=1650869&r1=1650868&r2=1650869&view=diff ============================================================================== --- incubator/zeppelin/site/index.html (original) +++ incubator/zeppelin/site/index.html Sun Jan 11 04:30:31 2015 @@ -1,5 +1,343 @@ -<html> -<body> -Placeholder for Apache Zeppelin (incubating) website -</body> + +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <title>Zeppelin</title> + + <meta name="author" content="The Apache Software Foundation"> + + <!-- Enable responsive viewport --> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + + <!-- Le HTML5 shim, for IE6-8 support of HTML elements --> + <!--[if lt IE 9]> + <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> + <![endif]--> + + <!-- Le styles --> + <link href="/assets/themes/zeppelin/bootstrap/css/bootstrap.css" rel="stylesheet"> + <link href="/assets/themes/zeppelin/css/style.css?body=1" rel="stylesheet" type="text/css"> + + <!-- Le fav and touch icons --> + <!-- Update these with your own images + <link rel="shortcut icon" href="images/favicon.ico"> + <link rel="apple-touch-icon" href="images/apple-touch-icon.png"> + <link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png"> + <link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png"> + --> + + <!-- atom & rss feed --> + <link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Sitewide ATOM Feed"> + <link href="/rss.xml" type="application/rss+xml" rel="alternate" title="Sitewide RSS Feed"> + </head> + + <body> + + <div class="navbar navbar-inverse navbar-fixed-top" role="navigation"> + <div class="container"> + <div class="navbar-header"> + <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> + <span class="sr-only">Toggle navigation</span> + <span class="icon-bar"></span> + <span class="icon-bar"></span> + <span class="icon-bar"></span> + </button> + <a class="navbar-brand" style="font-family: 'Patua One', cursive;" href="/"><img style="margin-top: -7px;s" src="/assets/themes/zeppelin/img/zeppelin_logo.png" width="50" alt="I'm zeppelin"> Zeppelin</a> + </div> + <nav class="navbar-collapse collapse" role="navigation"> + <ul class="nav navbar-nav"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + </ul> + <ul class="nav navbar-nav navbar-right"> + + + + + + + + + + + + + + <li><a href="/community.html">Community</a></li> + + + + + + + + + + + + + + + + + + + + + + + + <li><a href="/docs/index.html">Docs</a></li> + + + + + + + + + + + + + + + + + + + + <li><a href="/download.html">Download</a></li> + + + + + + + + + + + + + + + + + + + + + + + + <li><a href="https://github.com/NFLabs/zeppelin">GitHub</a></li> + </ul> + </nav><!--/.navbar-collapse --> + </div> + </div> + +<div class="jumbotron"> + <div class="container"> + <h1 style="font-family: 'Patua One', cursive;">Zeppelin</h1> + <p> A web-based notebook that enables interactive data analytics. <br /> + You can make beautiful data-driven, interactive and collaborative documents with SQL, Scala and more. + </p> + <p><a href="http://youtu.be/_PQbVH_aO5E" target="_zeppelinVideo" class="btn btn-primary btn-lg" role="button">Watch the video</a> + <a href="./download.html" class="btn btn-primary btn-lg" role="button">Get Zeppelin</a></p> + </div> +</div> + + + <div class="container"> + +<!--<div class="hero-unit Zeppelin"> + <h1> <small>Less Development, More analysis!</small></h1> +</div> +--> + +<div class="row"> + <div class="col-md-12"> + <div class="row"> + <div class="col-md-5"> +<h2>Multi-purpose Notebook</h2> + +<p style="font-size:16px; color:#555555;font-style:italic;margin-bottom: 15px;">The Notebook is the place for all your needs</p> +<ul style="list-style-type: none;padding-left:10px;" > + <li style="font-size:20px; margin: 5px;"><span class="glyphicon glyphicon-import"></span> Data Ingestion</li> + <li style="font-size:20px; margin: 5px;"><span class="glyphicon glyphicon-eye-open"></span> Data Discovery</li> + <li style="font-size:20px; margin: 5px;"><span class="glyphicon glyphicon-wrench"></span> Data Analytics</li> + <li style="font-size:20px; margin: 5px;"><span class="glyphicon glyphicon-dashboard"></span> Data Visualization & Collaboration</li> +</ul> + + </div> + <div class="col-md-7"><img class="img-responsive" style="border: 1px solid #ecf0f1;" height="auto" src="assets/themes/zeppelin/img/notebook.png" /></div> +</div> + +<p><br /></p> + +<h3>Multiple language backend</h3> + +<p>Zeppelin interpreter concept allows any language/data-processing-backend to be plugged into Zeppelin. +Current languages included in the Zeppelin interpreter are: Scala(with Apache Spark), SparkSQL, Markdown and Shell.</p> + +<p><img src="assets/themes/zeppelin/img/screenshots/multiple_language_backend.png" /></p> + +<p>Adding new language-backend is really simple. Learn <a href="./docs/development/writingzeppelininterpreter.html">how to write a zeppelin interpreter</a>.</p> + +<p><br /></p> + +<h3>Apache Spark integration</h3> + +<p>Zeppelin provides built-in Apache Spark integration. You don't need to build a separate module, plugin or library for it.</p> + +<p><img src="assets/themes/zeppelin/img/spark_logo.jpg" width="80px" /></p> + +<p>Zeppelin's Spark integration provides</p> + +<ul> +<li>Automatic SparkContext and SQLContext injection</li> +<li>Runtime jar dependency loading from local filesystem or maven repository. Learn more about <a href="./docs/zeppelincontext.html">dependency loader</a>.</li> +<li>Canceling job and displaying its progress</li> +</ul> + +<p><br /></p> + +<h3>Data visualization</h3> + +<p>Some basic charts are already included in Zeppelin. Visualizations are not limited to SparkSQL's query, any output from any language backend can be recognized and visualized.</p> + +<div class="row"> + <div class="col-md-6"> + <img class="img-responsive" src="./assets/themes/zeppelin/img/graph1.png" /> + </div> + <div class="col-md-6"> + <img class="img-responsive" src="./assets/themes/zeppelin/img/graph2.png" /> + </div> +</div> + +<p>Learn more about Zeppelin's <a href="./docs/display.html">Display system</a>.</p> + +<p><br /></p> + +<h3>Dynamic forms</h3> + +<p>Zeppelin can dynamically create some input forms into your notebook.</p> + +<p><img src="./assets/themes/zeppelin/img/screenshots/form_input.png" /></p> + +<p>Learn more about <a href="./docs/dynamicform.html">Dynamic Forms</a>.</p> + +<p><br /></p> + +<h3>Collaboration</h3> + +<p>Notebook URL can be shared among collaborators. Zeppelin can then broadcast any changes in realtime, just like the collaboration in Google docs.</p> + +<p><img src="./assets/themes/zeppelin/img/screenshots/collaboration.png" /></p> + +<p><br /></p> + +<h3>Publish</h3> + +<p>Zeppelin provides an URL to display the result only, that page does not include Zeppelin's menu and buttons. +This way, you can easily embed it as an iframe inside of your website.</p> + +<div style="margin:auto;text-align:center;"> + <img src="./assets/themes/zeppelin/img/screenshots/publish.png" /> +</div> + +<p><br /></p> + +<h3>100% Opensource</h3> + +<p>Zeppelin is Apache2 Licensed software. Checkout the <a href="https://github.com/NFLabs/zeppelin">source repository</a> and <a href="./docs/development/howtocontribute.html">How to contribute</a></p> + +<p>Zeppelin has a very active development community. +Join the <a href="./community.html">Mailing list</a> and report issues on our <a href="https://zeppelin-project.atlassian.net/browse/ZEPPELIN">Issue tracker</a>.</p> + + </div> +</div> + + + <hr> + <footer> + <p>© 2015 The Apache Software Foundation</p> + </footer> + </div> + + + <script src="https://code.jquery.com/jquery-1.10.2.min.js"></script> + + <script src="/assets/themes/zeppelin/bootstrap/js/bootstrap.min.js"></script> + </body> </html> + Added: incubator/zeppelin/site/robot.txt URL: http://svn.apache.org/viewvc/incubator/zeppelin/site/robot.txt?rev=1650869&view=auto ============================================================================== (empty) Added: incubator/zeppelin/site/rss.xml URL: http://svn.apache.org/viewvc/incubator/zeppelin/site/rss.xml?rev=1650869&view=auto ============================================================================== --- incubator/zeppelin/site/rss.xml (added) +++ incubator/zeppelin/site/rss.xml Sun Jan 11 04:30:31 2015 @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<rss version="2.0"> +<channel> + <title>Zeppelin</title> + <description>Zeppelin - The Apache Software Foundation</description> + <link>http://zeppelin-project.org</link> + <link>http://zeppelin-project.org</link> + <lastBuildDate>2015-01-10T11:28:59+09:00</lastBuildDate> + <pubDate>2015-01-10T11:28:59+09:00</pubDate> + <ttl>1800</ttl> + + + +</channel> +</rss> Added: incubator/zeppelin/site/screenshots.html URL: http://svn.apache.org/viewvc/incubator/zeppelin/site/screenshots.html?rev=1650869&view=auto ============================================================================== --- incubator/zeppelin/site/screenshots.html (added) +++ incubator/zeppelin/site/screenshots.html Sun Jan 11 04:30:31 2015 @@ -0,0 +1,261 @@ + +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <title>Screenshots</title> + <meta name="description" content=""> + <meta name="author" content="The Apache Software Foundation"> + + <!-- Enable responsive viewport --> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + + <!-- Le HTML5 shim, for IE6-8 support of HTML elements --> + <!--[if lt IE 9]> + <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> + <![endif]--> + + <!-- Le styles --> + <link href="/assets/themes/zeppelin/bootstrap/css/bootstrap.css" rel="stylesheet"> + <link href="/assets/themes/zeppelin/css/style.css?body=1" rel="stylesheet" type="text/css"> + + <!-- Le fav and touch icons --> + <!-- Update these with your own images + <link rel="shortcut icon" href="images/favicon.ico"> + <link rel="apple-touch-icon" href="images/apple-touch-icon.png"> + <link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png"> + <link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png"> + --> + + <!-- atom & rss feed --> + <link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Sitewide ATOM Feed"> + <link href="/rss.xml" type="application/rss+xml" rel="alternate" title="Sitewide RSS Feed"> + </head> + + <body> + + <div class="navbar navbar-inverse navbar-fixed-top" role="navigation"> + <div class="container"> + <div class="navbar-header"> + <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> + <span class="sr-only">Toggle navigation</span> + <span class="icon-bar"></span> + <span class="icon-bar"></span> + <span class="icon-bar"></span> + </button> + <a class="navbar-brand" style="font-family: 'Patua One', cursive;" href="/"><img style="margin-top: -7px;s" src="/assets/themes/zeppelin/img/zeppelin_logo.png" width="50" alt="I'm zeppelin"> Zeppelin</a> + </div> + <nav class="navbar-collapse collapse" role="navigation"> + <ul class="nav navbar-nav"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + </ul> + <ul class="nav navbar-nav navbar-right"> + + + + + + + + + + + + + + <li><a href="/community.html">Community</a></li> + + + + + + + + + + + + + + + + + + + + + + + + <li><a href="/docs/index.html">Docs</a></li> + + + + + + + + + + + + + + + + + + + + <li><a href="/download.html">Download</a></li> + + + + + + + + + + + + + + + + + + + + + + + + <li><a href="https://github.com/NFLabs/zeppelin">GitHub</a></li> + </ul> + </nav><!--/.navbar-collapse --> + </div> + </div> + + + <div class="container"> + +<!--<div class="hero-unit Screenshots"> + <h1></h1> +</div> +--> + +<div class="row"> + <div class="col-md-12"> + <div class="row"> + <div class="col-md-3"> + <a href="assets/themes/zeppelin/img/screenshots/sparksql.png"><img class="thumbnail" src="assets/themes/zeppelin/img/screenshots/sparksql.png" /></a> + <center>SparkSQL with inline visualization</center> + </div> + <div class="col-md-3"> + <a href="assets/themes/zeppelin/img/screenshots/spark.png"><img class="thumbnail" src="assets/themes/zeppelin/img/screenshots/spark.png" /></a> + <center>Scala code runs with Spark</center> + </div> + <div class="col-md-3"> + <a href="assets/themes/zeppelin/img/screenshots/markdown.png"><img class="thumbnail" src="assets/themes/zeppelin/img/screenshots/markdown.png" /></a> + <center>Markdown supported</center> + </div> +</div> + +<p><br /> +<div class="row"> + <div class="col-md-3"> + <a href="assets/themes/zeppelin/img/screenshots/notebook.png"><img class="thumbnail" src="assets/themes/zeppelin/img/screenshots/notebook.png" /></a> + <center>Notebook</center> + </div> + <div class="col-md-3"> + </div> + <div class="col-md-3"> + </div> +</div></p> + + </div> +</div> + + + <hr> + <footer> + <p>© 2015 The Apache Software Foundation</p> + </footer> + </div> + + + <script src="https://code.jquery.com/jquery-1.10.2.min.js"></script> + + <script src="/assets/themes/zeppelin/bootstrap/js/bootstrap.min.js"></script> + </body> +</html> + Added: incubator/zeppelin/site/sitemap.txt URL: http://svn.apache.org/viewvc/incubator/zeppelin/site/sitemap.txt?rev=1650869&view=auto ============================================================================== --- incubator/zeppelin/site/sitemap.txt (added) +++ incubator/zeppelin/site/sitemap.txt Sun Jan 11 04:30:31 2015 @@ -0,0 +1,16 @@ + +http://zeppelin-project.org/atom.xml +http://zeppelin-project.org/community.html +http://zeppelin-project.org/docs/development/howtocontribute.html +http://zeppelin-project.org/docs/development/writingzeppelininterpreter.html +http://zeppelin-project.org/docs/display.html +http://zeppelin-project.org/docs/dynamicform.html +http://zeppelin-project.org/docs/index.html +http://zeppelin-project.org/docs/install/install.html +http://zeppelin-project.org/docs/tutorial/tutorial.html +http://zeppelin-project.org/docs/zeppelincontext.html +http://zeppelin-project.org/download.html +http://zeppelin-project.org/index.html +http://zeppelin-project.org/rss.xml +http://zeppelin-project.org/screenshots.html +http://zeppelin-project.org/sitemap.txt
