You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tajo.apache.org by ji...@apache.org on 2014/03/29 05:34:20 UTC

git commit: TAJO-700: Update site, wikis, pom.xml and other resources to point to the new repository location. (jihoon)

Repository: tajo
Updated Branches:
  refs/heads/master 36007d779 -> ebfcc43b4


TAJO-700: Update site, wikis, pom.xml and other resources to point to the new repository location. (jihoon)


Project: http://git-wip-us.apache.org/repos/asf/tajo/repo
Commit: http://git-wip-us.apache.org/repos/asf/tajo/commit/ebfcc43b
Tree: http://git-wip-us.apache.org/repos/asf/tajo/tree/ebfcc43b
Diff: http://git-wip-us.apache.org/repos/asf/tajo/diff/ebfcc43b

Branch: refs/heads/master
Commit: ebfcc43b4f05a5a4eb976bd443fd22aaa45cbb97
Parents: 36007d7
Author: Jihoon Son <ji...@apache.org>
Authored: Sat Mar 29 13:33:09 2014 +0900
Committer: Jihoon Son <ji...@apache.org>
Committed: Sat Mar 29 13:33:09 2014 +0900

----------------------------------------------------------------------
 CHANGES.txt                                             |  3 +++
 README                                                  |  4 ++--
 pom.xml                                                 |  2 +-
 .../src/main/java/org/apache/tajo/cli/HelpCommand.java  | 10 +++++-----
 tajo-docs/src/main/sphinx/cli.rst                       | 10 +++++-----
 .../main/sphinx/configuration/catalog_configuration.rst |  2 +-
 .../main/sphinx/getting_started/downloading_source.rst  | 10 +++++-----
 tajo-project/pom.xml                                    |  6 +++---
 tajo-project/src/site/markdown/downloads.md             | 10 +++++-----
 tajo-project/src/site/markdown/review-request-tool.md   |  2 +-
 tajo-project/src/site/markdown/source-code.md           | 12 ++++++------
 tajo-project/src/site/markdown/tajo-0.2.0-doc.md        |  4 ++--
 tajo-project/src/site/markdown/tajo-0.8.0-doc.md        |  6 +++---
 tajo-project/src/site/site.xml                          |  2 +-
 14 files changed, 43 insertions(+), 40 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tajo/blob/ebfcc43b/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index 57a2f93..1fdaedb 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -584,6 +584,9 @@ Release 0.8.0 - unreleased
 
   TASKS
 
+    TAJO-700: Update site, wikis, pom.xml and other resources to point to the 
+    new repository location. (jihoon)
+
     TAJO-694: Bump up hadoop to 2.3.0. (jinho)
 
     TAJO-684: Add functions about time. (Alvin Henrick via jihoon)

http://git-wip-us.apache.org/repos/asf/tajo/blob/ebfcc43b/README
----------------------------------------------------------------------
diff --git a/README b/README
index 53e4dc4..dae8973 100644
--- a/README
+++ b/README
@@ -11,8 +11,8 @@ and its optimizer.
 
 Project
 =======
-* Project Home (http://tajo.incubator.apache.org/)
-* Source Repository (https://git-wip-us.apache.org/repos/asf/incubator-tajo.git)
+* Project Home (http://tajo.apache.org/)
+* Source Repository (https://git-wip-us.apache.org/repos/asf/tajo.git)
 * Issue Tracking (https://issues.apache.org/jira/browse/TAJO)
 
 License

http://git-wip-us.apache.org/repos/asf/tajo/blob/ebfcc43b/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 7fb8d42..0421119 100644
--- a/pom.xml
+++ b/pom.xml
@@ -50,7 +50,7 @@
   </ciManagement>
 
   <scm>
-    <url>https://git-wip-us.apache.org/repos/asf/incubator-tajo.git</url>
+    <url>https://git-wip-us.apache.org/repos/asf/tajo.git</url>
   </scm>
 
   <repositories>

http://git-wip-us.apache.org/repos/asf/tajo/blob/ebfcc43b/tajo-client/src/main/java/org/apache/tajo/cli/HelpCommand.java
----------------------------------------------------------------------
diff --git a/tajo-client/src/main/java/org/apache/tajo/cli/HelpCommand.java b/tajo-client/src/main/java/org/apache/tajo/cli/HelpCommand.java
index a808fc6..87d9900 100644
--- a/tajo-client/src/main/java/org/apache/tajo/cli/HelpCommand.java
+++ b/tajo-client/src/main/java/org/apache/tajo/cli/HelpCommand.java
@@ -64,11 +64,11 @@ public class HelpCommand extends TajoShellCommand {
     sout.println();
 
     sout.println("Documentations");
-    sout.println("  tsql guide        http://tajo.incubator.apache.org/docs/"+ docVersion +"/cli.html");
-    sout.println("  Query language    http://tajo.incubator.apache.org/docs/"+ docVersion +"/sql_language.html");
-    sout.println("  Functions         http://tajo.incubator.apache.org/docs/"+ docVersion +"/functions.html");
-    sout.println("  Backup & restore  http://tajo.incubator.apache.org/docs/"+ docVersion +"/backup_and_restore.html");
-    sout.println("  Configuration     http://tajo.incubator.apache.org/docs/"+ docVersion +"/configuration.html");
+    sout.println("  tsql guide        http://tajo.apache.org/docs/"+ docVersion +"/cli.html");
+    sout.println("  Query language    http://tajo.apache.org/docs/"+ docVersion +"/sql_language.html");
+    sout.println("  Functions         http://tajo.apache.org/docs/"+ docVersion +"/functions.html");
+    sout.println("  Backup & restore  http://tajo.apache.org/docs/"+ docVersion +"/backup_and_restore.html");
+    sout.println("  Configuration     http://tajo.apache.org/docs/"+ docVersion +"/configuration.html");
     sout.println();
   }
 

http://git-wip-us.apache.org/repos/asf/tajo/blob/ebfcc43b/tajo-docs/src/main/sphinx/cli.rst
----------------------------------------------------------------------
diff --git a/tajo-docs/src/main/sphinx/cli.rst b/tajo-docs/src/main/sphinx/cli.rst
index fa3f4a7..95f8d5c 100644
--- a/tajo-docs/src/main/sphinx/cli.rst
+++ b/tajo-docs/src/main/sphinx/cli.rst
@@ -70,11 +70,11 @@ In the current implementation, there are meta commands as follows: ::
 
 
   Documentations
-    tsql guide        http://tajo.incubator.apache.org/docs/0.8.0/cli.html
-    Query language    http://tajo.incubator.apache.org/docs/0.8.0/sql_language.html
-    Functions         http://tajo.incubator.apache.org/docs/0.8.0/functions.html
-    Backup & restore  http://tajo.incubator.apache.org/docs/0.8.0/backup_and_restore.html
-    Configuration     http://tajo.incubator.apache.org/docs/0.8.0/configuration.html
+    tsql guide        http://tajo.apache.org/docs/0.8.0/cli.html
+    Query language    http://tajo.apache.org/docs/0.8.0/sql_language.html
+    Functions         http://tajo.apache.org/docs/0.8.0/functions.html
+    Backup & restore  http://tajo.apache.org/docs/0.8.0/backup_and_restore.html
+    Configuration     http://tajo.apache.org/docs/0.8.0/configuration.html
 
 -----------------------------------------------
 Basic usages

http://git-wip-us.apache.org/repos/asf/tajo/blob/ebfcc43b/tajo-docs/src/main/sphinx/configuration/catalog_configuration.rst
----------------------------------------------------------------------
diff --git a/tajo-docs/src/main/sphinx/configuration/catalog_configuration.rst b/tajo-docs/src/main/sphinx/configuration/catalog_configuration.rst
index 80abd57..403f8f8 100644
--- a/tajo-docs/src/main/sphinx/configuration/catalog_configuration.rst
+++ b/tajo-docs/src/main/sphinx/configuration/catalog_configuration.rst
@@ -79,7 +79,7 @@ First, you must compile source code and get a binary archive as follows:
 
 .. code-block:: sh
 
-  $ git clone https://git-wip-us.apache.org/repos/asf/incubator-tajo.git tajo
+  $ git clone https://git-wip-us.apache.org/repos/asf/tajo.git tajo
   $ mvn clean package -DskipTests -Pdist -Dtar -Phcatalog-0.1x.0
   $ ls tajo-dist/target/tajo-0.8.0-SNAPSHOT.tar.gz
 

http://git-wip-us.apache.org/repos/asf/tajo/blob/ebfcc43b/tajo-docs/src/main/sphinx/getting_started/downloading_source.rst
----------------------------------------------------------------------
diff --git a/tajo-docs/src/main/sphinx/getting_started/downloading_source.rst b/tajo-docs/src/main/sphinx/getting_started/downloading_source.rst
index a5aba5b..c44e71a 100644
--- a/tajo-docs/src/main/sphinx/getting_started/downloading_source.rst
+++ b/tajo-docs/src/main/sphinx/getting_started/downloading_source.rst
@@ -8,7 +8,7 @@ You can get either the source code release of Apache Tajo or check out the devel
 Dowload the latest source release
 ================================================
 
-Choose a download site from this list of `Apache Download Mirrors <http://www.apache.org/dyn/closer.cgi/incubator/tajo>`_. 
+Choose a download site from this list of `Apache Download Mirrors <http://www.apache.org/dyn/closer.cgi/incubator/tajo>`_.
 Click on the suggested mirror link. This will take you to a mirror of Tajo Releases. 
 Download the file that ends in .tar.gz to your local filesystem; e.g. tajo-0.8.0-incubating.tar.gz. 
 
@@ -20,13 +20,13 @@ Decompress and untar your download and then change into the unpacked directory.
 Get the source code via Git
 ================================================
 
-The development codebase can also be downloaded from `the Apache git repository <https://git-wip-us.apache.org/repos/asf/incubator-tajo.git>`_ as follows: ::
+The development codebase can also be downloaded from `the Apache git repository <https://git-wip-us.apache.org/repos/asf/tajo.git>`_ as follows: ::
 
-  git clone https://git-wip-us.apache.org/repos/asf/incubator-tajo.git
+  git clone https://git-wip-us.apache.org/repos/asf/tajo.git
 
-A read-only git repository is also mirrored on `Github <https://github.com/apache/incubator-tajo>`_.
+A read-only git repository is also mirrored on `Github <https://github.com/apache/tajo>`_.
 
-Once you have downloaded Tajo, follow the `getting started instructions <http://tajo.incubator.apache.org/tajo-0.8.0-doc.html#GettingStarted>`_, and take a look at the rest of the Tajo documentation.
+Once you have downloaded Tajo, follow the `getting started instructions <http://tajo.apache.org/tajo-0.8.0-doc.html#GettingStarted>`_, and take a look at the rest of the Tajo documentation.
 
 
 

http://git-wip-us.apache.org/repos/asf/tajo/blob/ebfcc43b/tajo-project/pom.xml
----------------------------------------------------------------------
diff --git a/tajo-project/pom.xml b/tajo-project/pom.xml
index aade02e..8934045 100644
--- a/tajo-project/pom.xml
+++ b/tajo-project/pom.xml
@@ -246,9 +246,9 @@
   </issueManagement>
 
   <scm>
-    <url>https://git-wip-us.apache.org/repos/asf/incubator-tajo.git</url>
-    <connection>scm:git:http://git-wip-us.apache.org/repos/asf/incubator-tajo.git</connection>
-    <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-tajo.git</developerConnection>
+    <url>https://git-wip-us.apache.org/repos/asf/tajo.git</url>
+    <connection>scm:git:https://git-wip-us.apache.org/repos/asf/tajo.git</connection>
+    <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/tajo.git</developerConnection>
   </scm>
 
   <mailingLists>

http://git-wip-us.apache.org/repos/asf/tajo/blob/ebfcc43b/tajo-project/src/site/markdown/downloads.md
----------------------------------------------------------------------
diff --git a/tajo-project/src/site/markdown/downloads.md b/tajo-project/src/site/markdown/downloads.md
index e62b00e..e738f20 100644
--- a/tajo-project/src/site/markdown/downloads.md
+++ b/tajo-project/src/site/markdown/downloads.md
@@ -21,19 +21,19 @@
 
 ### 0.2-incubating Release (Nov 20, 2013)
  * [RELEASE NOTES](http://s.apache.org/tajo-0.2-release-notes)
- * [Source Tarball] (http://apache.org/dyn/closer.cgi/incubator/tajo/tajo-0.2.0-incubating/tajo-0.2.0-incubating-src.tar.gz) ([MD5](http://www.apache.org/dist/incubator/tajo/tajo-0.2.0-incubating/tajo-0.2.0-incubating-src.tar.gz.md5)) ([SHA1](http://www.apache.org/dist/incubator/tajo/tajo-0.2.0-incubating/tajo-0.2.0-incubating-src.tar.gz.sha1)) ([ASC](http://www.apache.org/dist/incubator/tajo/tajo-0.2.0-incubating/tajo-0.2.0-incubating-src.tar.gz.asc)) ([KEYS](http://www.apache.org/dist/incubator/tajo/KEYS)) ([How to verify?](#Verification))
+ * [Source Tarball](http://apache.org/dyn/closer.cgi/incubator/tajo/tajo-0.2.0-incubating/tajo-0.2.0-incubating-src.tar.gz) ([MD5](http://www.apache.org/dist/incubator/tajo/tajo-0.2.0-incubating/tajo-0.2.0-incubating-src.tar.gz.md5)) ([SHA1](http://www.apache.org/dist/incubator/tajo/tajo-0.2.0-incubating/tajo-0.2.0-incubating-src.tar.gz.sha1)) ([ASC](http://www.apache.org/dist/incubator/tajo/tajo-0.2.0-incubating/tajo-0.2.0-incubating-src.tar.gz.asc)) ([KEYS](http://www.apache.org/dist/incubator/tajo/KEYS)) ([How to verify?](#Verification))
 
 ## Getting the source code via Git
 
-The development codebase can also be downloaded from [the Apache git repository](https://git-wip-us.apache.org/repos/asf/incubator-tajo.git) as follows:
+The development codebase can also be downloaded from [the Apache git repository](https://git-wip-us.apache.org/repos/asf/tajo.git) as follows:
 
 ```
-git clone https://git-wip-us.apache.org/repos/asf/incubator-tajo.git
+git clone https://git-wip-us.apache.org/repos/asf/tajo.git
 ```
 
-A read-only git repository is also mirrored on [Github](https://github.com/apache/incubator-tajo).
+A read-only git repository is also mirrored on [Github](https://github.com/apache/tajo).
 
-Once you have downloaded Tajo, follow the [getting started instructions](http://tajo.incubator.apache.org/tajo-0.8.0-doc.html#GettingStarted), and take a look at the rest of the Tajo documentation.
+Once you have downloaded Tajo, follow the [getting started instructions](http://tajo.apache.org/tajo-0.8.0-doc.html#GettingStarted), and take a look at the rest of the Tajo documentation.
 
 ## <a name="Verification"></a>How to Verify the integrity of the files
 

http://git-wip-us.apache.org/repos/asf/tajo/blob/ebfcc43b/tajo-project/src/site/markdown/review-request-tool.md
----------------------------------------------------------------------
diff --git a/tajo-project/src/site/markdown/review-request-tool.md b/tajo-project/src/site/markdown/review-request-tool.md
index d32a20b..74a09d3 100644
--- a/tajo-project/src/site/markdown/review-request-tool.md
+++ b/tajo-project/src/site/markdown/review-request-tool.md
@@ -164,7 +164,7 @@ If you checked out using the git wip http url that confusingly won't work with r
 
 ```
 $ cat ~/.reviewboardrc
-REPOSITORY = 'git://git.apache.org/incubator-tajo.git'
+REPOSITORY = 'http://git.apache.org/tajo.git'
 TARGET_GROUPS = 'Tajo'
 ```
 

http://git-wip-us.apache.org/repos/asf/tajo/blob/ebfcc43b/tajo-project/src/site/markdown/source-code.md
----------------------------------------------------------------------
diff --git a/tajo-project/src/site/markdown/source-code.md b/tajo-project/src/site/markdown/source-code.md
index e409d0e..0c752b5 100644
--- a/tajo-project/src/site/markdown/source-code.md
+++ b/tajo-project/src/site/markdown/source-code.md
@@ -19,25 +19,25 @@
 
 ## Apache Git Repository
 
-The development codebase can also be downloaded from the [Apache git repository](https://git-wip-us.apache.org/repos/asf/incubator-tajo.git) at:
+The development codebase can also be downloaded from the [Apache git repository](https://git-wip-us.apache.org/repos/asf/tajo.git) at:
 
 ```
-git clone https://git-wip-us.apache.org/repos/asf/incubator-tajo.git
+git clone https://git-wip-us.apache.org/repos/asf/tajo.git
 ```
 
 ### Getting a Specific Branch or Tag
 If you want to get a specific branch or tagged source code, just add an option -b *branch or tag name* as follow:
 
 ```
-git clone -b [branch or tag name] https://git-wip-us.apache.org/repos/asf/incubator-tajo.git
+git clone -b [branch or tag name] https://git-wip-us.apache.org/repos/asf/tajo.git
 ```
 
-You can see all available branch or tag lists at [here](https://git-wip-us.apache.org/repos/asf?p=incubator-tajo.git;a=tags).
+You can see all available branch or tag lists at [here](https://git-wip-us.apache.org/repos/asf?p=tajo.git;a=tags).
 
 ## Github
 
-A read-only git repository is also mirrored [on Github](https://github.com/apache/incubator-tajo).
+A read-only git repository is also mirrored on [Github](https://github.com/apache/tajo).
 
 ```
-git clone https://github.com/apache/incubator-tajo.git
+git clone https://github.com/apache/tajo
 ```

http://git-wip-us.apache.org/repos/asf/tajo/blob/ebfcc43b/tajo-project/src/site/markdown/tajo-0.2.0-doc.md
----------------------------------------------------------------------
diff --git a/tajo-project/src/site/markdown/tajo-0.2.0-doc.md b/tajo-project/src/site/markdown/tajo-0.2.0-doc.md
index 705be58..1f8c1ff 100644
--- a/tajo-project/src/site/markdown/tajo-0.2.0-doc.md
+++ b/tajo-project/src/site/markdown/tajo-0.2.0-doc.md
@@ -91,14 +91,14 @@ Tajo is _**a big daga warehouse system on Hadoop**_ that provides low-latency an
 
 ### <a name="BinaryDownload"></a>Binary Download
 
-Download the source code from http://tajo.incubator.apache.org/downloads.html.
+Download the source code from http://tajo.apache.org/downloads.html.
 
 ### <a name="SourceDownload"></a>Source Download
 
 Download the source code and build Tajo as follows:
 
 ```
-$ git clone https://git-wip-us.apache.org/repos/asf/incubator-tajo.git tajo
+$ git clone https://git-wip-us.apache.org/repos/asf/tajo.git tajo
 ```
 
 ## <a name="BuildSourceCode"></a>Build Source Code

http://git-wip-us.apache.org/repos/asf/tajo/blob/ebfcc43b/tajo-project/src/site/markdown/tajo-0.8.0-doc.md
----------------------------------------------------------------------
diff --git a/tajo-project/src/site/markdown/tajo-0.8.0-doc.md b/tajo-project/src/site/markdown/tajo-0.8.0-doc.md
index 565fa58..76c80a1 100644
--- a/tajo-project/src/site/markdown/tajo-0.8.0-doc.md
+++ b/tajo-project/src/site/markdown/tajo-0.8.0-doc.md
@@ -93,14 +93,14 @@ Tajo is _**a big daga warehouse system on Hadoop**_ that provides low-latency an
 
 ### <a name="BinaryDownload"></a>Binary Download
 
-Download the source code from http://tajo.incubator.apache.org/downloads.html.
+Download the source code from http://tajo.apache.org/downloads.html.
 
 ### <a name="SourceDownload"></a>Source Download
 
 Download the source code and build Tajo as follows:
 
 ```
-$ git clone https://git-wip-us.apache.org/repos/asf/incubator-tajo.git tajo
+$ git clone https://git-wip-us.apache.org/repos/asf/tajo.git tajo
 ```
 
 ## <a name="BuildSourceCode"></a>Build Source Code
@@ -460,7 +460,7 @@ Tajo support HCatalogStore to integrate with hive. If you want to use HCatalogSt
 First, you must compile source code and get a binary archive as follows:
 
 ```
-$ git clone https://git-wip-us.apache.org/repos/asf/incubator-tajo.git tajo
+$ git clone https://git-wip-us.apache.org/repos/asf/tajo.git tajo
 $ mvn clean package -DskipTests -Pdist -Dtar -Phcatalog-0.1x.0
 $ ls tajo-dist/target/tajo-0.8.0-SNAPSHOT.tar.gz
 ```

http://git-wip-us.apache.org/repos/asf/tajo/blob/ebfcc43b/tajo-project/src/site/site.xml
----------------------------------------------------------------------
diff --git a/tajo-project/src/site/site.xml b/tajo-project/src/site/site.xml
index 39f99ae..85edf34 100644
--- a/tajo-project/src/site/site.xml
+++ b/tajo-project/src/site/site.xml
@@ -69,7 +69,7 @@
     </head>
 
     <links>
-      <item name="GIT" href="https://git-wip-us.apache.org/repos/asf/incubator-tajo.git" />
+      <item name="GIT" href="https://git-wip-us.apache.org/repos/asf/tajo.git" />
     </links>
 
     <breadcrumbs>