You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by gr...@apache.org on 2017/05/09 14:15:31 UTC

[1/2] flink git commit: [FLINK-6438] [docs] Added a few links to the docs home page, and made some other small adjustments.

Repository: flink
Updated Branches:
  refs/heads/master 6b451d949 -> e0ab5f524


[FLINK-6438] [docs] Added a few links to the docs home page, and made some other small adjustments.

This closes #3823


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

Branch: refs/heads/master
Commit: e0ab5f5249d285921f400cc4794673380e7aa8d4
Parents: a1ec761
Author: David Anderson <da...@alpinegizmo.com>
Authored: Wed May 3 16:44:03 2017 +0200
Committer: Greg Hogan <co...@greghogan.com>
Committed: Tue May 9 10:15:12 2017 -0400

----------------------------------------------------------------------
 docs/index.md | 17 +++++++++++++++--
 1 file changed, 15 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/e0ab5f52/docs/index.md
----------------------------------------------------------------------
diff --git a/docs/index.md b/docs/index.md
index a74f880..ef9317f 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -33,9 +33,13 @@ Apache Flink is an open source platform for distributed stream and batch data pr
 
 - **Concepts**: Start with the basic concepts of Flink's [Dataflow Programming Model](concepts/programming-model.html) and [Distributed Runtime Environment](concepts/runtime.html). This will help you to fully understand the other parts of the documentation, including the setup and programming guides. It is highly recommended to read these sections first.
 
-- **Quickstarts**: [Run an example program](quickstart/setup_quickstart.html) on your local machine or [write a simple program](quickstart/run_example_quickstart.html) working on live Wikipedia edits.
+- **Quickstarts**: [Run an example program](quickstart/setup_quickstart.html) on your local machine or [study some examples](examples/index.html).
 
-- **Programming Guides**: You can check out our guides about [basic concepts](dev/api_concepts.html) and the [DataStream API](dev/datastream_api.html) or [DataSet API](dev/batch/index.html) to learn how to write your first Flink programs.
+- **Programming Guides**: You can check out our guides about [basic API concepts](dev/api_concepts.html) and the [DataStream API](dev/datastream_api.html) or [DataSet API](dev/batch/index.html) to learn how to write your first Flink programs.
+
+## Deployment
+
+Before putting your Flink job into production, be sure to read the [Production Readiness Checklist](ops/production_ready.html).
 
 ## Migration Guide
 
@@ -44,3 +48,12 @@ While all parts of the API that were marked as public and stable are still suppo
 newer interfaces where applicable.
 
 For users that plan to upgrade a Flink system in production, we recommend reading the guide on [upgrading Apache Flink](ops/upgrading.html).
+
+## External Resources
+
+- **Flink Forward**: Talks from past conferences are available at the [Flink Forward](http://flink-forward.org/) website and on [YouTube](https://www.youtube.com/channel/UCY8_lgiZLZErZPF47a2hXMA). [Robust Stream Processing with Apache Flink](http://berlin.flink-forward.org/kb_sessions/robust-stream-processing-with-apache-flink/) is a good place to start.
+
+- **Training**: The [training materials](http://dataartisans.github.io/flink-training/) from data Artisans include slides, exercises, and sample solutions.
+
+- **Blogs**: The [Apache Flink](https://flink.apache.org/blog/) and [data Artisans](https://data-artisans.com/blog/) blogs publish frequent,
+in-depth technical articles about Flink.


[2/2] flink git commit: [FLINK-5742] [docs] allow sidenav to work for widths down to 992

Posted by gr...@apache.org.
[FLINK-5742] [docs] allow sidenav to work for widths down to 992

This closes #3821


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

Branch: refs/heads/master
Commit: a1ec761628051ad5dd04ea469f1a23b07b99ea70
Parents: 6b451d9
Author: David Anderson <da...@alpinegizmo.com>
Authored: Thu May 4 13:51:36 2017 +0200
Committer: Greg Hogan <co...@greghogan.com>
Committed: Tue May 9 10:15:12 2017 -0400

----------------------------------------------------------------------
 docs/_layouts/base.html | 4 ++--
 docs/page/css/flink.css | 5 +++++
 2 files changed, 7 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/a1ec7616/docs/_layouts/base.html
----------------------------------------------------------------------
diff --git a/docs/_layouts/base.html b/docs/_layouts/base.html
index 35499cd..88df5c9 100644
--- a/docs/_layouts/base.html
+++ b/docs/_layouts/base.html
@@ -69,10 +69,10 @@ under the License.
       the _layouts directory goes here.
       {% endcomment %}
       <div class="row">
-        <div class="col-lg-3">
+        <div class="col-lg-3" id="sidenavcol">
           {% include sidenav.html %}
         </div>
-        <div class="col-lg-9 content">
+        <div class="col-lg-9 content" id="contentcol">
           {% if page.mathjax %}
           {% include latex_commands.html %}
           {% endif %}

http://git-wip-us.apache.org/repos/asf/flink/blob/a1ec7616/docs/page/css/flink.css
----------------------------------------------------------------------
diff --git a/docs/page/css/flink.css b/docs/page/css/flink.css
index b6d4947..c0a7917 100644
--- a/docs/page/css/flink.css
+++ b/docs/page/css/flink.css
@@ -30,6 +30,11 @@ body {
 	background: #f8f8f8;
 }
 
+@media (min-width: 992px) and (max-width: 1200px) {
+    #contentcol { float: left; width: 70%; }
+    #sidenavcol { float: left; width: 30%; }
+}
+
 /*=============================================================================
  Per page TOC
 =============================================================================*/