You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@omid.apache.org by fp...@apache.org on 2016/08/16 01:12:30 UTC

incubator-omid git commit: [OMID-53] Fix links in Website pages

Repository: incubator-omid
Updated Branches:
  refs/heads/master 33f974679 -> 7d3ad63ef


[OMID-53] Fix links in Website pages

Some links were broken and others pointing to pages in the previous repo

Change-Id: I8e154680319b70e3d4e9a4182c4b2fbef9ee29c0


Project: http://git-wip-us.apache.org/repos/asf/incubator-omid/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-omid/commit/7d3ad63e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-omid/tree/7d3ad63e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-omid/diff/7d3ad63e

Branch: refs/heads/master
Commit: 7d3ad63ef48ab1738e05889bbf30db190f1c0e56
Parents: 33f9746
Author: Francisco Perez-Sorrosal <fp...@yahoo-inc.com>
Authored: Mon Aug 15 18:12:11 2016 -0700
Committer: Francisco Perez-Sorrosal <fp...@yahoo-inc.com>
Committed: Mon Aug 15 18:12:11 2016 -0700

----------------------------------------------------------------------
 doc/site/markdown/basic-examples.md  | 6 +++---
 doc/site/markdown/index.md           | 6 +++---
 doc/site/markdown/omid-components.md | 2 +-
 doc/site/markdown/quickstart.md      | 8 ++++----
 doc/site/site.xml                    | 4 ++--
 5 files changed, 13 insertions(+), 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/7d3ad63e/doc/site/markdown/basic-examples.md
----------------------------------------------------------------------
diff --git a/doc/site/markdown/basic-examples.md b/doc/site/markdown/basic-examples.md
index 3a0b679..b73b849 100644
--- a/doc/site/markdown/basic-examples.md
+++ b/doc/site/markdown/basic-examples.md
@@ -89,7 +89,7 @@ of the transaction manager instance:
     ...
 ```
 
-Please, refer to the [ConfigurationExample](https://github.com/yahoo/omid/blob/master/examples/src/main/java/com/yahoo/omid/examples/ConfigurationExample.java)
+Please, refer to the [ConfigurationExample](https://github.com/apache/incubator-omid/tree/master/examples/src/main/java/org/apache/omid/examples/ConfigurationExample.java)
 in the source code to experiment with the configuration options.
 
 ## Creating Transactions
@@ -114,7 +114,7 @@ they should operate (See next section).
 
 In order to perform transaction operations on data, the client application requires to use a wrapper on the HBase's 
 `HTableInterface` abstraction. The wrapper is called `TTable` and is also part of what is described as Transactional
-Client in the Omid architecture (See section [[About Omid]]). `TTable` basically offers the same interface as 
+Client in the Omid architecture (See section [About Omid](index.html#What_is_Omid?)). `TTable` basically offers the same interface as
 `HTableInterface` enhanced with a parameter representing the transactional context. As was previously described, a
 `Transaction` instance is obtained on return of `TransactionManager.begin()` method calls.
 
@@ -258,7 +258,7 @@ public class Example {
 
 ## Additional Examples
 
-The `examples` module contains [complete examples](https://github.com/yahoo/omid/tree/master/examples/src/main/java/com/yahoo/omid/examples) 
+The `examples` module contains [complete examples](https://github.com/apache/incubator-omid/tree/master/examples/src/main/java/org/apache/omid/examples)
 showing the Omid functionality that can be executed in your Omid+HBase environment. Just clone the Omid project, go
 to the `examples` module and execute `mvn clean package` to create a tar.gz file that includes all the examples. 
 In order to execute each example, just execute the `run.sh` script and follow the instructions.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/7d3ad63e/doc/site/markdown/index.md
----------------------------------------------------------------------
diff --git a/doc/site/markdown/index.md b/doc/site/markdown/index.md
index 207d18c..c94e5a5 100644
--- a/doc/site/markdown/index.md
+++ b/doc/site/markdown/index.md
@@ -8,7 +8,7 @@ The current implementation provides multi-row transactions on top of Apache HBas
 flexible enough to support other datastore implementations as long as they provide MVCC features in their API.
 
 The following sections introduce the motivation behind Omid and its high-level architecture and 
-basic concepts. If you want to jump to a more hands-on approach to Omid, please jump to the [[Quickstart]] section. 
+basic concepts. If you want to jump to a more hands-on approach to Omid, please jump to the [Quickstart](quickstart.html) section.
 On the other hand, if you want more information about Omid's design and its internals, please refer to the 
 sections in the Technical Documentation menuf.
 
@@ -58,7 +58,7 @@ paragraphs.
 
 ![Omid's architecture](images/architecture.png)
 
-For a detailed picture of the Omid architecture, please refer to the [[Omid Components]] section in the Technical Documentation.
+For a detailed picture of the Omid architecture, please refer to the [Omid Components](omid-components.html) section in the Technical Documentation.
 
 ## Component Roles
 
@@ -91,4 +91,4 @@ boundaries of the last transaction in writing to the data cell.
 
 For a more in-depth description of how Omid works, please refer to the sections in the Technical Documentation menu.
 
-**Do you want to try Omid now?** Please, go to the [[Quickstart]] section.
+**Do you want to try Omid now?** Please, go to the [Quickstart](quickstart.html) section.

http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/7d3ad63e/doc/site/markdown/omid-components.md
----------------------------------------------------------------------
diff --git a/doc/site/markdown/omid-components.md b/doc/site/markdown/omid-components.md
index 2739a23..13cffe4 100644
--- a/doc/site/markdown/omid-components.md
+++ b/doc/site/markdown/omid-components.md
@@ -19,7 +19,7 @@ and markRollbackOnly() transactions.
 2. The Data Operation interface (represented by the `TTable` class in the HBase implementation): Allows user applications 
 to trigger transactional operations to the datasource. For example in the HBase, put, get and scan operations.
   
-Examples about how to add transactions using these interfaces are described in the [[Basic Examples]] section.
+Examples about how to add transactions using these interfaces are described in the [Basic Examples](basic-examples.html) section.
 
 ## Timestamp Oracle (TO)
 The single responsibility of the Timestamp Oracle is to manage transaction timestamps. Transaction timestamps serve as a 

http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/7d3ad63e/doc/site/markdown/quickstart.md
----------------------------------------------------------------------
diff --git a/doc/site/markdown/quickstart.md b/doc/site/markdown/quickstart.md
index 8b912cc..8a1d073 100644
--- a/doc/site/markdown/quickstart.md
+++ b/doc/site/markdown/quickstart.md
@@ -15,7 +15,7 @@ Below are instructions to quickly set up an environment to test Omid in your loc
 You can find HBase distributions in [this page](http://www.apache.org/dyn/closer.cgi/hbase/).
 Then start HBase in [standalone mode](https://hbase.apache.org/book.html#quickstart).
 
-### 2. Clone the [Omid repository](https://github.com/francisco-perez-sorrosal/omid) and Build the TSO Package:
+### 2. Clone the [Omid repository](https://github.com/apache/incubator-omid) and Build the TSO Package:
 
 ```sh
 $ git clone git@github.com:yahoo/omid.git
@@ -30,9 +30,9 @@ This will generate a binary package containing all dependencies for the TSO in t
 Unit tests coverage is also quite extensive and take a while to run on each build (~15min at the moment of writing). So, consider using
 `mvn clean install -DskipTests` to speed temporal builds. Note that `-Dmaven.test.skip=true` [is NOT an equivalent](http://ericlefevre.net/wordpress/2008/02/21/skipping-tests-with-maven/).
 
-As an alternative to clone the project, you can download the required version for the TSO tar.gz package from the [release repository](https://bintray.com/yahoo/maven/omid/view).
+As an alternative to clone the project, you can download the required version for the TSO tar.gz package from the [release repository](https://dist.apache.org/repos/dist/release/incubator/omid/).
 
-You can also see the [build history here](https://github.com/yahoo/omid/tags).
+You can also see the [build history here](https://github.com/apache/incubator-omid/tags).
 
 ### 3. Extract the TSO Package
 
@@ -93,7 +93,7 @@ first parameter in the transactional aware methods (e.g. `put(Transaction tx, Pu
 
 Below is provided a sample application accessing data transactionally. Its a dummy application that writes two cells in two 
 different rows of a table in a transactional context, but is enough to show how the different Omid client APIs are used. A 
-detailed explanation of the client interfaces can be found in the [Basic Examples] section.
+detailed explanation of the client interfaces can be found in the [Basic Examples](basic-examples.html) section.
 
 ```java
 import org.apache.hadoop.hbase.client.Put;

http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/7d3ad63e/doc/site/site.xml
----------------------------------------------------------------------
diff --git a/doc/site/site.xml b/doc/site/site.xml
index 0afdb73..b385d25 100644
--- a/doc/site/site.xml
+++ b/doc/site/site.xml
@@ -54,8 +54,8 @@
         </menu>
 
         <menu name="Download">
-            <item name="Omid Sources" href="https://github.com/yahoo/omid" />
-            <item name="Bintray Repository" href="https://bintray.com/yahoo/maven/omid/_latestVersion" />
+            <item name="Omid Sources" href="https://github.com/apache/incubator-omid" />
+            <item name="Apache Version Repository" href="https://dist.apache.org/repos/dist/release/incubator/omid/" />
         </menu>
 
         <menu name="User Guide &amp; API">