You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gearpump.apache.org by ma...@apache.org on 2016/09/14 06:08:48 UTC

incubator-gearpump git commit: [GEARPUMP-208] remove demo site and gearpump.io link

Repository: incubator-gearpump
Updated Branches:
  refs/heads/master 715f4cbd2 -> 5cd5b9304


[GEARPUMP-208] remove demo site and gearpump.io link

Author: manuzhang <ow...@gmail.com>

Closes #83 from manuzhang/remove_demo_link.


Project: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/commit/5cd5b930
Tree: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/tree/5cd5b930
Diff: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/diff/5cd5b930

Branch: refs/heads/master
Commit: 5cd5b9304f0f703c6f89d2865e5bb7adbb631c74
Parents: 715f4cb
Author: manuzhang <ow...@gmail.com>
Authored: Wed Sep 14 14:08:38 2016 +0800
Committer: manuzhang <ow...@gmail.com>
Committed: Wed Sep 14 14:08:38 2016 +0800

----------------------------------------------------------------------
 README.md                 | 2 --
 docs/dev-write-1st-app.md | 4 ++--
 2 files changed, 2 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-gearpump/blob/5cd5b930/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 66ddcdf..fd62184 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,6 @@
 
 ## ![](https://raw.githubusercontent.com/apache/incubator-gearpump/master/docs/img/logo.png) Gearpump  [![GitHub release](https://img.shields.io/github/release/gearpump/gearpump.svg)](http://gearpump.apache.org/downloads.html) [![GitHub license](https://img.shields.io/badge/license-Apache%20V2-green.svg)](https://github.com/apache/incubator-gearpump/blob/master/LICENSE) [![Build Status](https://travis-ci.org/apache/incubator-gearpump.svg?branch=master)](https://travis-ci.org/apache/incubator-gearpump?branch=master) [![codecov.io](https://codecov.io/github/apache/incubator-gearpump/coverage.svg?branch=master)](https://codecov.io/github/apache/incubator-gearpump?branch=master)
 
-Online Demo Site: http://demo.gearpump.io/
-
 [![download](https://raw.githubusercontent.com/clockfly/icons/master/gearpump-0.2-rc1.jpg)](http://gearpump.apache.org/downloads.html)
 
 Gearpump is a lightweight real-time big data streaming engine. It is inspired by recent advances in the [Akka](https://github.com/akka/akka) framework and a desire to improve on existing streaming frameworks.

http://git-wip-us.apache.org/repos/asf/incubator-gearpump/blob/5cd5b930/docs/dev-write-1st-app.md
----------------------------------------------------------------------
diff --git a/docs/dev-write-1st-app.md b/docs/dev-write-1st-app.md
index 0df19be..2c640d3 100644
--- a/docs/dev-write-1st-app.md
+++ b/docs/dev-write-1st-app.md
@@ -17,9 +17,9 @@ You can get your preferred IDE ready for Gearpump by following [this guide](dev-
 ### Decide which language and API to use for writing 
 Gearpump supports two level APIs:
 
-1. Low level API, which is more similar to Akka programming, operating on each event. The API document can be found at [Low Level API Doc](http://www.gearpump.io/releases/latest/api/scala/index.html#org.apache.gearpump.streaming.package).
+1. Low level API, which is more similar to Akka programming, operating on each event. The API document can be found at [Low Level API Doc](http://gearpump.apache.org/releases/latest/api/scala/index.html#org.apache.gearpump.streaming.package).
 
-2. High level API (aka DSL), which is operating on streaming instead of individual event. The API document can be found at [DSL API Doc](http://www.gearpump.io/releases/latest/api/scala/index.html#org.apache.gearpump.streaming.dsl.package).
+2. High level API (aka DSL), which is operating on streaming instead of individual event. The API document can be found at [DSL API Doc](http://gearpump.apache.org/releases/latest/api/scala/index.html#org.apache.gearpump.streaming.dsl.package).
 
 And both APIs have their Java version and Scala version.