zentol closed pull request #7395: [hotfix][docs] Add missing back to top button 
in docs
URL: https://github.com/apache/flink/pull/7395
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/docs/_includes/generated/rest_v1_dispatcher.html 
b/docs/_includes/generated/rest_v1_dispatcher.html
index 4977e5ccfeb..2fd3dcfe40c 100644
--- a/docs/_includes/generated/rest_v1_dispatcher.html
+++ b/docs/_includes/generated/rest_v1_dispatcher.html
@@ -3871,3 +3871,5 @@
     </tr>
   </tbody>
 </table>
+
+{% top %}
diff --git a/docs/dev/java_lambdas.md b/docs/dev/java_lambdas.md
index 0b4a5cc069d..bc9704b517d 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 fbe3dce3dc6..f8a75a45e50 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 db029befb36..f0a78a53912 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 c415f63f781..bdd8e427280 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 b2a373eaa5f..f0189f9eeec 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 628a6308b57..73f4dcf7fe4 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 f2f52b22ad7..fd0a73c3e1d 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 95c6bab8e0a..a6fa525a3db 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 508e8c70221..a572c1be293 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 33afc27e75a..4090440f864 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 4ebb4a6e8a7..d511c1f93f4 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 a8472026b7c..f7242241167 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 f2f060c076f..b07f9259e68 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 %}


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to