You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2019/01/02 10:23:12 UTC

[flink] branch master updated: [FLINK-11217][docs] Add missing back-to-top buttons

This is an automated email from the ASF dual-hosted git repository.

chesnay pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 7ca3e04  [FLINK-11217][docs] Add missing back-to-top buttons
7ca3e04 is described below

commit 7ca3e0413a1ff52b6ece16163d0d6f538fb85152
Author: leesf <49...@qq.com>
AuthorDate: Wed Jan 2 18:23:05 2019 +0800

    [FLINK-11217][docs] Add missing back-to-top buttons
---
 docs/_includes/generated/rest_v1_dispatcher.html | 2 ++
 docs/dev/java_lambdas.md                         | 4 +++-
 docs/dev/libs/ml/index.md                        | 2 ++
 docs/dev/stream/experimental.md                  | 2 ++
 docs/dev/stream/operators/joining.md             | 2 ++
 docs/dev/stream/operators/process_function.md    | 2 ++
 docs/dev/stream/state/broadcast_state.md         | 2 ++
 docs/dev/stream/state/schema_evolution.md        | 2 ++
 docs/dev/table/streaming/index.md                | 2 ++
 docs/dev/table/streaming/joins.md                | 2 ++
 docs/dev/table/streaming/match_recognize.md      | 2 ++
 docs/dev/table/streaming/temporal_tables.md      | 2 ++
 docs/examples/index.md                           | 4 +++-
 docs/ops/deployment/hadoop.md                    | 2 ++
 14 files changed, 30 insertions(+), 2 deletions(-)

diff --git a/docs/_includes/generated/rest_v1_dispatcher.html b/docs/_includes/generated/rest_v1_dispatcher.html
index 4977e5c..2fd3dcf 100644
--- a/docs/_includes/generated/rest_v1_dispatcher.html
+++ b/docs/_includes/generated/rest_v1_dispatcher.html
@@ -3871,3 +3871,5 @@ Using 'curl' you can upload a jar via 'curl -X POST -H "Expect:" -F "jarfile=@pa
     </tr>
   </tbody>
 </table>
+
+{% top %}
diff --git a/docs/dev/java_lambdas.md b/docs/dev/java_lambdas.md
index 0b4a5cc..bc9704b 100644
--- a/docs/dev/java_lambdas.md
+++ b/docs/dev/java_lambdas.md
@@ -135,4 +135,6 @@ public static class DoubleTuple extends Tuple2<Integer, Integer> {
         this.f1 = f1;
     }
 }
-{% endhighlight %}
\ No newline at end of file
+{% endhighlight %}
+
+{% top %}
diff --git a/docs/dev/libs/ml/index.md b/docs/dev/libs/ml/index.md
index fbe3dce..f8a75a4 100644
--- a/docs/dev/libs/ml/index.md
+++ b/docs/dev/libs/ml/index.md
@@ -146,3 +146,5 @@ If one wants to chain a `Predictor` to a `Transformer` or a set of chained `Tran
 The Flink community welcomes all contributors who want to get involved in the development of Flink and its libraries.
 In order to get quickly started with contributing to FlinkML, please read our official
 [contribution guide]({{site.baseurl}}/dev/libs/ml/contribution_guide.html).
+
+{% top %}
diff --git a/docs/dev/stream/experimental.md b/docs/dev/stream/experimental.md
index db029be..f0a78a5 100644
--- a/docs/dev/stream/experimental.md
+++ b/docs/dev/stream/experimental.md
@@ -77,3 +77,5 @@ Code example:
       .addSink(new DiscardingSink[Int])
     env.execute()
 {% endhighlight %}
+
+{% top %}
diff --git a/docs/dev/stream/operators/joining.md b/docs/dev/stream/operators/joining.md
index c415f63..bdd8e42 100644
--- a/docs/dev/stream/operators/joining.md
+++ b/docs/dev/stream/operators/joining.md
@@ -280,3 +280,5 @@ orangeStream
 
 </div>
 </div>
+
+{% top %}
diff --git a/docs/dev/stream/operators/process_function.md b/docs/dev/stream/operators/process_function.md
index b2a373e..f0189f9 100644
--- a/docs/dev/stream/operators/process_function.md
+++ b/docs/dev/stream/operators/process_function.md
@@ -372,3 +372,5 @@ ctx.timerService.deleteEventTimeTimer(timestampOfTimerToStop)
 </div>
 
 <span class="label label-info">Note</span> Stopping a timer has no effect if no such timer with the given timestamp is registered.
+
+{% top %}
diff --git a/docs/dev/stream/state/broadcast_state.md b/docs/dev/stream/state/broadcast_state.md
index 628a630..73f4dcf 100644
--- a/docs/dev/stream/state/broadcast_state.md
+++ b/docs/dev/stream/state/broadcast_state.md
@@ -275,3 +275,5 @@ manner.
 
   - **No RocksDB state backend:** Broadcast state is kept in-memory at runtime and memory provisioning should be done 
 accordingly. This holds for all operator states.
+
+{% top %}
diff --git a/docs/dev/stream/state/schema_evolution.md b/docs/dev/stream/state/schema_evolution.md
index f2f52b2..fd0a73c 100644
--- a/docs/dev/stream/state/schema_evolution.md
+++ b/docs/dev/stream/state/schema_evolution.md
@@ -91,3 +91,5 @@ Flink fully supports evolving schema of Avro type state, as long as the schema c
 
 One limitation is that Avro generated classes used as the state type cannot be relocated or have different
 namespaces when the job is restored.
+
+{% top %}
diff --git a/docs/dev/table/streaming/index.md b/docs/dev/table/streaming/index.md
index 95c6bab..a6fa525 100644
--- a/docs/dev/table/streaming/index.md
+++ b/docs/dev/table/streaming/index.md
@@ -40,3 +40,5 @@ Where to go next?
 * [Joins in Continuous Queries]({{ site.baseurl }}/dev/table/streaming/joins.html): Different supported types of Joins in Continuous Queries.
 * [Temporal Tables]({{ site.baseurl }}/dev/table/streaming/temporal_tables.html): Describes the Temporal Table concept.
 * [Query configuration]({{ site.baseurl }}/dev/table/streaming/query_configuration.html): Lists Table API & SQL specific configuration options.
+
+{% top %}
diff --git a/docs/dev/table/streaming/joins.md b/docs/dev/table/streaming/joins.md
index 508e8c7..a572c1b 100644
--- a/docs/dev/table/streaming/joins.md
+++ b/docs/dev/table/streaming/joins.md
@@ -221,3 +221,5 @@ applied updates according to the primary key until this point in time.
 By definition of event time, [watermarks]({{ site.baseurl }}/dev/event_time.html) allow the join operation to move
 forward in time and discard versions of the build table that are no longer necessary because no incoming row with
 lower or equal timestamp is expected.
+
+{% top %}
diff --git a/docs/dev/table/streaming/match_recognize.md b/docs/dev/table/streaming/match_recognize.md
index 33afc27..4090440 100644
--- a/docs/dev/table/streaming/match_recognize.md
+++ b/docs/dev/table/streaming/match_recognize.md
@@ -960,3 +960,5 @@ Unsupported features include:
 * `MATCH_RECOGNIZE` is supported only for SQL. There is no equivalent in the Table API.
 * Aggregations:
   * distinct aggregations are not supported.
+  
+{% top %}
diff --git a/docs/dev/table/streaming/temporal_tables.md b/docs/dev/table/streaming/temporal_tables.md
index 4ebb4a6..d511c1f 100644
--- a/docs/dev/table/streaming/temporal_tables.md
+++ b/docs/dev/table/streaming/temporal_tables.md
@@ -186,3 +186,5 @@ which allows us to use the function `rates` in the [Table API](../tableApi.html#
 
 Line `(2)` registers this function under the name `Rates` in our table environment,
 which allows us to use the `Rates` function in [SQL](../sql.html#joins).
+
+{% top %}
diff --git a/docs/examples/index.md b/docs/examples/index.md
index a847202..f724224 100644
--- a/docs/examples/index.md
+++ b/docs/examples/index.md
@@ -45,4 +45,6 @@ There are also a few blog posts published online that discuss example applicatio
 
 * [Building real-time dashboard applications with Apache Flink, Elasticsearch, and Kibana](https://www.elastic.co/blog/building-real-time-dashboard-applications-with-apache-flink-elasticsearch-and-kibana) is a blog post at elastic.co showing how to build a real-time dashboard solution for streaming data analytics using Apache Flink, Elasticsearch, and Kibana.
 
-* The [Flink training website](http://training.data-artisans.com/) from data Artisans has a number of examples. Check out the hands-on sections and the exercises.
\ No newline at end of file
+* The [Flink training website](http://training.data-artisans.com/) from data Artisans has a number of examples. Check out the hands-on sections and the exercises.
+
+{% top %}
diff --git a/docs/ops/deployment/hadoop.md b/docs/ops/deployment/hadoop.md
index f2f060c..b07f925 100644
--- a/docs/ops/deployment/hadoop.md
+++ b/docs/ops/deployment/hadoop.md
@@ -45,3 +45,5 @@ export HADOOP_CLASSPATH=`hadoop classpath`
 {% endhighlight %}
 
 in the shell. Note that `hadoop` is the hadoop binary and that `classpath` is an argument that will make it print the configured Hadoop classpath.
+
+{% top %}