You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bookkeeper.apache.org by hs...@apache.org on 2021/01/23 20:20:58 UTC

[bookkeeper] branch master updated: Fix the broken links and links to archive pages. (#2548)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 2ac577b  Fix the broken links and links to archive pages. (#2548)
2ac577b is described below

commit 2ac577bd072f0115d6e6494e12088fb32d36535d
Author: Henry Saputra <hs...@apache.org>
AuthorDate: Sat Jan 23 12:20:46 2021 -0800

    Fix the broken links and links to archive pages. (#2548)
    
    There are some broken and obsolete archive links in the README.
    
    Update them to point to latest Documentation site.
    
    Co-authored-by: Henry Saputra <hs...@apache.org>
---
 README.md        | 23 ++++-------------------
 docker/README.md |  2 +-
 2 files changed, 5 insertions(+), 20 deletions(-)

diff --git a/README.md b/README.md
index 82f12ab..58bb9e0 100644
--- a/README.md
+++ b/README.md
@@ -18,29 +18,14 @@ It is suitable for being used in following scenarios:
 
 ## Get Started
 
-* *Concepts*: Start with the [basic concepts](https://bookkeeper.apache.org/docs/master/bookkeeperOverview.html) of Apache BookKeeper.
+* Checkout the project [website](https://bookkeeper.apache.org/).
+* *Concepts*: Start with the [basic concepts](https://bookkeeper.apache.org/docs/latest/getting-started/concepts/) of Apache BookKeeper.
   This will help you to fully understand the other parts of the documentation.
-* [Getting Started](https://bookkeeper.apache.org/docs/master/bookkeeperStarted.html) to setup BookKeeper to write logs.
+* Follow the [Install](https://bookkeeper.apache.org/docs/latest/getting-started/installation/) guide to setup BookKeeper.
 
 ## Documentation
 
-### Developers
-
-* [Programmer Guide](https://bookkeeper.apache.org/archives/docs/master/bookkeeperProgrammer.html)
-* [Tutorial](https://bookkeeper.apache.org/archives/docs/master/bookkeeperTutorial.html)
-* [Java API](https://bookkeeper.apache.org/archives/docs/master/apidocs/)
-
-You can also read [Turning Ledgers into Logs](https://bookkeeper.apache.org/docs/master/bookkeeperLedgers2Logs.html) to learn how to turn **ledgers** into continuous **log streams**.
-If you are looking for a high level **log stream** API, you can checkout [DistributedLog](http://distributedlog.io).
-
-### Administrators
-
-* [Admin Guide](https://bookkeeper.apache.org/docs/master/bookkeeperConfig.html)
-* [Configuration Parameters](https://bookkeeper.apache.org/docs/master/bookieConfigParams.html)
-
-### Contributors
-
-* [BookKeeper Internals](https://bookkeeper.apache.org/docs/master/bookkeeperInternals.html)
+Please visit the [Documentation](https://bookkeeper.apache.org/docs/latest/overview/overview/) from the project website for more information.
 
 ## Get In Touch
 
diff --git a/docker/README.md b/docker/README.md
index 443d0bc..b15d905 100644
--- a/docker/README.md
+++ b/docker/README.md
@@ -131,7 +131,7 @@ docker run -it\
 ```
 And so on for "bookie2" and "bookie3". We have now our fully functional ensemble, ready to accept clients.
 
-In order to play with our freshly created ensemble, you can use the simple application taken from [Bookkeeper Tutorial](http://bookkeeper.apache.org/docs/master/bookkeeperTutorial.html) and packaged in a [docker image](https://github.com/caiok/bookkeeper-tutorial) for convenience.
+In order to play with our freshly created ensemble, you can use the simple application taken from [Bookkeeper Tutorial](https://github.com/ivankelly/bookkeeper-tutorial) and packaged in a [docker image](https://github.com/caiok/bookkeeper-tutorial) for convenience.
 
 This application check if it can be leader, if yes start to roll a dice and book this rolls on Bookkeeper, otherwise it will start to follow the leader rolls. If leader stops, follower will try to become leader and so on.