Repository: zeppelin Updated Branches: refs/heads/branch-0.6 ee7ebca06 -> 9d8680eac
[HOTFIX][DOC] Fix image path ### What is this PR for? Use relative path instead of absolute path so doc can find image under proper version folder ### What type of PR is it? Documentation ### Screenshots (if appropriate) Current 0.6.0-SNAPSHOT main page looks like this: <img width="931" alt="screen shot 2016-06-15 at 5 24 25 pm" src="https://cloud.githubusercontent.com/assets/8503346/16102042/9ca90772-3320-11e6-8628-5850003a64a9.png"> Author: Mina Lee <[email protected]> Closes #1020 from minahlee/hotfix/doc_image and squashes the following commits: 9574e0a [Mina Lee] Fix image path (cherry picked from commit 74c034edda2137f0cf22e10b6a925f9c40431170) Signed-off-by: Mina Lee <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/9d8680ea Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/9d8680ea Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/9d8680ea Branch: refs/heads/branch-0.6 Commit: 9d8680eacdb8691208a59721c609f8af43d6dd21 Parents: ee7ebca Author: Mina Lee <[email protected]> Authored: Wed Jun 15 17:41:35 2016 -0700 Committer: Mina Lee <[email protected]> Committed: Wed Jun 15 21:00:17 2016 -0700 ---------------------------------------------------------------------- docs/index.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/zeppelin/blob/9d8680ea/docs/index.md ---------------------------------------------------------------------- diff --git a/docs/index.md b/docs/index.md index 6288217..582f2b1 100644 --- a/docs/index.md +++ b/docs/index.md @@ -33,7 +33,7 @@ limitations under the License. </ul> </div> <div class="col-md-6" style="padding:0"> - <img class="img-responsive" style="border: 1px solid #ecf0f1;" src="/assets/themes/zeppelin/img/notebook.png" /> + <img class="img-responsive" style="border: 1px solid #ecf0f1;" src="../assets/themes/zeppelin/img/notebook.png" /> </div> </div> @@ -42,14 +42,14 @@ limitations under the License. [Apache Zeppelin interpreter](./manual/interpreters.html) concept allows any language/data-processing-backend to be plugged into Zeppelin. Currently Apache Zeppelin supports many interpreters such as Apache Spark, Python, JDBC, Markdown and Shell. -<img class="img-responsive" width="500px" style="margin:0 auto; padding: 26px;" src="/assets/themes/zeppelin/img/available_interpreters.png" /> +<img class="img-responsive" width="500px" style="margin:0 auto; padding: 26px;" src="../assets/themes/zeppelin/img/available_interpreters.png" /> Adding new language-backend is really simple. Learn [how to create your own interpreter](./development/writingzeppelininterpreter.html#make-your-own-interpreter). #### Apache Spark integration Especially, Apache Zeppelin provides built-in [Apache Spark](http://spark.apache.org/) integration. You don't need to build a separate module, plugin or library for it. -<img class="img-responsive" src="/assets/themes/zeppelin/img/spark_logo.jpg" width="140px" /> +<img class="img-responsive" src="../assets/themes/zeppelin/img/spark_logo.jpg" width="140px" /> Apache Zeppelin with Spark integration provides @@ -66,10 +66,10 @@ Some basic charts are already included in Apache Zeppelin. Visualizations are no <div class="row"> <div class="col-md-6"> - <img class="img-responsive" src="/assets/themes/zeppelin/img/graph1.png" /> + <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" /> + <img class="img-responsive" src="../assets/themes/zeppelin/img/graph2.png" /> </div> </div> @@ -79,7 +79,7 @@ Apache Zeppelin aggregates values and displays them in pivot chart with simple d <div class="row"> <div class="col-md-12"> - <img class="img-responsive" style="margin: 16px auto;" src="/assets/themes/zeppelin/img/screenshots/pivot.png" width="480px" /> + <img class="img-responsive" style="margin: 16px auto;" src="../assets/themes/zeppelin/img/screenshots/pivot.png" width="480px" /> </div> </div> @@ -91,7 +91,7 @@ Learn more about [display systems](#display-system) in Apache Zeppelin. Apache Zeppelin can dynamically create some input forms in your notebook. <div class="row"> <div class="col-md-12"> - <img class="img-responsive" style="margin: 16px auto;" src="/assets/themes/zeppelin/img/screenshots/dynamicform.png" /> + <img class="img-responsive" style="margin: 16px auto;" src="../assets/themes/zeppelin/img/screenshots/dynamicform.png" /> </div> </div> Learn more about [Dynamic Forms](./manual/dynamicform.html). @@ -102,7 +102,7 @@ Your notebook URL can be shared among collaborators. Then Apache Zeppelin will b <div class="row"> <div class="col-md-12"> - <img class="img-responsive" style="margin: 20px auto" src="/assets/themes/zeppelin/img/screenshots/publish.png" width="650px"/> + <img class="img-responsive" style="margin: 20px auto" src="../assets/themes/zeppelin/img/screenshots/publish.png" width="650px"/> </div> </div> @@ -113,7 +113,7 @@ If you want to learn more about this feature, please visit [this page](./manual/ <br /> ## 100% Opensource -<img class="img-responsive" style="margin:0 auto; padding: 15px;" src="/assets/themes/zeppelin/img/asf_logo.png" width="250px"/> +<img class="img-responsive" style="margin:0 auto; padding: 15px;" src="../assets/themes/zeppelin/img/asf_logo.png" width="250px"/> Apache Zeppelin is Apache2 Licensed software. Please check out the [source repository](http://git.apache.org/zeppelin.git) and [how to contribute](./development/howtocontribute.html). Apache Zeppelin has a very active development community.
