Author: jfarrell
Date: Tue Dec 11 03:23:55 2012
New Revision: 1419981
URL: http://svn.apache.org/viewvc?rev=1419981&view=rev
Log:
Updating Apache Thrift website for new git repo links.
Modified:
thrift/site/config.yaml
thrift/site/content/developers.md
thrift/site/content/docs/HowToContribute.md
thrift/site/content/docs/committers/HowToThriftWebsite.md
thrift/site/content/docs/idl.md
thrift/site/content/docs/install.md
thrift/site/content/index.md
thrift/site/content/tutorial/d.md
thrift/site/publish/developers/index.html
thrift/site/publish/docs/HowToContribute/index.html
thrift/site/publish/docs/committers/HowToThriftWebsite/index.html
thrift/site/publish/docs/idl/index.html
thrift/site/publish/docs/install/index.html
thrift/site/publish/index.html
thrift/site/publish/tutorial/d/index.html
Modified: thrift/site/config.yaml
URL:
http://svn.apache.org/viewvc/thrift/site/config.yaml?rev=1419981&r1=1419980&r2=1419981&view=diff
==============================================================================
--- thrift/site/config.yaml (original)
+++ thrift/site/config.yaml Tue Dec 11 03:23:55 2012
@@ -17,7 +17,8 @@ watcher:
# Thrift Site Variables
title: "Apache Thrift"
base_url: "http://thrift.apache.org"
-svn_repo: "http://svn.apache.org/repos/asf/thrift"
+svn_repo: "https://svn.apache.org/repos/asf/thrift"
+git_repo: "https://git-wip-us.apache.org/repos/asf/thrift"
release_url: "https://dist.apache.org/repos/dist/release/thrift"
jira_url: "http://issues.apache.org/jira/browse/THRIFT"
Modified: thrift/site/content/developers.md
URL:
http://svn.apache.org/viewvc/thrift/site/content/developers.md?rev=1419981&r1=1419980&r2=1419981&view=diff
==============================================================================
--- thrift/site/content/developers.md (original)
+++ thrift/site/content/developers.md Tue Dec 11 03:23:55 2012
@@ -15,30 +15,27 @@ Apache Thrift tracks both bugs and enhan
---
## Source Control
-The Apache Thrift source code resides in the Apache SVN repository. Four types
of access are available:
+The Apache Thrift source code resides in the Apache git repository. Four types
of access are available:
* **Web-Access (read-only)**
- Source code can be browsed via the Web without a SVN client at
+ Source code can be browsed via the Web
-
[http://svn.apache.org/viewcvs.cgi/thrift](http://svn.apache.org/viewcvs.cgi/thrift/)
+
[https://git-wip-us.apache.org/repos/asf?p=thrift.git](https://git-wip-us.apache.org/repos/asf?p=thrift.git)
* **Anonymous (read-only)**
- General instructions for anonymous access is
[here](http://www.apache.org/dev/version-control.html#anon-svn)
-
-
[http://svn.apache.org/repos/asf/thrift/](http://svn.apache.org/repos/asf/thrift/)
+ git clone
[http://git-wip-us.apache.org/repos/asf/thrift.git](http://git-wip-us.apache.org/repos/asf/thrift.git)
* **Committer Access (read-write)**
- General instructions for committer access is
[here](http://www.apache.org/dev/version-control.html#https-svn)
+ General instructions for committer access is
[here](http://www.apache.org/dev/version-control.html)
-
[https://svn.apache.org/repos/asf/thrift/](https://svn.apache.org/repos/asf/thrift/)
+ [<%= @site.config[:git_repo] %>.git](<%= @site.config[:git_repo] %>.git)
-* **Git repositories (unofficial)**
+* **unofficial Git repositories**
- Unofficial git repositories are maintained by members of the
development team.
+ Unofficial git repositories are mirrors of the main repository
- * [Apache Git Repository](http://git.apache.org/)
* [Github](http://github.com/apache/thrift)
\ No newline at end of file
Modified: thrift/site/content/docs/HowToContribute.md
URL:
http://svn.apache.org/viewvc/thrift/site/content/docs/HowToContribute.md?rev=1419981&r1=1419980&r2=1419981&view=diff
==============================================================================
--- thrift/site/content/docs/HowToContribute.md (original)
+++ thrift/site/content/docs/HowToContribute.md Tue Dec 11 03:23:55 2012
@@ -7,13 +7,12 @@ kind: doc
1. Make sure your issue is not all ready in the [Jira issue tracker](<%=
@site.config[:jira_url] %>)
1. If not, create a ticket describing the change you're proposing in the
issue tracker
1. Check out the latest version of the source code
- * svn checkout http://svn.apache.org/repos/asf/thrift/trunk thrift-trunk
+ * git clone [http://git-wip-us.apache.org/repos/asf/thrift.git] thrift
1. Modify the source to include the improvement/bugfix
* Verify that you follow the same CodingStyle you see within the language
you are working on
* Verify that your change works by adding a unit test.
- 1. Create a patch from project root directory (e.g. you@dev:~/thrift-trunk $
):
- * svn add <any new file>
- * svn diff > ../thrift-XXX-my-new-feature.patch
- 1. Attach the newly generated patch to the issue (please set the Attachment
License to **Grant license to ASF for inclusion in ASF works**)
+ 1. Create a patch from project root directory (e.g. you@dev:~/thrift $ ):
+ * git diff > ../thrift-XXX-my-new-feature.patch
+ 1. Attach the newly generated patch to the issue
1. Wait for other developers or committers to review it and hopefully +1 the
ticket
1. Wait for a committer to commit it.
Modified: thrift/site/content/docs/committers/HowToThriftWebsite.md
URL:
http://svn.apache.org/viewvc/thrift/site/content/docs/committers/HowToThriftWebsite.md?rev=1419981&r1=1419980&r2=1419981&view=diff
==============================================================================
--- thrift/site/content/docs/committers/HowToThriftWebsite.md (original)
+++ thrift/site/content/docs/committers/HowToThriftWebsite.md Tue Dec 11
03:23:55 2012
@@ -29,5 +29,3 @@ After you have updated any content or ad
* rake gen (static website is left in the 'output' folder)
* Check in all the changes
-* ssh onto minotaur.apache.org
-* svn up /www/thrift.apache.org
\ No newline at end of file
Modified: thrift/site/content/docs/idl.md
URL:
http://svn.apache.org/viewvc/thrift/site/content/docs/idl.md?rev=1419981&r1=1419980&r2=1419981&view=diff
==============================================================================
--- thrift/site/content/docs/idl.md (original)
+++ thrift/site/content/docs/idl.md Tue Dec 11 03:23:55 2012
@@ -188,9 +188,9 @@ Here are some examples of Thrift definit
* [Apache Cassandra's][] Thrift IDL: [cassandra.thrift][]
* [Evernote API][]
- [ThriftTest.thrift]:
http://svn.apache.org/repos/asf/thrift/trunk/test/ThriftTest.thrift
- [tutorial]: http://svn.apache.org/repos/asf/thrift/trunk/tutorial/
- [fb303.thrift]:
http://svn.apache.org/repos/asf/thrift/trunk/contrib/fb303/if/fb303.thrift
+ [ThriftTest.thrift]: test/ThriftTest.thrift
+ [tutorial]: tutorial/
+ [fb303.thrift]: contrib/fb303/if/fb303.thrift
[Apache Cassandra's]: http://cassandra.apache.org/
[cassandra.thrift]:
http://svn.apache.org/viewvc/cassandra/trunk/interface/cassandra.thrift?view=co
[Evernote API]: http://www.evernote.com/about/developer/api/
Modified: thrift/site/content/docs/install.md
URL:
http://svn.apache.org/viewvc/thrift/site/content/docs/install.md?rev=1419981&r1=1419980&r2=1419981&view=diff
==============================================================================
--- thrift/site/content/docs/install.md (original)
+++ thrift/site/content/docs/install.md Tue Dec 11 03:23:55 2012
@@ -21,7 +21,7 @@ Apache Thrift's compiler is written in C
* boost 1.40.0
* Runtime libraries for lex and yacc might be needed for the compiler.
-## Requirements for building from SVN
+## Requirements for building from source
* GNU build tools:
* autoconf 2.65
* automake 1.9
Modified: thrift/site/content/index.md
URL:
http://svn.apache.org/viewvc/thrift/site/content/index.md?rev=1419981&r1=1419980&r2=1419981&view=diff
==============================================================================
--- thrift/site/content/index.md (original)
+++ thrift/site/content/index.md Tue Dec 11 03:23:55 2012
@@ -28,7 +28,7 @@ title: "Home"
<code>thrift --gen <language> <Thrift filename></code>
</pre>
- <p>The sample tutorial.thrift file used for all the client and
server tutorials can be found <a
href="http://svn.apache.org/repos/asf/thrift/trunk/tutorial/">here</a>. </p>
+ <p>The sample tutorial.thrift file used for all the client and
server tutorials can be found <a
href="https://git-wip-us.apache.org/repos/asf/thrift/?p=thrift.git;a=tree;f=tutorial">here</a>.
</p>
</li>
</ul>
</p>
Modified: thrift/site/content/tutorial/d.md
URL:
http://svn.apache.org/viewvc/thrift/site/content/tutorial/d.md?rev=1419981&r1=1419980&r2=1419981&view=diff
==============================================================================
--- thrift/site/content/tutorial/d.md (original)
+++ thrift/site/content/tutorial/d.md Tue Dec 11 03:23:55 2012
@@ -8,7 +8,7 @@ library_lang: "d"
### Client
-<pre><code class="language-d">
+<pre><code class="language-c">
</code></pre>
### Server
Modified: thrift/site/publish/developers/index.html
URL:
http://svn.apache.org/viewvc/thrift/site/publish/developers/index.html?rev=1419981&r1=1419980&r2=1419981&view=diff
==============================================================================
--- thrift/site/publish/developers/index.html (original)
+++ thrift/site/publish/developers/index.html Tue Dec 11 03:23:55 2012
@@ -79,37 +79,34 @@
<li>Check the <a href="/mailing/">user mailing list</a> via searching the
archives or asking a question</li>
</ul><hr><h2>Source Control</h2>
-<p>The Apache Thrift source code resides in the Apache SVN repository. Four
types of access are available:</p>
+<p>The Apache Thrift source code resides in the Apache git repository. Four
types of access are available:</p>
<ul>
<li>
<p><strong>Web-Access (read-only)</strong></p>
-<p>Source code can be browsed via the Web without a SVN client at</p>
+<p>Source code can be browsed via the Web </p>
-<p><a
href="http://svn.apache.org/viewcvs.cgi/thrift/">http://svn.apache.org/viewcvs.cgi/thrift</a></p>
+<p><a
href="https://git-wip-us.apache.org/repos/asf?p=thrift.git">https://git-wip-us.apache.org/repos/asf?p=thrift.git</a></p>
</li>
<li>
<p><strong>Anonymous (read-only)</strong></p>
-<p>General instructions for anonymous access is <a
href="http://www.apache.org/dev/version-control.html#anon-svn">here</a></p>
-
-<p><a
href="http://svn.apache.org/repos/asf/thrift/">http://svn.apache.org/repos/asf/thrift/</a></p>
+<p>git clone <a
href="http://git-wip-us.apache.org/repos/asf/thrift.git">http://git-wip-us.apache.org/repos/asf/thrift.git</a></p>
</li>
<li>
<p><strong>Committer Access (read-write)</strong></p>
-<p>General instructions for committer access is <a
href="http://www.apache.org/dev/version-control.html#https-svn">here</a></p>
+<p>General instructions for committer access is <a
href="http://www.apache.org/dev/version-control.html">here</a></p>
-<p><a
href="https://svn.apache.org/repos/asf/thrift/">https://svn.apache.org/repos/asf/thrift/</a></p>
+<p><a
href="https://git-wip-us.apache.org/repos/asf/thrift.git">https://git-wip-us.apache.org/repos/asf/thrift.git</a></p>
</li>
<li>
-<p><strong>Git repositories (unofficial)</strong></p>
+<p><strong>unofficial Git repositories</strong></p>
-<p>Unofficial git repositories are maintained by members of the development
team.</p>
+<p>Unofficial git repositories are mirrors of the main repository</p>
<ul>
-<li><a href="http://git.apache.org/">Apache Git Repository</a></li>
<li><a href="http://github.com/apache/thrift">Github</a></li>
</ul>
</li>
Modified: thrift/site/publish/docs/HowToContribute/index.html
URL:
http://svn.apache.org/viewvc/thrift/site/publish/docs/HowToContribute/index.html?rev=1419981&r1=1419980&r2=1419981&view=diff
==============================================================================
--- thrift/site/publish/docs/HowToContribute/index.html (original)
+++ thrift/site/publish/docs/HowToContribute/index.html Tue Dec 11 03:23:55 2012
@@ -75,7 +75,7 @@
<li>Check out the latest version of the source code
<ul>
-<li>svn checkout http://svn.apache.org/repos/asf/thrift/trunk thrift-trunk</li>
+<li>git clone [http://git-wip-us.apache.org/repos/asf/thrift.git] thrift</li>
</ul>
</li>
<li>Modify the source to include the improvement/bugfix
@@ -85,15 +85,13 @@
<li>Verify that your change works by adding a unit test.</li>
</ul>
</li>
-<li>Create a patch from project root directory (e.g. you@dev:~/thrift-trunk $
):
+<li>Create a patch from project root directory (e.g. you@dev:~/thrift $ ):
<ul>
-<li>svn add <any new file></any>
-</li>
-<li>svn diff > ../thrift-XXX-my-new-feature.patch</li>
+<li>git diff > ../thrift-XXX-my-new-feature.patch</li>
</ul>
</li>
-<li>Attach the newly generated patch to the issue (please set the Attachment
License to <strong>Grant license to ASF for inclusion in ASF
works</strong>)</li>
+<li>Attach the newly generated patch to the issue </li>
<li>Wait for other developers or committers to review it and hopefully +1 the
ticket</li>
<li>Wait for a committer to commit it.</li>
</ol>
Modified: thrift/site/publish/docs/committers/HowToThriftWebsite/index.html
URL:
http://svn.apache.org/viewvc/thrift/site/publish/docs/committers/HowToThriftWebsite/index.html?rev=1419981&r1=1419980&r2=1419981&view=diff
==============================================================================
--- thrift/site/publish/docs/committers/HowToThriftWebsite/index.html (original)
+++ thrift/site/publish/docs/committers/HowToThriftWebsite/index.html Tue Dec
11 03:23:55 2012
@@ -112,8 +112,6 @@ current_release_date: "2012-10-15"
<ul>
<li>rake gen (static website is left in the 'output' folder)</li>
<li>Check in all the changes</li>
-<li>ssh onto minotaur.apache.org</li>
-<li>svn up /www/thrift.apache.org</li>
</ul>
</div>
<div class="container">
Modified: thrift/site/publish/docs/idl/index.html
URL:
http://svn.apache.org/viewvc/thrift/site/publish/docs/idl/index.html?rev=1419981&r1=1419980&r2=1419981&view=diff
==============================================================================
--- thrift/site/publish/docs/idl/index.html (original)
+++ thrift/site/publish/docs/idl/index.html Tue Dec 11 03:23:55 2012
@@ -273,10 +273,10 @@
<ul>
<li>
-<a
href="http://svn.apache.org/repos/asf/thrift/trunk/test/ThriftTest.thrift">ThriftTest.thrift</a>
used by the Thrift TestFramework</li>
-<li>Thrift <a
href="http://svn.apache.org/repos/asf/thrift/trunk/tutorial/">tutorial</a>
+<a href="test/ThriftTest.thrift">ThriftTest.thrift</a> used by the Thrift
TestFramework</li>
+<li>Thrift <a href="tutorial/">tutorial</a>
</li>
-<li>Facebook's <a
href="http://svn.apache.org/repos/asf/thrift/trunk/contrib/fb303/if/fb303.thrift">fb303.thrift</a>
+<li>Facebook's <a href="contrib/fb303/if/fb303.thrift">fb303.thrift</a>
</li>
<li>
<a href="http://cassandra.apache.org/">Apache Cassandra's</a> Thrift IDL: <a
href="http://svn.apache.org/viewvc/cassandra/trunk/interface/cassandra.thrift?view=co">cassandra.thrift</a>
Modified: thrift/site/publish/docs/install/index.html
URL:
http://svn.apache.org/viewvc/thrift/site/publish/docs/install/index.html?rev=1419981&r1=1419980&r2=1419981&view=diff
==============================================================================
--- thrift/site/publish/docs/install/index.html (original)
+++ thrift/site/publish/docs/install/index.html Tue Dec 11 03:23:55 2012
@@ -97,7 +97,7 @@
<li>g++ 4.2</li>
<li>boost 1.40.0</li>
<li>Runtime libraries for lex and yacc might be needed for the compiler.</li>
-</ul><h2>Requirements for building from SVN</h2>
+</ul><h2>Requirements for building from source</h2>
<ul>
<li>GNU build tools:
Modified: thrift/site/publish/index.html
URL:
http://svn.apache.org/viewvc/thrift/site/publish/index.html?rev=1419981&r1=1419980&r2=1419981&view=diff
==============================================================================
--- thrift/site/publish/index.html (original)
+++ thrift/site/publish/index.html Tue Dec 11 03:23:55 2012
@@ -93,7 +93,7 @@
<code>thrift --gen <language> <Thrift filename></code>
</pre>
- <p>The sample tutorial.thrift file used for all the client and
server tutorials can be found <a
href="http://svn.apache.org/repos/asf/thrift/trunk/tutorial/">here</a>. </p>
+ <p>The sample tutorial.thrift file used for all the client and
server tutorials can be found <a
href="https://git-wip-us.apache.org/repos/asf/thrift/?p=thrift.git;a=tree;f=tutorial">here</a>.
</p>
</li>
</ul>
<br><p>
Modified: thrift/site/publish/tutorial/d/index.html
URL:
http://svn.apache.org/viewvc/thrift/site/publish/tutorial/d/index.html?rev=1419981&r1=1419980&r2=1419981&view=diff
==============================================================================
--- thrift/site/publish/tutorial/d/index.html (original)
+++ thrift/site/publish/tutorial/d/index.html Tue Dec 11 03:23:55 2012
@@ -85,7 +85,7 @@
<h3>Client</h3>
-<pre><code class="language-d"></code></pre>
+<pre><code class="language-c"></code></pre>
<h3>Server</h3>