You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by mo...@apache.org on 2015/10/20 03:19:11 UTC

incubator-zeppelin git commit: Format table and fix flink to flink.html

Repository: incubator-zeppelin
Updated Branches:
  refs/heads/master d67413b57 -> c642c503c


Format table and fix flink to flink.html

Format table for Flink interpreter doc introduced by https://github.com/apache/incubator-zeppelin/pull/303

which will change table formatting from

![image](https://cloud.githubusercontent.com/assets/1540981/10560737/0eb08998-754f-11e5-909a-a21b0784cea4.png)

to

![image](https://cloud.githubusercontent.com/assets/1540981/10560739/1c7c06d8-754f-11e5-81b1-615010e9e953.png)

Author: Lee moon soo <mo...@apache.org>

Closes #350 from Leemoonsoo/update_flink_doc and squashes the following commits:

6234ad9 [Lee moon soo] Format table and fix flink to flink.html


Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/c642c503
Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/c642c503
Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/c642c503

Branch: refs/heads/master
Commit: c642c503c70d490a0ec5ad6c2872d761212bc235
Parents: d67413b
Author: Lee moon soo <mo...@apache.org>
Authored: Sun Oct 18 04:13:10 2015 +0900
Committer: Lee moon soo <mo...@apache.org>
Committed: Tue Oct 20 10:20:10 2015 +0900

----------------------------------------------------------------------
 docs/docs/index.md             |  2 +-
 docs/docs/interpreter/flink.md | 29 ++++++++++++++++++++++++-----
 2 files changed, 25 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/c642c503/docs/docs/index.md
----------------------------------------------------------------------
diff --git a/docs/docs/index.md b/docs/docs/index.md
index 9c88bfd..2db242a 100644
--- a/docs/docs/index.md
+++ b/docs/docs/index.md
@@ -19,7 +19,7 @@ group: nav-right
 
 **[Interpreters in zeppelin](manual/interpreters.html)**
 
-* [flink](./docs/interpreter/flink.html)
+* [flink](./interpreter/flink.html)
 * [hive](../docs/pleasecontribute.html)
 * [ignite](../docs/pleasecontribute.html)
 * [lens](../docs/pleasecontribute.html)

http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/c642c503/docs/docs/interpreter/flink.md
----------------------------------------------------------------------
diff --git a/docs/docs/interpreter/flink.md b/docs/docs/interpreter/flink.md
index 579a5f4..ce1f780 100644
--- a/docs/docs/interpreter/flink.md
+++ b/docs/docs/interpreter/flink.md
@@ -17,11 +17,30 @@ Zeppelin comes with pre-configured flink-local interpreter, which starts Flink i
 ### How to configure interpreter to point to Flink cluster
 At the "Interpreters" menu, you have to create a new Flink interpreter and provide next properties:
 
-property | value    | Description
----------|----------|-----
-host	 | local    | host name of running JobManager. 'local' runs flink in local mode (default)
-port	 | 6123     | port of running JobManager
-xxx    | yyy      | anything else from [Flink Configuration](https://ci.apache.org/projects/flink/flink-docs-release-0.9/setup/config.html)
+<table class="table-configuration">
+  <tr>
+    <th>property</th>
+    <th>value</th>
+    <th>Description</th>
+  </tr>
+  <tr>
+    <td>host</td>
+    <td>local</td>
+    <td>host name of running JobManager. 'local' runs flink in local mode (default)</td>
+  </tr>
+  <tr>
+    <td>port</td>
+    <td>6123</td>
+    <td>port of running JobManager</td>
+  </tr>
+  <tr>
+    <td>xxx</td>
+    <td>yyy</td>
+    <td>anything else from [Flink Configuration](https://ci.apache.org/projects/flink/flink-docs-release-0.9/setup/config.html)</td>
+  </tr>
+</table>
+<br />
+
 
 ### How to test it's working