This is an automated email from the ASF dual-hosted git repository.
qiaojialin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/master by this push:
new 7d63289 remove "incubator" word in all urls (#1802)
7d63289 is described below
commit 7d6328974e1f261745023a5ff347df221e10fd79
Author: Xiangdong Huang <[email protected]>
AuthorDate: Tue Oct 6 14:57:28 2020 +0800
remove "incubator" word in all urls (#1802)
---
README_ZH.md | 18 ++++-----
docker/src/main/Dockerfile | 6 +--
docker/src/main/Dockerfile-0.8.1 | 4 +-
docker/src/main/Dockerfile-0.9.0 | 4 +-
docker/src/main/Dockerfile-0.9.1 | 4 +-
docker/src/main/Dockerfile-0.9.1-jre8 | 4 +-
docs/Community/Feedback.md | 4 +-
docs/Development/ContributeGuide.md | 2 +-
docs/Development/HowToCommit.md | 22 +++++------
docs/Development/VoteRelease.md | 4 +-
docs/Download/README.md | 46 +++++++++++-----------
docs/zh/Community/Community-Powered By.md | 2 +-
docs/zh/Community/Feedback.md | 4 +-
docs/zh/Development/ContributeGuide.md | 2 +-
docs/zh/Development/HowToCommit.md | 20 +++++-----
docs/zh/Development/VoteRelease.md | 4 +-
docs/zh/Download/README.md | 46 +++++++++++-----------
example/tsfile/readme.md | 2 +-
site/README-zh.md | 6 ++-
site/README.md | 2 +
site/pom.xml | 20 +++++-----
site/src/main/.vuepress/config.js | 2 +-
site/src/main/.vuepress/theme/components/Page.vue | 2 +-
.../.vuepress/theme/global-components/IoTDB.vue | 8 ++--
site/src/main/deploy.js | 2 +-
site/src/main/package.json | 2 +-
tools/common.sh | 8 ++--
tools/download_staged_release.sh | 4 +-
28 files changed, 129 insertions(+), 125 deletions(-)
diff --git a/README_ZH.md b/README_ZH.md
index 9e7a499..e7772bd 100644
--- a/README_ZH.md
+++ b/README_ZH.md
@@ -21,12 +21,12 @@
[English](./README.md) | [中文](./README_ZH.md)
# IoTDB
-[](https://www.travis-ci.org/apache/incubator-iotdb)
-[](https://coveralls.io/repos/github/apache/incubator-iotdb/badge.svg?branch=master)
-[](https://github.com/apache/incubator-iotdb/releases)
+[](https://www.travis-ci.org/apache/iotdb)
+[](https://coveralls.io/repos/github/apache/iotdb/badge.svg?branch=master)
+[](https://github.com/apache/iotdb/releases)
[](https://www.apache.org/licenses/LICENSE-2.0.html)
-
-
+
+


[](https://iotdb.apache.org/)
@@ -109,7 +109,7 @@ IoTDB提供了三种安装方法,您可以参考以下建议,选择最适合
从 git 克隆源代码:
```
-git clone https://github.com/apache/incubator-iotdb.git
+git clone https://github.com/apache/iotdb.git
```
默认的主分支是dev分支,如果你想使用某个发布版本x.x.x,请切换分支:
@@ -118,7 +118,7 @@ git clone https://github.com/apache/incubator-iotdb.git
git checkout release/x.x.x
```
-在 incubator-iotdb 根目录下执行 maven 编译:
+在 iotdb 根目录下执行 maven 编译:
```
> mvn clean package -DskipTests
@@ -314,7 +314,7 @@ server 可以使用 "ctrl-C" 或者执行下面的脚本:
## 只编译 server
-在 incubator-iotdb 根目录下执行:
+在 iotdb 根目录下执行:
```
> mvn clean package -pl server -am -DskipTests
@@ -325,7 +325,7 @@ server 可以使用 "ctrl-C" 或者执行下面的脚本:
## 只编译 cli
-在 incubator-iotdb 根目录下执行:
+在 iotdb 根目录下执行:
```
> mvn clean package -pl cli -am -DskipTests
diff --git a/docker/src/main/Dockerfile b/docker/src/main/Dockerfile
index 0601e2e..2698f93 100644
--- a/docker/src/main/Dockerfile
+++ b/docker/src/main/Dockerfile
@@ -26,10 +26,10 @@ RUN apt update \
&& rm -rf jdk11.tar.gz \
&& export JAVA_HOME=/jdk-11.0.2/ \
&& export PATH="$JAVA_HOME/bin:$PATH" \
- && wget https://github.com/apache/incubator-iotdb/archive/master.zip \
+ && wget https://github.com/apache/iotdb/archive/master.zip \
&& unzip master.zip \
&& rm master.zip \
- && cd incubator-iotdb-master \
+ && cd iotdb-master \
&& mvn package -pl server,client -am -Papache-release -DskipTests
-Dthrift.download-url="http://www.apache.org/licenses/LICENSE-2.0.txt"
-Dthrift.exec.absolute.path="/usr/bin/thrift" \
&& cd target/ \
&& unzip apache-iotdb-0.11.0-SNAPSHOT-bin.zip \
@@ -39,7 +39,7 @@ RUN apt update \
&& mvn clean \
&& ls -lh ~/.m2 \
&& rm -rf ~/.m2 \
- && rm -rf /incubator-iotdb-master \
+ && rm -rf /iotdb-master \
&& sed -i '119d' /iotdb/conf/logback.xml \
&& apt remove wget maven unzip thrift-compiler -y \
&& apt autoremove -y \
diff --git a/docker/src/main/Dockerfile-0.8.1 b/docker/src/main/Dockerfile-0.8.1
index 5ad73b7..b4d955c 100644
--- a/docker/src/main/Dockerfile-0.8.1
+++ b/docker/src/main/Dockerfile-0.8.1
@@ -21,9 +21,9 @@ FROM openjdk:11-jre-slim
RUN apt update \
# procps is for `free` command
&& apt install wget unzip lsof procps -y \
- && wget
https://www-us.apache.org/dist/incubator/iotdb/0.8.1-incubating/apache-iotdb-0.8.1-incubating-bin.zip
\
+ && wget
https://www-us.apache.org/dist/iotdb/0.8.1-incubating/apache-iotdb-0.8.1-incubating-bin.zip
\
# if you are in China, use the following URL
- #&& wget
http://mirrors.tuna.tsinghua.edu.cn/apache/incubator/iotdb/0.8.1-incubating/apache-iotdb-0.8.1-incubating-bin.zip
\
+ #&& wget
http://mirrors.tuna.tsinghua.edu.cn/apache/iotdb/0.8.1-incubating/apache-iotdb-0.8.1-incubating-bin.zip
\
&& unzip apache-iotdb-0.8.1-incubating-bin.zip \
&& rm apache-iotdb-0.8.1-incubating-bin.zip \
&& mv apache-iotdb-0.8.1-incubating /iotdb \
diff --git a/docker/src/main/Dockerfile-0.9.0 b/docker/src/main/Dockerfile-0.9.0
index 089a018..8a970ed 100644
--- a/docker/src/main/Dockerfile-0.9.0
+++ b/docker/src/main/Dockerfile-0.9.0
@@ -21,9 +21,9 @@ FROM openjdk:11-jre-slim
RUN apt update \
# procps is for `free` command
&& apt install wget unzip lsof procps -y \
- && wget
https://www-us.apache.org/dist/incubator/iotdb/0.9.0-incubating/apache-iotdb-0.9.0-incubating-bin.zip
\
+ && wget
https://www-us.apache.org/dist/iotdb/0.9.0-incubating/apache-iotdb-0.9.0-incubating-bin.zip
\
# if you are in China, use the following URL
- #&& wget
http://mirrors.tuna.tsinghua.edu.cn/apache/incubator/iotdb/0.9.0-incubating/apache-iotdb-0.9.0-incubating-bin.zip
\
+ #&& wget
http://mirrors.tuna.tsinghua.edu.cn/apache/iotdb/0.9.0-incubating/apache-iotdb-0.9.0-incubating-bin.zip
\
&& unzip apache-iotdb-0.9.0-incubating-bin.zip \
&& rm apache-iotdb-0.9.0-incubating-bin.zip \
&& mv apache-iotdb-0.9.0-incubating /iotdb \
diff --git a/docker/src/main/Dockerfile-0.9.1 b/docker/src/main/Dockerfile-0.9.1
index a2be2e4..a4a6f4b 100644
--- a/docker/src/main/Dockerfile-0.9.1
+++ b/docker/src/main/Dockerfile-0.9.1
@@ -21,9 +21,9 @@ FROM openjdk:11-jre-slim
RUN apt update \
# procps is for `free` command
&& apt install wget unzip lsof procps -y \
- && wget
https://www-us.apache.org/dist/incubator/iotdb/0.9.1-incubating/apache-iotdb-0.9.1-incubating-bin.zip
\
+ && wget
https://www-us.apache.org/dist/iotdb/0.9.1-incubating/apache-iotdb-0.9.1-incubating-bin.zip
\
# if you are in China, use the following URL
- #&& wget
http://mirrors.tuna.tsinghua.edu.cn/apache/incubator/iotdb/0.9.1-incubating/apache-iotdb-0.9.1-incubating-bin.zip
\
+ #&& wget
http://mirrors.tuna.tsinghua.edu.cn/apache/iotdb/0.9.1-incubating/apache-iotdb-0.9.1-incubating-bin.zip
\
&& unzip apache-iotdb-0.9.1-incubating-bin.zip \
&& rm apache-iotdb-0.9.1-incubating-bin.zip \
&& mv apache-iotdb-0.9.1-incubating /iotdb \
diff --git a/docker/src/main/Dockerfile-0.9.1-jre8
b/docker/src/main/Dockerfile-0.9.1-jre8
index 04a478a..4727c99 100644
--- a/docker/src/main/Dockerfile-0.9.1-jre8
+++ b/docker/src/main/Dockerfile-0.9.1-jre8
@@ -21,9 +21,9 @@ FROM openjdk:8-jre
RUN apt update \
# procps is for `free` command
&& apt install wget unzip lsof procps -y \
- && wget
https://www-us.apache.org/dist/incubator/iotdb/0.9.1-incubating/apache-iotdb-0.9.1-incubating-bin.zip
\
+ && wget
https://www-us.apache.org/dist/iotdb/0.9.1-incubating/apache-iotdb-0.9.1-incubating-bin.zip
\
# if you are in China, use the following URL
- #&& wget
http://mirrors.tuna.tsinghua.edu.cn/apache/incubator/iotdb/0.9.1-incubating/apache-iotdb-0.9.1-incubating-bin.zip
\
+ #&& wget
http://mirrors.tuna.tsinghua.edu.cn/apache/iotdb/0.9.1-incubating/apache-iotdb-0.9.1-incubating-bin.zip
\
&& unzip apache-iotdb-0.9.1-incubating-bin.zip \
&& rm apache-iotdb-0.9.1-incubating-bin.zip \
&& mv apache-iotdb-0.9.1-incubating /iotdb \
diff --git a/docs/Community/Feedback.md b/docs/Community/Feedback.md
index 75e7102..bc67a05 100644
--- a/docs/Community/Feedback.md
+++ b/docs/Community/Feedback.md
@@ -33,11 +33,11 @@ As an Apache project, we are using mailing list, JIRA, and
Github Issues to obta
* JIRA issue: https://issues.apache.org/jira/projects/IOTDB/issues
-* Github issue: https://github.com/apache/incubator-iotdb/issues
+* Github issue: https://github.com/apache/iotdb/issues
* Twitter: https://twitter.com/apacheiotdb
-* We look forward to you sharing the experience of using IoTDB:
[Survey](https://github.com/apache/incubator-iotdb/issues/748)
+* We look forward to you sharing the experience of using IoTDB:
[Survey](https://github.com/apache/iotdb/issues/748)
* For Chinese users, we have a Wechat Public Account. For more details, read
[交流](../zh/Community/Feedback.md)
diff --git a/docs/Development/ContributeGuide.md
b/docs/Development/ContributeGuide.md
index 2e5ae1e..541d700 100644
--- a/docs/Development/ContributeGuide.md
+++ b/docs/Development/ContributeGuide.md
@@ -25,7 +25,7 @@
IoTDB official website:https://iotdb.apache.org/
-Code library:https://github.com/apache/incubator-iotdb/tree/master
+Code library:https://github.com/apache/iotdb/tree/master
Get started
quickly:http://iotdb.apache.org/UserGuide/master/Get%20Started/QuickStart.html
diff --git a/docs/Development/HowToCommit.md b/docs/Development/HowToCommit.md
index 16d28e5..96bbf35 100644
--- a/docs/Development/HowToCommit.md
+++ b/docs/Development/HowToCommit.md
@@ -31,11 +31,11 @@ After submitting the pr, after passing the Travis-CI test
and Sonar code quality
## PR guide
-You can easily submit [Pull Request
(PR)](https://help.github.com/articles/about-pull-requests/) on Github, the
following will use this website project [apache /
incubator-iotdb](https://github.com/apache/incubator-iotdb) as an example (if
it is another project, please replace the project name incubator-iotdb)
+You can easily submit [Pull Request
(PR)](https://help.github.com/articles/about-pull-requests/) on Github, the
following will use this website project
[apache/iotdb](https://github.com/apache/iotdb) as an example (if it is another
project, please replace the project name iotdb)
### Fork repository
-Visit the apache/incubator-iotdb project’s [github
page](https://github.com/apache/incubator-iotdb), click `Fork` button on the
right left cornor.
+Visit the apache/iotdb project’s [github
page](https://github.com/apache/iotdb), click `Fork` button on the right left
cornor.

@@ -44,28 +44,28 @@ Visit the apache/incubator-iotdb project’s [github
page](https://github.com/ap
- Clone the source code to local machine:
```
-git clone https://github.com/<your_github_name>/incubator-iotdb.git
+git clone https://github.com/<your_github_name>/iotdb.git
```
**Note: substitute <your_github_name> with your github username.**
After the clone is done, the origin remote will point to the default branch of
the cloned repository.
-- add apache/incubator-iotdb as upstream remote:
+- add apache/iotdb as upstream remote:
```
-cd incubator-iotdb
-git remote add upstream https://github.com/apache/incubator-iotdb.git
+cd iotdb
+git remote add upstream https://github.com/apache/iotdb.git
```
- Check the local repository’s remotes
```
git remote -v
-origin https://github.com/<your_github_name>/incubator-iotdb.git (fetch)
-origin https://github.com/<your_github_name>/incubator-iotdb.git(push)
-upstream https://github.com/apache/incubator-iotdb.git (fetch)
-upstream https://github.com/apache/incubator-iotdb.git (push)
+origin https://github.com/<your_github_name>/iotdb.git (fetch)
+origin https://github.com/<your_github_name>/iotdb.git(push)
+upstream https://github.com/apache/iotdb.git (fetch)
+upstream https://github.com/apache/iotdb.git (push)
```
- Create a new branch to start working:(e.g. fix)
@@ -136,4 +136,4 @@ Repeat this process until all commits are successfully
applied. And finally run
git push -f origin fix
```
-The code of conduct is derived from[Apache
ServiceComb](http://servicecomb.apache.org/developers/submit-codes/)
\ No newline at end of file
+The code of conduct is derived from[Apache
ServiceComb](http://servicecomb.apache.org/developers/submit-codes/)
diff --git a/docs/Development/VoteRelease.md b/docs/Development/VoteRelease.md
index 15c6e7e..2bef55e 100644
--- a/docs/Development/VoteRelease.md
+++ b/docs/Development/VoteRelease.md
@@ -25,11 +25,11 @@ For non-Chinese users, please read
https://cwiki.apache.org/confluence/display/I
## Download everything under voting version / rc
-https://dist.apache.org/repos/dist/dev/incubator/iotdb/
+https://dist.apache.org/repos/dist/dev/iotdb/
## Import the public key of the release manager
-https://dist.apache.org/repos/dist/dev/incubator/iotdb/KEYS
+https://dist.apache.org/repos/dist/dev/iotdb/KEYS
At the bottom is the public key of the Release Manager (RM)
diff --git a/docs/Download/README.md b/docs/Download/README.md
index 0869e5e..f3d0f40 100644
--- a/docs/Download/README.md
+++ b/docs/Download/README.md
@@ -30,33 +30,33 @@
</tr>
<tr>
<td>0.10.1</td>
- <td><a
href="https://www.apache.org/dyn/closer.cgi/incubator/iotdb/0.10.1-incubating/apache-iotdb-0.10.1-incubating-bin.zip">Release</a></td>
- <td><a
href="https://downloads.apache.org/incubator/iotdb/0.10.1-incubating/apache-iotdb-0.10.1-incubating-bin.zip.sha512">SHA512</a></td>
- <td><a
href="https://downloads.apache.org/incubator/iotdb/0.10.1-incubating/apache-iotdb-0.10.1-incubating-bin.zip.asc">ASC</a></td>
- <td><a
href="https://www.apache.org/dyn/closer.cgi/incubator/iotdb/0.10.1-incubating/apache-iotdb-0.10.1-incubating-source-release.zip">Sources</a></td>
- <td><a
href="https://downloads.apache.org/incubator/iotdb/0.10.1-incubating/apache-iotdb-0.10.1-incubating-source-release.zip.sha512">SHA512</a></td>
- <td><a
href="https://downloads.apache.org/incubator/iotdb/0.10.1-incubating/apache-iotdb-0.10.1-incubating-source-release.zip.asc">ASC</a></td>
- <td><a
href="https://raw.githubusercontent.com/apache/incubator-iotdb/release/0.10.1/RELEASE_NOTES.md">release
notes</a></td>
+ <td><a
href="https://www.apache.org/dyn/closer.cgi/iotdb/0.10.1-incubating/apache-iotdb-0.10.1-incubating-bin.zip">Release</a></td>
+ <td><a
href="https://downloads.apache.org/iotdb/0.10.1-incubating/apache-iotdb-0.10.1-incubating-bin.zip.sha512">SHA512</a></td>
+ <td><a
href="https://downloads.apache.org/iotdb/0.10.1-incubating/apache-iotdb-0.10.1-incubating-bin.zip.asc">ASC</a></td>
+ <td><a
href="https://www.apache.org/dyn/closer.cgi/iotdb/0.10.1-incubating/apache-iotdb-0.10.1-incubating-source-release.zip">Sources</a></td>
+ <td><a
href="https://downloads.apache.org/iotdb/0.10.1-incubating/apache-iotdb-0.10.1-incubating-source-release.zip.sha512">SHA512</a></td>
+ <td><a
href="https://downloads.apache.org/iotdb/0.10.1-incubating/apache-iotdb-0.10.1-incubating-source-release.zip.asc">ASC</a></td>
+ <td><a
href="https://raw.githubusercontent.com/apache/iotdb/release/0.10.1/RELEASE_NOTES.md">release
notes</a></td>
</tr>
<tr>
<td>0.9.3</td>
- <td><a
href="https://www.apache.org/dyn/closer.cgi/incubator/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-bin.zip">Release</a></td>
- <td><a
href="https://downloads.apache.org/incubator/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-bin.zip.sha512">SHA512</a></td>
- <td><a
href="https://downloads.apache.org/incubator/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-bin.zip.asc">ASC</a></td>
- <td><a
href="https://www.apache.org/dyn/closer.cgi/incubator/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-source-release.zip">Sources</a></td>
- <td><a
href="https://downloads.apache.org/incubator/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-source-release.zip.sha512">SHA512</a></td>
- <td><a
href="https://downloads.apache.org/incubator/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-source-release.zip.asc">ASC</a></td>
- <td><a
href="https://raw.githubusercontent.com/apache/incubator-iotdb/release/0.9.3/RELEASE_NOTES.md">release
notes</a></td>
+ <td><a
href="https://www.apache.org/dyn/closer.cgi/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-bin.zip">Release</a></td>
+ <td><a
href="https://downloads.apache.org/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-bin.zip.sha512">SHA512</a></td>
+ <td><a
href="https://downloads.apache.org/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-bin.zip.asc">ASC</a></td>
+ <td><a
href="https://www.apache.org/dyn/closer.cgi/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-source-release.zip">Sources</a></td>
+ <td><a
href="https://downloads.apache.org/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-source-release.zip.sha512">SHA512</a></td>
+ <td><a
href="https://downloads.apache.org/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-source-release.zip.asc">ASC</a></td>
+ <td><a
href="https://raw.githubusercontent.com/apache/iotdb/release/0.9.3/RELEASE_NOTES.md">release
notes</a></td>
</tr>
<tr>
<td>0.8.2</td>
- <td><a
href="https://www.apache.org/dyn/closer.cgi/incubator/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-bin.zip">Release</a></td>
- <td><a
href="https://downloads.apache.org/incubator/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-bin.zip.sha512">SHA512</a></td>
- <td><a
href="https://downloads.apache.org/incubator/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-bin.zip.asc">ASC</a></td>
- <td><a
href="https://www.apache.org/dyn/closer.cgi/incubator/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-source-release.zip">Sources</a></td>
- <td><a
href="https://downloads.apache.org/incubator/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-source-release.zip.sha512">SHA512</a></td>
- <td><a
href="https://downloads.apache.org/incubator/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-source-release.zip.asc">ASC</a></td>
- <td><a
href="https://raw.githubusercontent.com/apache/incubator-iotdb/release/0.8.2/RELEASE_NOTES.md">release
notes</a></td>
+ <td><a
href="https://www.apache.org/dyn/closer.cgi/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-bin.zip">Release</a></td>
+ <td><a
href="https://downloads.apache.org/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-bin.zip.sha512">SHA512</a></td>
+ <td><a
href="https://downloads.apache.org/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-bin.zip.asc">ASC</a></td>
+ <td><a
href="https://www.apache.org/dyn/closer.cgi/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-source-release.zip">Sources</a></td>
+ <td><a
href="https://downloads.apache.org/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-source-release.zip.sha512">SHA512</a></td>
+ <td><a
href="https://downloads.apache.org/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-source-release.zip.asc">ASC</a></td>
+ <td><a
href="https://raw.githubusercontent.com/apache/iotdb/release/0.8.2/RELEASE_NOTES.md">release
notes</a></td>
</tr>
</table>
@@ -92,10 +92,10 @@
# All releases
-Find all releases in the [Archive incubating
repository](https://archive.apache.org/dist/incubator/iotdb/).
+Find all releases in the [Archive
repository](https://archive.apache.org/dist/iotdb/).
# Verifying Hashes and Signatures
-Along with our releases, we also provide sha512 hashes in *.sha512 files and
cryptographic signatures in *.asc files. The Apache Software Foundation has an
extensive tutorial to [verify hashes and signatures
](http://www.apache.org/info/verification.html)which you can follow by using
any of these release-signing [KEYS
](https://downloads.apache.org/incubator/iotdb/KEYS).
+Along with our releases, we also provide sha512 hashes in *.sha512 files and
cryptographic signatures in *.asc files. The Apache Software Foundation has an
extensive tutorial to [verify hashes and signatures
](http://www.apache.org/info/verification.html)which you can follow by using
any of these release-signing [KEYS ](https://downloads.apache.org/iotdb/KEYS).
diff --git a/docs/zh/Community/Community-Powered By.md
b/docs/zh/Community/Community-Powered By.md
index 3371a9e..9db805c 100644
--- a/docs/zh/Community/Community-Powered By.md
+++ b/docs/zh/Community/Community-Powered By.md
@@ -39,7 +39,7 @@
### 相关贡献或应用的公司和组织
要将自己添加到列表中,请给[email protected]发送电子邮件,其中包含您的组织名称,URL,正在使用的IoTDB组件列表以及用例的简短描述。
-你也可以在[Github](https://github.com/apache/incubator-iotdb/issues/748) 留言。
+你也可以在[Github](https://github.com/apache/iotdb/issues/748) 留言。
- 清华大学软件学院和大数据系统软件国家工程实验室最初开发了IoTDB,并捐献给Apache。
diff --git a/docs/zh/Community/Feedback.md b/docs/zh/Community/Feedback.md
index d25ccc1..9073c86 100644
--- a/docs/zh/Community/Feedback.md
+++ b/docs/zh/Community/Feedback.md
@@ -31,11 +31,11 @@
* JIRA issue: https://issues.apache.org/jira/projects/IOTDB/issues
-* Github issue: https://github.com/apache/incubator-iotdb/issues
+* Github issue: https://github.com/apache/iotdb/issues
* Twitter: https://twitter.com/apacheiotdb
-* 我们非常期待您分享您使用IoTDB的经验:
[调研问卷](https://github.com/apache/incubator-iotdb/issues/748)
+* 我们非常期待您分享您使用IoTDB的经验: [调研问卷](https://github.com/apache/iotdb/issues/748)
* 对中文用户,欢迎关注微信公众号,IoTDB漫游指南
diff --git a/docs/zh/Development/ContributeGuide.md
b/docs/zh/Development/ContributeGuide.md
index 3dc82e4..6cdbd87 100644
--- a/docs/zh/Development/ContributeGuide.md
+++ b/docs/zh/Development/ContributeGuide.md
@@ -25,7 +25,7 @@
IoTDB 官网:https://iotdb.apache.org/
-代码库:https://github.com/apache/incubator-iotdb/tree/master
+代码库:https://github.com/apache/iotdb/tree/master
快速上手:http://iotdb.apache.org/UserGuide/master/Get%20Started/QuickStart.html
diff --git a/docs/zh/Development/HowToCommit.md
b/docs/zh/Development/HowToCommit.md
index ec0fa06..059d053 100644
--- a/docs/zh/Development/HowToCommit.md
+++ b/docs/zh/Development/HowToCommit.md
@@ -31,11 +31,11 @@ IoTDB诚邀广大开发者参与开源项目构建
## PR指南
-在Github上面可以很方便地提交 [Pull Request
(PR)](https://help.github.com/articles/about-pull-requests/),下面将以本网站项目[apache/incubator-iotdb](https://github.com/apache/incubator-iotdb)
为例(如果是其他项目,请替换项目名incubator-iotdb)
+在Github上面可以很方便地提交 [Pull Request
(PR)](https://help.github.com/articles/about-pull-requests/),下面将以本网站项目[apache/iotdb](https://github.com/apache/iotdb)
为例(如果是其他项目,请替换项目名iotdb)
### Fork仓库
-进入 apache/incubator-iotdb 的 [github
页面](https://github.com/apache/incubator-iotdb) ,点击右上角按钮 `Fork` 进行 Fork
+进入 apache/iotdb 的 [github 页面](https://github.com/apache/iotdb) ,点击右上角按钮 `Fork`
进行 Fork

@@ -44,28 +44,28 @@ IoTDB诚邀广大开发者参与开源项目构建
- 将代码克隆到本地:
```
-git clone https://github.com/<your_github_name>/incubator-iotdb.git
+git clone https://github.com/<your_github_name>/iotdb.git
```
**请将 <your_github_name> 替换为您的github名字**
clone完成后,origin会默认指向github上的远程fork地址。
-- 将 apache/incubator-iotdb 添加为本地仓库的远程分支 upstream:
+- 将 apache/iotdb 添加为本地仓库的远程分支 upstream:
```
-cd incubator-iotdb
-git remote add upstream https://github.com/apache/incubator-iotdb.git
+cd iotdb
+git remote add upstream https://github.com/apache/iotdb.git
```
- 检查远程仓库设置:
```
git remote -v
-origin https://github.com/<your_github_name>/incubator-iotdb.git (fetch)
-origin https://github.com/<your_github_name>/incubator-iotdb.git(push)
-upstream https://github.com/apache/incubator-iotdb.git (fetch)
-upstream https://github.com/apache/incubator-iotdb.git (push)
+origin https://github.com/<your_github_name>/iotdb.git (fetch)
+origin https://github.com/<your_github_name>/iotdb.git(push)
+upstream https://github.com/apache/iotdb.git (fetch)
+upstream https://github.com/apache/iotdb.git (push)
```
- 新建分支以便在分支上做修改:(假设新建的分支名为fix)
diff --git a/docs/zh/Development/VoteRelease.md
b/docs/zh/Development/VoteRelease.md
index 8f8edd8..5250df3 100644
--- a/docs/zh/Development/VoteRelease.md
+++ b/docs/zh/Development/VoteRelease.md
@@ -25,11 +25,11 @@ For non-Chinese users, please read
https://cwiki.apache.org/confluence/display/I
## 下载投票的 版本/rc 下的所有内容
-https://dist.apache.org/repos/dist/dev/incubator/iotdb/
+https://dist.apache.org/repos/dist/dev/iotdb/
## 导入发布经理的公钥
-https://dist.apache.org/repos/dist/dev/incubator/iotdb/KEYS
+https://dist.apache.org/repos/dist/dev/iotdb/KEYS
最下边有 Release Manager (RM) 的公钥
diff --git a/docs/zh/Download/README.md b/docs/zh/Download/README.md
index d1f587e..beaa88c 100644
--- a/docs/zh/Download/README.md
+++ b/docs/zh/Download/README.md
@@ -29,33 +29,33 @@
</tr>
<tr>
<td>0.10.1</td>
- <td><a
href="https://www.apache.org/dyn/closer.cgi/incubator/iotdb/0.10.1-incubating/apache-iotdb-0.10.1-incubating-bin.zip">Release</a></td>
- <td><a
href="https://downloads.apache.org/incubator/iotdb/0.10.1-incubating/apache-iotdb-0.10.1-incubating-bin.zip.sha512">SHA512</a></td>
- <td><a
href="https://downloads.apache.org/incubator/iotdb/0.10.1-incubating/apache-iotdb-0.10.1-incubating-bin.zip.asc">ASC</a></td>
- <td><a
href="https://www.apache.org/dyn/closer.cgi/incubator/iotdb/0.10.1-incubating/apache-iotdb-0.10.1-incubating-source-release.zip">Sources</a></td>
- <td><a
href="https://downloads.apache.org/incubator/iotdb/0.10.1-incubating/apache-iotdb-0.10.1-incubating-source-release.zip.sha512">SHA512</a></td>
- <td><a
href="https://downloads.apache.org/incubator/iotdb/0.10.1-incubating/apache-iotdb-0.10.1-incubating-source-release.zip.asc">ASC</a></td>
- <td><a
href="https://raw.githubusercontent.com/apache/incubator-iotdb/release/0.10.1/RELEASE_NOTES.md">release
notes</a></td>
+ <td><a
href="https://www.apache.org/dyn/closer.cgi/iotdb/0.10.1-incubating/apache-iotdb-0.10.1-incubating-bin.zip">Release</a></td>
+ <td><a
href="https://downloads.apache.org/iotdb/0.10.1-incubating/apache-iotdb-0.10.1-incubating-bin.zip.sha512">SHA512</a></td>
+ <td><a
href="https://downloads.apache.org/iotdb/0.10.1-incubating/apache-iotdb-0.10.1-incubating-bin.zip.asc">ASC</a></td>
+ <td><a
href="https://www.apache.org/dyn/closer.cgi/iotdb/0.10.1-incubating/apache-iotdb-0.10.1-incubating-source-release.zip">Sources</a></td>
+ <td><a
href="https://downloads.apache.org/iotdb/0.10.1-incubating/apache-iotdb-0.10.1-incubating-source-release.zip.sha512">SHA512</a></td>
+ <td><a
href="https://downloads.apache.org/iotdb/0.10.1-incubating/apache-iotdb-0.10.1-incubating-source-release.zip.asc">ASC</a></td>
+ <td><a
href="https://raw.githubusercontent.com/apache/iotdb/release/0.10.1/RELEASE_NOTES.md">release
notes</a></td>
</tr>
<tr>
<td>0.9.3</td>
- <td><a
href="https://www.apache.org/dyn/closer.cgi/incubator/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-bin.zip">Release</a></td>
- <td><a
href="https://downloads.apache.org/incubator/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-bin.zip.sha512">SHA512</a></td>
- <td><a
href="https://downloads.apache.org/incubator/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-bin.zip.asc">ASC</a></td>
- <td><a
href="https://www.apache.org/dyn/closer.cgi/incubator/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-source-release.zip">Sources</a></td>
- <td><a
href="https://downloads.apache.org/incubator/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-source-release.zip.sha512">SHA512</a></td>
- <td><a
href="https://downloads.apache.org/incubator/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-source-release.zip.asc">ASC</a></td>
- <td><a
href="https://raw.githubusercontent.com/apache/incubator-iotdb/release/0.9.3/RELEASE_NOTES.md">release
notes</a></td>
+ <td><a
href="https://www.apache.org/dyn/closer.cgi/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-bin.zip">Release</a></td>
+ <td><a
href="https://downloads.apache.org/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-bin.zip.sha512">SHA512</a></td>
+ <td><a
href="https://downloads.apache.org/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-bin.zip.asc">ASC</a></td>
+ <td><a
href="https://www.apache.org/dyn/closer.cgi/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-source-release.zip">Sources</a></td>
+ <td><a
href="https://downloads.apache.org/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-source-release.zip.sha512">SHA512</a></td>
+ <td><a
href="https://downloads.apache.org/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-source-release.zip.asc">ASC</a></td>
+ <td><a
href="https://raw.githubusercontent.com/apache/iotdb/release/0.9.3/RELEASE_NOTES.md">release
notes</a></td>
</tr>
<tr>
<td>0.8.2</td>
- <td><a
href="https://www.apache.org/dyn/closer.cgi/incubator/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-bin.zip">Release</a></td>
- <td><a
href="https://downloads.apache.org/incubator/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-bin.zip.sha512">SHA512</a></td>
- <td><a
href="https://downloads.apache.org/incubator/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-bin.zip.asc">ASC</a></td>
- <td><a
href="https://www.apache.org/dyn/closer.cgi/incubator/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-source-release.zip">Sources</a></td>
- <td><a
href="https://downloads.apache.org/incubator/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-source-release.zip.sha512">SHA512</a></td>
- <td><a
href="https://downloads.apache.org/incubator/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-source-release.zip.asc">ASC</a></td>
- <td><a
href="https://raw.githubusercontent.com/apache/incubator-iotdb/release/0.8.2/RELEASE_NOTES.md">release
notes</a></td>
+ <td><a
href="https://www.apache.org/dyn/closer.cgi/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-bin.zip">Release</a></td>
+ <td><a
href="https://downloads.apache.org/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-bin.zip.sha512">SHA512</a></td>
+ <td><a
href="https://downloads.apache.org/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-bin.zip.asc">ASC</a></td>
+ <td><a
href="https://www.apache.org/dyn/closer.cgi/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-source-release.zip">Sources</a></td>
+ <td><a
href="https://downloads.apache.org/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-source-release.zip.sha512">SHA512</a></td>
+ <td><a
href="https://downloads.apache.org/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-source-release.zip.asc">ASC</a></td>
+ <td><a
href="https://raw.githubusercontent.com/apache/iotdb/release/0.8.2/RELEASE_NOTES.md">release
notes</a></td>
</tr>
</table>
@@ -83,10 +83,10 @@
# 所有版本
-在 [Archive incubating
repository](https://archive.apache.org/dist/incubator/iotdb/)查看所有版本
+在 [Archive repository](https://archive.apache.org/dist/iotdb/)查看所有版本
# 验证哈希和签名
-除了我们的发行版,我们还在* .sha512文件中提供了sha512散列,并在* .asc文件中提供了加密签名。 Apache Software
Foundation提供了广泛的教程来
[验证哈希和签名](http://www.apache.org/info/verification.html),您可以使用任何这些发布签名的[KEYS](https://downloads.apache.org/incubator/iotdb/KEYS)来遵循这些哈希和签名。
+除了我们的发行版,我们还在* .sha512文件中提供了sha512散列,并在* .asc文件中提供了加密签名。 Apache Software
Foundation提供了广泛的教程来
[验证哈希和签名](http://www.apache.org/info/verification.html),您可以使用任何这些发布签名的[KEYS](https://downloads.apache.org/iotdb/KEYS)来遵循这些哈希和签名。
diff --git a/example/tsfile/readme.md b/example/tsfile/readme.md
index c9e2b70..46408e1 100644
--- a/example/tsfile/readme.md
+++ b/example/tsfile/readme.md
@@ -81,4 +81,4 @@ The example is to show how to write and read a TsFile File.
This class is to show the structure of a TsFile.
### Notice
- For detail, please refer to
https://github.com/apache/incubator-iotdb/blob/master/tsfile/README.md.
+ For detail, please refer to
https://github.com/apache/iotdb/blob/master/tsfile/README.md.
diff --git a/site/README-zh.md b/site/README-zh.md
index d4112f9..8dbc5c6 100644
--- a/site/README-zh.md
+++ b/site/README-zh.md
@@ -29,11 +29,11 @@
## 如何建立
-跑`mvn package-DskipTests`
+跑`mvn package -DskipTests`
## 如何调试
-当跑完 `mvn package-DskipTests`, 所有的源文档都会复制到target/vue-source目录下
+当跑完 `mvn package -DskipTests`, 所有的源文档都会复制到target/vue-source目录下
如果你想要调试:
@@ -54,6 +54,8 @@ npm run build
Apache ID和密码是必须的
+或直接运行`mvn package scm-publish:publish-scm -Dusername={你的Apache ID}
-Dpassword={你的Apache账号密码}`
+
## 常见问题
如果你在MacOS遇到以下问题:
diff --git a/site/README.md b/site/README.md
index e7700a5..1f154fe 100644
--- a/site/README.md
+++ b/site/README.md
@@ -62,6 +62,8 @@ run `mvn package scm-publish:publish-scm`.
Apache ID and passwored is needed.
+Or run `mvn package scm-publish:publish-scm -Dusername={YOUR_APACHE_ID}
-Dpassword={YOUR_APACHE_PASSWORD}`
+
## FAQ
If you get an error on your MacOS:
diff --git a/site/pom.xml b/site/pom.xml
index c9cd77b..9d2bb03 100644
--- a/site/pom.xml
+++ b/site/pom.xml
@@ -34,7 +34,7 @@
<distributionManagement>
<site>
<id>apache.website</id>
-
<url>scm:git:https://gitbox.apache.org/repos/asf/incubator-iotdb-website.git</url>
+
<url>scm:git:https://gitbox.apache.org/repos/asf/iotdb-website.git</url>
</site>
</distributionManagement>
<build>
@@ -201,7 +201,7 @@
<goal>wget</goal>
</goals>
<configuration>
-
<url>https://github.com/apache/incubator-iotdb/archive/rel/0.10.zip</url>
+
<url>https://github.com/apache/iotdb/archive/rel/0.10.zip</url>
<outputDirectory>${project.build.directory}/download</outputDirectory>
<outputFileName>0.10.x.zip</outputFileName>
</configuration>
@@ -213,7 +213,7 @@
<goal>wget</goal>
</goals>
<configuration>
-
<url>https://github.com/apache/incubator-iotdb/archive/rel/0.9.zip</url>
+
<url>https://github.com/apache/iotdb/archive/rel/0.9.zip</url>
<outputDirectory>${project.build.directory}/download</outputDirectory>
<outputFileName>0.9.x.zip</outputFileName>
</configuration>
@@ -225,7 +225,7 @@
<goal>wget</goal>
</goals>
<configuration>
-
<url>https://github.com/apache/incubator-iotdb/archive/rel/0.8.zip</url>
+
<url>https://github.com/apache/iotdb/archive/rel/0.8.zip</url>
<outputDirectory>${project.build.directory}/download</outputDirectory>
<outputFileName>0.8.x.zip</outputFileName>
</configuration>
@@ -247,7 +247,7 @@
<phase>generate-sources</phase>
<configuration>
<fileset>
-
<directory>${project.build.directory}/download/0.10.x.zip/incubator-iotdb-rel-0.10/docs/UserGuide</directory>
+
<directory>${project.build.directory}/download/0.10.x.zip/iotdb-rel-0.10/docs/UserGuide</directory>
<outputDirectory>${project.build.directory}/vue-source/src/UserGuide/V0.10.x</outputDirectory>
</fileset>
</configuration>
@@ -260,7 +260,7 @@
<phase>generate-sources</phase>
<configuration>
<fileset>
-
<directory>${project.build.directory}/download/0.10.x.zip/incubator-iotdb-rel-0.10/docs/zh/UserGuide</directory>
+
<directory>${project.build.directory}/download/0.10.x.zip/iotdb-rel-0.10/docs/zh/UserGuide</directory>
<outputDirectory>${project.build.directory}/vue-source/src/zh/UserGuide/V0.10.x</outputDirectory>
</fileset>
</configuration>
@@ -273,7 +273,7 @@
<phase>generate-sources</phase>
<configuration>
<fileset>
-
<directory>${project.build.directory}/download/0.9.x.zip/incubator-iotdb-rel-0.9/docs/UserGuide</directory>
+
<directory>${project.build.directory}/download/0.9.x.zip/iotdb-rel-0.9/docs/UserGuide</directory>
<outputDirectory>${project.build.directory}/vue-source/src/UserGuide/V0.9.x</outputDirectory>
</fileset>
</configuration>
@@ -286,7 +286,7 @@
<phase>generate-sources</phase>
<configuration>
<fileset>
-
<directory>${project.build.directory}/download/0.9.x.zip/incubator-iotdb-rel-0.9/docs/zh/UserGuide</directory>
+
<directory>${project.build.directory}/download/0.9.x.zip/iotdb-rel-0.9/docs/zh/UserGuide</directory>
<outputDirectory>${project.build.directory}/vue-source/src/zh/UserGuide/V0.9.x</outputDirectory>
</fileset>
</configuration>
@@ -299,7 +299,7 @@
<phase>generate-sources</phase>
<configuration>
<fileset>
-
<directory>${project.build.directory}/download/0.8.x.zip/incubator-iotdb-rel-0.8/docs/UserGuide</directory>
+
<directory>${project.build.directory}/download/0.8.x.zip/iotdb-rel-0.8/docs/UserGuide</directory>
<outputDirectory>${project.build.directory}/vue-source/src/UserGuide/V0.8.x</outputDirectory>
</fileset>
</configuration>
@@ -312,7 +312,7 @@
<phase>generate-sources</phase>
<configuration>
<fileset>
-
<directory>${project.build.directory}/download/0.8.x.zip/incubator-iotdb-rel-0.8/docs/zh/UserGuide</directory>
+
<directory>${project.build.directory}/download/0.8.x.zip/iotdb-rel-0.8/docs/zh/UserGuide</directory>
<outputDirectory>${project.build.directory}/vue-source/src/zh/UserGuide/V0.8.x</outputDirectory>
</fileset>
</configuration>
diff --git a/site/src/main/.vuepress/config.js
b/site/src/main/.vuepress/config.js
index a94fa84..0dedaa7 100644
--- a/site/src/main/.vuepress/config.js
+++ b/site/src/main/.vuepress/config.js
@@ -42,7 +42,7 @@ var config = {
themeConfig: {
// 项目的 github 地址
- repo: 'https://github.com/apache/incubator-iotdb.git',
+ repo: 'https://github.com/apache/iotdb.git',
// github 地址的链接名
repoLabel: 'gitHub',
diff --git a/site/src/main/.vuepress/theme/components/Page.vue
b/site/src/main/.vuepress/theme/components/Page.vue
index 84d5930..b7becce 100644
--- a/site/src/main/.vuepress/theme/components/Page.vue
+++ b/site/src/main/.vuepress/theme/components/Page.vue
@@ -78,7 +78,7 @@
<p style="text-align: center;">Copyright © 2020 The Apache Software
Foundation.<br>
Apache and the Apache feather logo are trademarks of The Apache
Software Foundation</p>
<!-- <p
style="text-align:justify!important;paddingLeft:10px;paddingRight:10px;">
- Disclaimer: Apache IoTDB (incubating) is an effort undergoing
incubation at The Apache Software Foundation (ASF), sponsored by the Apache
Incubator. Incubation is required of all newly accepted projects until a
further review indicates that the infrastructure, communications, and decision
making process have stabilized in a manner consistent with other successful ASF
projects. While incubation status is not necessarily a reflection of the
completeness or stability of the code, it [...]
+ Disclaimer: Apache IoTDB is an effort undergoing incubation at The
Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation
is required of all newly accepted projects until a further review indicates
that the infrastructure, communications, and decision making process have
stabilized in a manner consistent with other successful ASF projects. While
incubation status is not necessarily a reflection of the completeness or
stability of the code, it does indicat [...]
</p>
-->
</main>
diff --git a/site/src/main/.vuepress/theme/global-components/IoTDB.vue
b/site/src/main/.vuepress/theme/global-components/IoTDB.vue
index a3d1308..eb1902a 100644
--- a/site/src/main/.vuepress/theme/global-components/IoTDB.vue
+++ b/site/src/main/.vuepress/theme/global-components/IoTDB.vue
@@ -105,7 +105,7 @@
title="Rich query semantics"
width="400"
trigger="hover"
- content="Apache IoTDB (incubating) can support time alignment for
timeseries data across devices and sensors, computation in timeseries field and
abundant aggregation functions in time dimension."
+ content="Apache IoTDB can support time alignment for timeseries
data across devices and sensors, computation in timeseries field and abundant
aggregation functions in time dimension."
>
<el-button slot="reference" style="text-align:center;width:100%;">
<img src="/img/home-icon3.png" style="width:40px;height:40px;">
@@ -121,7 +121,7 @@
title="Low cost on hardware"
width="400"
trigger="hover"
- content="Apache IoTDB (incubating) can reach a high compression
ratio of disk storage (it costs less than $0.23 to store 1GB of data on hard
disk)."
+ content="Apache IoTDB can reach a high compression ratio of disk
storage (it costs less than $0.23 to store 1GB of data on hard disk)."
>
<el-button slot="reference" style="text-align:center;width:100%;">
<img src="/img/home-icon4.png" style="width:40px;height:40px;">
@@ -134,7 +134,7 @@
title="Flexible deployment"
width="400"
trigger="hover"
- content="Apache IoTDB (incubating) can provide users one-click
installation on the cloud, terminal tool on desktop and the bridge tool between
cloud platform and on premise machine (Data Synchronization Tool)."
+ content="Apache IoTDB can provide users one-click installation on
the cloud, terminal tool on desktop and the bridge tool between cloud platform
and on premise machine (Data Synchronization Tool)."
>
<el-button slot="reference" style="text-align:center;width:100%;">
<img src="/img/home-icon5.png" style="width:40px;height:40px;">
@@ -147,7 +147,7 @@
title="Intense integration with Open Source Ecosystem"
width="400"
trigger="hover"
- content="Apache IoTDB (incubating) can support analysis
ecosystems, for example, Hadoop, Spark, Flink and Grafana (visualization tool)."
+ content="Apache IoTDB can support analysis ecosystems, for
example, Hadoop, Spark, Flink and Grafana (visualization tool)."
>
<el-button slot="reference" style="text-align:center;width:100%;">
<img src="/img/home-icon6.png" style="width:40px;height:40px;">
diff --git a/site/src/main/deploy.js b/site/src/main/deploy.js
index 8ffe728..ec11eb2 100644
--- a/site/src/main/deploy.js
+++ b/site/src/main/deploy.js
@@ -21,5 +21,5 @@ var ghpages = require('gh-pages');
ghpages.publish('docs/.vuepress/dist', {
branch: 'asf-site',
- repo: 'https://gitbox.apache.org/repos/asf/incubator-iotdb-website.git'
+ repo: 'https://gitbox.apache.org/repos/asf/iotdb-website.git'
});
diff --git a/site/src/main/package.json b/site/src/main/package.json
index 794fcbe..9d00a05 100644
--- a/site/src/main/package.json
+++ b/site/src/main/package.json
@@ -23,7 +23,7 @@
"author": "Apache IoTDB",
"license": "Apache-2.0",
"bugs": {
- "url": "https://github.com/apache/incubator-iotdb"
+ "url": "https://github.com/apache/iotdb"
},
"homepage": "https://iotdb.apache.org",
"directories": {},
diff --git a/tools/common.sh b/tools/common.sh
index 98293ef..ef27f91 100755
--- a/tools/common.sh
+++ b/tools/common.sh
@@ -25,11 +25,11 @@ IOTDB_ROOT_DIR=.
# BUNDLE_DIR is results of maven release:perform's creation of release
candidate
BUNDLE_DIR=${IOTDB_ROOT_DIR}/target/checkout/target
-IOTDB_ASF_GIT_URL=https://git-wip-us.apache.org/repos/asf/incubator-iotdb.git
-IOTDB_ASF_DIST_URL=https://www.apache.org/dist/incubator/iotdb
+IOTDB_ASF_GIT_URL=https://git-wip-us.apache.org/repos/asf/iotdb.git
+IOTDB_ASF_DIST_URL=https://www.apache.org/dist/iotdb
IOTDB_ASF_DIST_DYN_URL=https://www.apache.org/dyn/closer.cgi/iotdb
-IOTDB_ASF_SVN_RELEASE_URL=https://dist.apache.org/repos/dist/release/incubator/iotdb
-IOTDB_ASF_SVN_RC_URL=https://dist.apache.org/repos/dist/dev/incubator/iotdb
+IOTDB_ASF_SVN_RELEASE_URL=https://dist.apache.org/repos/dist/release/iotdb
+IOTDB_ASF_SVN_RC_URL=https://dist.apache.org/repos/dist/dev/iotdb
USAGE=
diff --git a/tools/download_staged_release.sh b/tools/download_staged_release.sh
index 3c6aeeb..cacd8be 100755
--- a/tools/download_staged_release.sh
+++ b/tools/download_staged_release.sh
@@ -26,8 +26,8 @@ set -e
# Download the collection of files associated with an Apache IoTDB
# Release or Release Candidate from the Apache Distribution area:
-# https://dist.apache.org/repos/dist/release/incubator/iotdb
-# or https://dist.apache.org/repos/dist/dev/incubator/iotdb
+# https://dist.apache.org/repos/dist/release/iotdb
+# or https://dist.apache.org/repos/dist/dev/iotdb
# respectively.
#
# Prompts before taking actions unless "--nquery"