Skip to content

Commit

Permalink
[FLINK-13067][docs] Fix broken links to contributing docs
Browse files Browse the repository at this point in the history
This closes apache#8964
  • Loading branch information
sjwiesman authored and StephanEwen committed Jul 10, 2019
1 parent 32d3737 commit 0944531
Show file tree
Hide file tree
Showing 20 changed files with 30 additions and 30 deletions.
4 changes: 2 additions & 2 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ To make the process smooth for the project *committers* (those who review and ac

## Contribution Guidelines

Please check out the [How to Contribute guide](https://flink.apache.org/how-to-contribute.html) to understand how contributions are made.
A detailed explanation can be found in our [Contribute Code Guide](https://flink.apache.org/contribute-code.html) which also contains a list of coding guidelines that you should follow.
Please check out the [How to Contribute guide](https://flink.apache.org/contributing/how-to-contribute.html) to understand how contributions are made.
A detailed explanation can be found in our [Contribute Code Guide](https://flink.apache.org/contributing/contribute-code.html) which also contains a list of coding guidelines that you should follow.
For pull requests, there is a [check list](PULL_REQUEST_TEMPLATE.md) with criteria taken from the How to Contribute Guide and the Coding Guidelines.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
- Fill out the template below to describe the changes contributed by the pull request. That will give reviewers the context they need to do the review.
- Make sure that the change passes the automated tests, i.e., `mvn clean verify` passes. You can set up Travis CI to do that following [this guide](http:https://flink.apache.org/contribute-code.html#best-practices).
- Make sure that the change passes the automated tests, i.e., `mvn clean verify` passes. You can set up Travis CI to do that following [this guide](https:https://flink.apache.org/contributing/contribute-code.html#open-a-pull-request).
- Each pull request should address only one issue, not mix up code from multiple issues.
Expand Down
2 changes: 1 addition & 1 deletion docs/dev/libs/gelly/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,6 @@ wget -O - https://snap.stanford.edu/data/bigdata/communities/com-lj.ungraph.txt.g

Please submit feature requests and report issues on the user [mailing list](https://flink.apache.org/community.html#mailing-lists)
or [Flink Jira](https://issues.apache.org/jira/browse/FLINK). We welcome suggestions for new algorithms and features as
well as [code contributions](https://flink.apache.org/contribute-code.html).
well as [code contributions](https://flink.apache.org/contributing/contribute-code.html).

{% top %}
2 changes: 1 addition & 1 deletion docs/dev/libs/gelly/index.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,6 @@ wget -O - https://snap.stanford.edu/data/bigdata/communities/com-lj.ungraph.txt.g

Please submit feature requests and report issues on the user [mailing list](https://flink.apache.org/community.html#mailing-lists)
or [Flink Jira](https://issues.apache.org/jira/browse/FLINK). We welcome suggestions for new algorithms and features as
well as [code contributions](https://flink.apache.org/contribute-code.html).
well as [code contributions](https://flink.apache.org/contributing/contribute-code.html).

{% top %}
4 changes: 2 additions & 2 deletions docs/dev/libs/ml/contribution_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The following document describes how to contribute to FlinkML.

## Getting Started

In order to get started first read Flink's [contribution guide](https://flink.apache.org/how-to-contribute.html).
In order to get started first read Flink's [contribution guide](https://flink.apache.org/contributing/how-to-contribute.html).
Everything from this guide also applies to FlinkML.

## Pick a Topic
Expand Down Expand Up @@ -103,6 +103,6 @@ See `docs/_include/latex_commands.html` for the complete list of predefined late
## Contributing

Once you have implemented the algorithm with adequate test coverage and added documentation, you are ready to open a pull request.
Details of how to open a pull request can be found [here](https://flink.apache.org/how-to-contribute.html#contributing-code--documentation).
Details of how to open a pull request can be found [here](https://flink.apache.org/contributing/how-to-contribute.html).

{% top %}
4 changes: 2 additions & 2 deletions docs/dev/libs/ml/contribution_guide.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The following document describes how to contribute to FlinkML.

## Getting Started

In order to get started first read Flink's [contribution guide](https://flink.apache.org/how-to-contribute.html).
In order to get started first read Flink's [contribution guide](https://flink.apache.org/contributing/how-to-contribute.html).
Everything from this guide also applies to FlinkML.

## Pick a Topic
Expand Down Expand Up @@ -103,6 +103,6 @@ See `docs/_include/latex_commands.html` for the complete list of predefined late
## Contributing

Once you have implemented the algorithm with adequate test coverage and added documentation, you are ready to open a pull request.
Details of how to open a pull request can be found [here](https://flink.apache.org/how-to-contribute.html#contributing-code--documentation).
Details of how to open a pull request can be found [here](https://flink.apache.org/contributing/how-to-contribute.html).

{% top %}
4 changes: 2 additions & 2 deletions docs/dev/projectsetup/java_api_quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ can run the application from the JAR file without additionally specifying the ma
Write your application!

If you are writing a streaming application and you are looking for inspiration what to write,
take a look at the [Stream Processing Application Tutorial]({{ site.baseurl }}/tutorials/datastream_api.html#writing-a-flink-program).
take a look at the [Stream Processing Application Tutorial]({{ site.baseurl }}/getting-started/tutorials/datastream_api.html#writing-a-flink-program).

If you are writing a batch processing application and you are looking for inspiration what to write,
take a look at the [Batch Application Examples]({{ site.baseurl }}/dev/batch/examples.html).
Expand All @@ -345,7 +345,7 @@ For a complete overview over the APIs, have a look at the
[DataStream API]({{ site.baseurl }}/dev/datastream_api.html) and
[DataSet API]({{ site.baseurl }}/dev/batch/index.html) sections.

[Here]({{ site.baseurl }}/tutorials/local_setup.html) you can find out how to run an application outside the IDE on a local cluster.
[Here]({{ site.baseurl }}/getting-started/tutorials/local_setup.html) you can find out how to run an application outside the IDE on a local cluster.

If you have any trouble, ask on our
[Mailing List](https://mail-archives.apache.org/mod_mbox/flink-user/).
Expand Down
4 changes: 2 additions & 2 deletions docs/dev/projectsetup/java_api_quickstart.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ __注意:__ 如果你使用其他类而不是 *StreamingJob* 作为应用程
开始编写应用!

如果你准备编写流处理应用,正在寻找灵感来写什么,
可以看看[流处理应用程序教程]({{ site.baseurl }}/zh/tutorials/datastream_api.html#writing-a-flink-program)
可以看看[流处理应用程序教程]({{ site.baseurl }}/zh/getting-started/tutorials/datastream_api.html#writing-a-flink-program)

如果你准备编写批处理应用,正在寻找灵感来写什么,
可以看看[批处理应用程序示例]({{ site.baseurl }}/zh/dev/batch/examples.html)
Expand All @@ -332,7 +332,7 @@ __注意:__ 如果你使用其他类而不是 *StreamingJob* 作为应用程
[DataStream API]({{ site.baseurl }}/zh/dev/datastream_api.html) 和
[DataSet API]({{ site.baseurl }}/zh/dev/batch/index.html) 章节。

[这里]({{ site.baseurl }}/zh/tutorials/local_setup.html),你可以找到如何在 IDE 之外的本地集群中运行应用程序。
[这里]({{ site.baseurl }}/zh/getting-started/tutorials/local_setup.html),你可以找到如何在 IDE 之外的本地集群中运行应用程序。

如果你有任何问题,请发信至我们的[邮箱列表](https://mail-archives.apache.org/mod_mbox/flink-user/),我们很乐意提供帮助。

Expand Down
4 changes: 2 additions & 2 deletions docs/dev/projectsetup/scala_api_quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ can run time application from the JAR file without additionally specifying the m
Write your application!

If you are writing a streaming application and you are looking for inspiration what to write,
take a look at the [Stream Processing Application Tutorial]({{ site.baseurl }}/tutorials/datastream_api.html#writing-a-flink-program)
take a look at the [Stream Processing Application Tutorial]({{ site.baseurl }}/getting-started/tutorials/datastream_api.html#writing-a-flink-program)

If you are writing a batch processing application and you are looking for inspiration what to write,
take a look at the [Batch Application Examples]({{ site.baseurl }}/dev/batch/examples.html)
Expand All @@ -221,7 +221,7 @@ For a complete overview over the APIa, have a look at the
[DataStream API]({{ site.baseurl }}/dev/datastream_api.html) and
[DataSet API]({{ site.baseurl }}/dev/batch/index.html) sections.

[Here]({{ site.baseurl }}/tutorials/local_setup.html) you can find out how to run an application outside the IDE on a local cluster.
[Here]({{ site.baseurl }}/getting-started/tutorials/local_setup.html) you can find out how to run an application outside the IDE on a local cluster.

If you have any trouble, ask on our
[Mailing List](https://mail-archives.apache.org/mod_mbox/flink-user/).
Expand Down
4 changes: 2 additions & 2 deletions docs/dev/projectsetup/scala_api_quickstart.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ __注意:__ 如果你使用其他类而不是 *StreamingJob* 作为应用程序
开始编写你的应用!

如果你准备编写流处理应用,正在寻找灵感来写什么,
可以看看[流处理应用程序教程]({{ site.baseurl }}/zh/tutorials/datastream_api.html#writing-a-flink-program)
可以看看[流处理应用程序教程]({{ site.baseurl }}/zh/getting-started/tutorials/datastream_api.html#writing-a-flink-program)

如果你准备编写批处理应用,正在寻找灵感来写什么,
可以看看[批处理应用程序示例]({{ site.baseurl }}/zh/dev/batch/examples.html)
Expand All @@ -213,7 +213,7 @@ __注意:__ 如果你使用其他类而不是 *StreamingJob* 作为应用程序
[DataStream API]({{ site.baseurl }}/zh/dev/datastream_api.html) 和
[DataSet API]({{ site.baseurl }}/zh/dev/batch/index.html) 部分。

[这里]({{ site.baseurl }}/zh/tutorials/local_setup.html),你可以找到如何在IDE外的本地集群中运行应用程序。
[这里]({{ site.baseurl }}/zh/getting-started/tutorials/local_setup.html),你可以找到如何在IDE外的本地集群中运行应用程序。

如果你有任何问题,请发信至我们的[邮箱列表](https://mail-archives.apache.org/mod_mbox/flink-user/)
我们很乐意提供帮助。
Expand Down
2 changes: 1 addition & 1 deletion docs/dev/table/connect.md
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ connector:

The file system connector itself is included in Flink and does not require an additional dependency. A corresponding format needs to be specified for reading and writing rows from and to a file system.

<span class="label label-danger">Attention</span> Make sure to include [Flink File System specific dependencies]({{ site.baseurl }}/ops/filesystems.html).
<span class="label label-danger">Attention</span> Make sure to include [Flink File System specific dependencies]({{ site.baseurl }}/ops/filesystems/index.html).

<span class="label label-danger">Attention</span> File system sources and sinks for streaming are only experimental. In the future, we will support actual streaming use cases, i.e., directory monitoring and bucket output.

Expand Down
2 changes: 1 addition & 1 deletion docs/dev/table/connect.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ connector:

The file system connector itself is included in Flink and does not require an additional dependency. A corresponding format needs to be specified for reading and writing rows from and to a file system.

<span class="label label-danger">Attention</span> Make sure to include [Flink File System specific dependencies]({{ site.baseurl }}/ops/filesystems.html).
<span class="label label-danger">Attention</span> Make sure to include [Flink File System specific dependencies]({{ site.baseurl }}/ops/filesystems/index.html).

<span class="label label-danger">Attention</span> File system sources and sinks for streaming are only experimental. In the future, we will support actual streaming use cases, i.e., directory monitoring and bucket output.

Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ 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 understand other parts of the documentation, including the setup and programming guides. We recommend you read these sections first.

- **Tutorials**:
* [Implement and run a DataStream application](./tutorials/datastream_api.html)
* [Setup a local Flink cluster](./tutorials/local_setup.html)
* [Implement and run a DataStream application](./getting-started/tutorials/datastream_api.html)
* [Setup a local Flink cluster](./getting-started/tutorials/local_setup.html)

- **Programming Guides**: You can read our guides about [basic API concepts](dev/api_concepts.html) and the [DataStream API](dev/datastream_api.html) or the [DataSet API](dev/batch/index.html) to learn how to write your first Flink programs.

Expand Down
4 changes: 2 additions & 2 deletions docs/index.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ Apache Flink 是一个分布式流批一体化的开源平台。Flink 的核心

- **概念**: 从 Flink 的 [数据流编程模型](concepts/programming-model.html)[分布式执行环境](concepts/runtime.html) 开始了解最基本的概念。这能帮助你理解本文档的其他部分,包括如何搭建环境,进行程序编写等。建议你首先阅读此部分。
- **教程**:
* [实现并运行一个 DataStream 作业](./tutorials/datastream_api.html)
* [搭建一个本地 Flink 集群](./tutorials/local_setup.html)
* [实现并运行一个 DataStream 作业](./getting-started/tutorials/datastream_api.html)
* [搭建一个本地 Flink 集群](./getting-started/tutorials/local_setup.html)

- **编程指南**: 你可以从 [基本 API 概念](dev/api_concepts.html), [DataStream API](dev/datastream_api.html) 以及 [DataSet API](dev/batch/index.html) 着手学习如何编写你的第一个 Flink 作业。

Expand Down
2 changes: 1 addition & 1 deletion docs/internals/components.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ You can click on the components in the figure to learn more.
<area id="datastream" title="DataStream API" href="{{ site.baseurl }}/dev/datastream_api.html" shape="rect" coords="64,177,379,255" />
<area id="dataset" title="DataSet API" href="{{ site.baseurl }}/dev/batch/index.html" shape="rect" coords="382,177,697,255" />
<area id="runtime" title="Runtime" href="{{ site.baseurl }}/concepts/runtime.html" shape="rect" coords="63,257,700,335" />
<area id="local" title="Local" href="{{ site.baseurl }}/tutorials/local_setup.html" shape="rect" coords="62,337,275,414" />
<area id="local" title="Local" href="{{ site.baseurl }}/getting-started/tutorials/local_setup.html" shape="rect" coords="62,337,275,414" />
<area id="cluster" title="Cluster" href="{{ site.baseurl }}/ops/deployment/cluster_setup.html" shape="rect" coords="273,336,486,413" />
<area id="cloud" title="Cloud" href="{{ site.baseurl }}/ops/deployment/gce_setup.html" shape="rect" coords="485,336,700,414" />
</map>
Expand Down
2 changes: 1 addition & 1 deletion docs/internals/components.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ You can click on the components in the figure to learn more.
<area id="datastream" title="DataStream API" href="{{ site.baseurl }}/dev/datastream_api.html" shape="rect" coords="64,177,379,255" />
<area id="dataset" title="DataSet API" href="{{ site.baseurl }}/dev/batch/index.html" shape="rect" coords="382,177,697,255" />
<area id="runtime" title="Runtime" href="{{ site.baseurl }}/concepts/runtime.html" shape="rect" coords="63,257,700,335" />
<area id="local" title="Local" href="{{ site.baseurl }}/tutorials/local_setup.html" shape="rect" coords="62,337,275,414" />
<area id="local" title="Local" href="{{ site.baseurl }}/getting-started/tutorials/local_setup.html" shape="rect" coords="62,337,275,414" />
<area id="cluster" title="Cluster" href="{{ site.baseurl }}/ops/deployment/cluster_setup.html" shape="rect" coords="273,336,486,413" />
<area id="cloud" title="Cloud" href="{{ site.baseurl }}/ops/deployment/gce_setup.html" shape="rect" coords="485,336,700,414" />
</map>
Expand Down
2 changes: 1 addition & 1 deletion docs/redirects/example_quickstart.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "DataStream API Tutorial"
layout: redirect
redirect: /tutorials/datastream_api.html
redirect: /getting-started/tutorials/datastream_api.html
permalink: /quickstart/run_example_quickstart.html
---
<!--
Expand Down
4 changes: 2 additions & 2 deletions docs/redirects/filesystems.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: "File Systems"
layout: redirect
redirect: /ops/filesystems.html
permalink: /ops/filesystems/index.html
redirect: /ops/filesystems/index.html
permalink: /ops/filesystems.html
---
<!--
Licensed to the Apache Software Foundation (ASF) under one
Expand Down
2 changes: 1 addition & 1 deletion docs/redirects/setup_quickstart.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "Local Setup Tutorial"
layout: redirect
redirect: /tutorials/local_setup.html
redirect: /getting-started/tutorials/local_setup.html
permalink: /quickstart/setup_quickstart.html
---
<!--
Expand Down
2 changes: 1 addition & 1 deletion docs/redirects/windows.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "Running Flink on Windows"
layout: redirect
redirect: /tutorials/flink_on_windows.html
redirect: /getting-started/tutorials/flink_on_windows.html
permalink: /start/flink_on_windows.html
---
<!--
Expand Down

0 comments on commit 0944531

Please sign in to comment.