You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by el...@apache.org on 2013/01/28 17:53:29 UTC

svn commit: r1439492 - in /mina/site/trunk/content: ftpserver-project/sources.mdtext mina-project/sources.mdtext sshd-project/sources.mdtext vysper-project/sources.mdtext

Author: elecharny
Date: Mon Jan 28 16:53:29 2013
New Revision: 1439492

URL: http://svn.apache.org/viewvc?rev=1439492&view=rev
Log:
Updated the sources pages to refer to Git instead of SVN

Modified:
    mina/site/trunk/content/ftpserver-project/sources.mdtext
    mina/site/trunk/content/mina-project/sources.mdtext
    mina/site/trunk/content/sshd-project/sources.mdtext
    mina/site/trunk/content/vysper-project/sources.mdtext

Modified: mina/site/trunk/content/ftpserver-project/sources.mdtext
URL: http://svn.apache.org/viewvc/mina/site/trunk/content/ftpserver-project/sources.mdtext?rev=1439492&r1=1439491&r2=1439492&view=diff
==============================================================================
--- mina/site/trunk/content/ftpserver-project/sources.mdtext (original)
+++ mina/site/trunk/content/ftpserver-project/sources.mdtext Mon Jan 28 16:53:29 2013
@@ -17,47 +17,30 @@ Notice:    Licensed to the Apache Softwa
            under the License.
 
 
-# Source
-
 ## Overview
 
-This project uses Subversion to manage its source code. Instructions on Subversion use can be found at http://svnbook.red-bean.com/. If you are on Windows, the excellent TortoiseSVN client is highly recommended.
-
-## Web Access
-
-The following is a link to the [online source repository](http://svn.apache.org/viewvc/mina/ftpserver).
-
-## Anonymous access
+Sources for the Apache MINA projects are currently managed through GIT. Instructions on GIT use can be found at <http://git-scm.com/book/>.
 
-The source can be checked out anonymously from SVN with this command:
+# Normal Git Access
 
-	$ svn checkout http://svn.apache.org/repos/asf/mina/ftpserver/trunk ftpserver
+Anyone can check code out of Git. You only need to specify a username and password in order to update the Git repository, and only MINA committers have the permissions to do that. We run Git over standard HTTPS, so hopefully you won't have problems with intervening firewalls.
 
-## Developer access
-
-Everyone can access the Subversion repository via HTTPS, but Committers must checkout the Subversion repository via HTTPS.
-
-	$ svn checkout https://svn.apache.org/repos/asf/mina/ftpserver/trunk ftpserver
-
-To commit changes to the repository, execute the following command to commit your changes (svn will prompt you for your password)
+## Web Access
 
-	$ svn commit --username your-username -m "A message"
+The following is a link to the [online source repository](https://git-wip-us.apache.org/repos/asf?p=mina-ftpserver.git;a=summary).
 
-## Access from behind a firewall
+# Cloning from the Git repo
 
-For those users who are stuck behind a corporate firewall which is blocking http access to the Subversion repository, you can try to access it via the developer connection:
+Again, anyone can do this. Use a command like to checkout the current development version (the trunk):
 
-	$ svn checkout https://svn.apache.org/repos/asf/mina/ftpserver/trunk ftpserver
+read only access :
 
-## Access through a proxy
+  git clone http://git-wip-us.apache.org/repos/asf/mina-ftpserver.git ftpserver
 
-The Subversion client can go through a proxy, if you configure it to do so. First, edit your "servers" configuration file to indicate which proxy to use. The files location depends on your operating system. On Linux or Unix it is located in the directory "~/.subversion". On Windows it is in "%APPDATA%\Subversion". (Try "echo %APPDATA%", note this is a hidden directory.)
+write access :
 
-There are comments in the file explaining what to do. If you don't have that file, get the latest Subversion client and run any command; this will cause the configuration directory and template files to be created.
+  git clone https://git-wip-us.apache.org/repos/asf/mina-ftpserver.git ftpserver
 
-Example : Edit the 'servers' file and add something like :
+You will not be able to commit into the project if you are not a committer.
 
-	[global]
-	http-proxy-host = your.proxy.name
-	http-proxy-port = 3128
 

Modified: mina/site/trunk/content/mina-project/sources.mdtext
URL: http://svn.apache.org/viewvc/mina/site/trunk/content/mina-project/sources.mdtext?rev=1439492&r1=1439491&r2=1439492&view=diff
==============================================================================
--- mina/site/trunk/content/mina-project/sources.mdtext (original)
+++ mina/site/trunk/content/mina-project/sources.mdtext Mon Jan 28 16:53:29 2013
@@ -16,6 +16,8 @@ Notice:    Licensed to the Apache Softwa
            specific language governing permissions and limitations
            under the License.
 
+## Overview
+
 Sources for the Apache MINA projects are currently managed through GIT. Instructions on GIT use can be found at <http://git-scm.com/book/>.
 
 For each project you can find a detailed description how to checkout and build the source on the project documentation. This page is just a short overview.
@@ -25,6 +27,10 @@ For each project you can find a detailed
 
 Anyone can check code out of Git. You only need to specify a username and password in order to update the Git repository, and only MINA committers have the permissions to do that. We run Git over standard HTTPS, so hopefully you won't have problems with intervening firewalls.
 
+## Web Access
+
+The following is a link to the [online source repository](https://git-wip-us.apache.org/repos/asf?p=mina.git;a=summary).
+
 # Cloning from the Git repo
 
 Again, anyone can do this. Use a command like to checkout the current development version (the trunk):
@@ -39,15 +45,6 @@ write access :
 
   git clone https://git-wip-us.apache.org/repos/asf/mina.git mina
 
-
-### For FtpServer
-
-	svn checkout http://svn.apache.org/repos/asf/mina/ftpserver/trunk
-
-### For AsyncWeb
-
-	svn checkout http://svn.apache.org/repos/asf/mina/asyncweb/trunk
-
 # Building MINA
 
 Instructions on how to build MINA can be found [here](developper-guide.html)
@@ -56,47 +53,15 @@ Instructions on how to build MINA can be
 
 The following table displays the URL of each project, and the URL where you can find information about how to build each project.
 
-| Subproject/Documentation | SVN URL |
+| Subproject/Documentation | Git URL |
 |---|---|
-| [MINA 2.0](http://mina.apache.org/mina-project/developper-guide.html) | [http://svn.apache.org/repos/asf/mina/mina/trunk/](http://svn.apache.org/repos/asf/mina/mina/trunk/) |
-| [FtpServer (dev)](http://mina.apache.org/ftpserver-project/building.html) | [http://svn.apache.org/repos/asf/mina/ftpserver/trunk/](http://svn.apache.org/repos/asf/mina/ftpserver/trunk/) |
-| [Sshd (dev)](http://mina.apache.org/sshd-project/documentation.html) | [http://svn.apache.org/repos/asf/mina/sshd/trunk/](http://svn.apache.org/repos/asf/mina/sshd/trunk/) |
-| [Vysper (dev)](http://mina.apache.org/vysper-project/documentation.html) | [http://svn.apache.org/repos/asf/mina/vysper/trunk/](http://svn.apache.org/repos/asf/mina/vysper/trunk/) |
-| [AsyncWeb (dev)](http://mina.apache.org/asyncweb-project) | [http://svn.apache.org/repos/asf/mina/asyncweb/trunk/](http://svn.apache.org/repos/asf/mina/asyncweb/trunk/) |
-| []() | []() |
-
-# Commit Changes to Subversion
-
-Any __MINA__ committer should have a shell account on svn.apache.org. Before you can commit, you'll need to set a Subversion password for yourself. To do that, log in to svn.apache.org and run the command svnpasswd.
-
-Once your password is set, you can use a command like this to commit:
-
-	svn commit
-
-If Subversion can't figure out your username, you can tell it explicitly:
-
-	svn --username you commit
-
-Subversion will prompt you for a password, and once you enter it once, it will remember it for you. Note this is the password you configured with svnpasswd, not your shell or other password.
-
-<DIV class="note" markdown="1">
-	For committers to be able to commit modification, they should have had checked out the project files using <B>https</B> instead of <B>http</B>.
-</DIV>
-
-## Access from behind a firewall
-
-For those users who are stuck behind a corporate firewall which is blocking http access to the Subversion repository, you can try to access it via the developer connection:
-
-	$ svn checkout https://svn.apache.org/repos/asf/mina/mina/tags/2.0.5 mina-2.0.5
-
-## Access through a proxy
-
-The Subversion client can go through a proxy, if you configure it to do so. First, edit your "servers" configuration file to indicate which proxy to use. The files location depends on your operating system. On Linux or Unix it is located in the directory "~/.subversion". On Windows it is in "%APPDATA%\Subversion". (Try "echo %APPDATA%", note this is a hidden directory.)
+| [MINA](http://mina.apache.org/mina-project/developper-guide.html) | [https://git-wip-us.apache.org/repos/asf/mina.git](https://git-wip-us.apache.org/repos/asf/mina.git) |
+| [FtpServer](http://mina.apache.org/ftpserver-project/building.html) | [https://git-wip-us.apache.org/repos/asf/mina-ftpserver.git](https://git-wip-us.apache.org/repos/asf/mina-ftpserver.git) |
+| [Sshd](http://mina.apache.org/sshd-project/documentation.html) | [https://git-wip-us.apache.org/repos/asf/mina-sshd.git](https://git-wip-us.apache.org/repos/asf/mina-sshd.git) |
+| [Vysper](http://mina.apache.org/vysper-project/documentation.html) | [https://git-wip-us.apache.org/repos/asf/mina-vysper.git](https://git-wip-us.apache.org/repos/asf/mina-vysper.git) |
+| [AsyncWeb](http://mina.apache.org/asyncweb-project) | [https://git-wip-us.apache.org/repos/asf/mina-asyncweb.git](https://git-wip-us.apache.org/repos/asf/mina-asyncweb.git) |
 
-There are comments in the file explaining what to do. If you don't have that file, get the latest Subversion client and run any command; this will cause the configuration directory and template files to be created.
+# Commit Changes to Git
 
-Example : Edit the 'servers' file and add something like :
+In order to be able to push some modification, you have to be a committer.
 
-	[global]
-	http-proxy-host = your.proxy.name
-	http-proxy-port = 3128

Modified: mina/site/trunk/content/sshd-project/sources.mdtext
URL: http://svn.apache.org/viewvc/mina/site/trunk/content/sshd-project/sources.mdtext?rev=1439492&r1=1439491&r2=1439492&view=diff
==============================================================================
--- mina/site/trunk/content/sshd-project/sources.mdtext (original)
+++ mina/site/trunk/content/sshd-project/sources.mdtext Mon Jan 28 16:53:29 2013
@@ -19,42 +19,27 @@ Notice:    Licensed to the Apache Softwa
 
 ## Overview
 
-This project uses Subversion to manage its source code. Instructions on Subversion use can be found at <http://svnbook.red-bean.com/>. If you are on Windows, the excellent [TortoiseSVN](http://tortoisesvn.tigris.org/) client is highly recommended.
+Sources for the Apache MINA projects are currently managed through GIT. Instructions on GIT use can be found at <http://git-scm.com/book/>.
 
-## Web Access
-
-The following is a link to the [online source repository](http://svn.apache.org/viewvc/mina/sshd).
-
-## Anonymous access
-
-The source can be checked out anonymously from SVN with this command:
+# Normal Git Access
 
-	$ svn checkout http://svn.apache.org/repos/asf/mina/sshd/trunk sshd
+Anyone can check code out of Git. You only need to specify a username and password in order to update the Git repository, and only MINA committers have the permissions to do that. We run Git over standard HTTPS, so hopefully you won't have problems with intervening firewalls.
 
-## Developer access
-
-Everyone can access the Subversion repository via HTTPS, but Committers must checkout the Subversion repository via HTTPS.
-
-	$ svn checkout https://svn.apache.org/repos/asf/mina/sshd/trunk sshd
-
-To commit changes to the repository, execute the following command to commit your changes (svn will prompt you for your password)
+## Web Access
 
-	$ svn commit --username your-username -m &quot;A message&quot;
+The following is a link to the [online source repository](https://git-wip-us.apache.org/repos/asf?p=mina-sshd.git;a=summary).
 
-## Access from behind a firewall
+# Cloning from the Git repo
 
-For those users who are stuck behind a corporate firewall which is blocking http access to the Subversion repository, you can try to access it via the developer connection:
+Again, anyone can do this. Use a command like to pull the current development version (the trunk):
 
-	$ svn checkout https://svn.apache.org/repos/asf/mina/sshd/trunk sshd
+read only access :
 
-## Access through a proxy
+  git clone http://git-wip-us.apache.org/repos/asf/mina-sshd.git sshd
 
-The Subversion client can go through a proxy, if you configure it to do so. First, edit your "servers" configuration file to indicate which proxy to use. The files location depends on your operating system. On Linux or Unix it is located in the directory "~/.subversion". On Windows it is in "%APPDATA%\Subversion". (Try "echo %APPDATA%", note this is a hidden directory.)
+write access :
 
-There are comments in the file explaining what to do. If you don't have that file, get the latest Subversion client and run any command; this will cause the configuration directory and template files to be created.
+  git clone https://git-wip-us.apache.org/repos/asf/mina-sshd.git sshd
 
-Example : Edit the 'servers' file and add something like :
+You will not be able to commit into the project if you are not a committer.
 
-	[global]
-	http-proxy-host = your.proxy.name
-	http-proxy-port = 3128

Modified: mina/site/trunk/content/vysper-project/sources.mdtext
URL: http://svn.apache.org/viewvc/mina/site/trunk/content/vysper-project/sources.mdtext?rev=1439492&r1=1439491&r2=1439492&view=diff
==============================================================================
--- mina/site/trunk/content/vysper-project/sources.mdtext (original)
+++ mina/site/trunk/content/vysper-project/sources.mdtext Mon Jan 28 16:53:29 2013
@@ -16,49 +16,32 @@ Notice:    Licensed to the Apache Softwa
            specific language governing permissions and limitations
            under the License.
 
+## Overview
 
-# Getting the source
+Sources for the Apache MINA projects are currently managed through GIT. Instructions on GIT use can be found at <http://git-scm.com/book/>.
 
-This project uses Subversion to manage its source code. Instructions on Subversion use can be found at <http://svnbook.red-bean.com/>. If you are on Windows, the excellent [TortoiseSVN](http://tortoisesvn.tigris.org/) client is highly recommended.
+# Normal Git Access
 
-## Web Access
-
-The following is a link to the [online source repository](http://svn.apache.org/viewvc/mina/vysper).
-
-## Anonymous access
-
-The source can be checked out anonymously from SVN with this command:
-
-	$ svn checkout http://svn.apache.org/repos/asf/mina/vysper/trunk vysper
+Anyone can check code out of Git. You only need to specify a username and password in order to update the Git repository, and only MINA committers have the permissions to do that. We run Git over standard HTTPS, so hopefully you won't have problems with intervening firewalls.
 
+## Web Access
 
-## Developer access
-
-Everyone can access the Subversion repository via HTTPS, but Committers must checkout the Subversion repository via HTTPS.
-
-	$ svn checkout https://svn.apache.org/repos/asf/mina/vysper/trunk vysper
-
-To commit changes to the repository, execute the following command to commit your changes (svn will prompt you for your password)
-
-	$ svn commit --username your-username -m &quot;A message&quot;
+The following is a link to the [online source repository](https://git-wip-us.apache.org/repos/asf?p=mina-vysper.git;a=summary).
 
-## Access from behind a firewall
+# Cloning from the Git repo
 
-For those users who are stuck behind a corporate firewall which is blocking http access to the Subversion repository, you can try to access it via the developer connection:
+Again, anyone can do this. Use a command like to pull the current development version (the trunk):
 
-	$ svn checkout https://svn.apache.org/repos/asf/mina/vysper/trunk vysper
+read only access :
 
-## Access through a proxy
+  git clone http://git-wip-us.apache.org/repos/asf/mina-vysper.git vysper
 
-The Subversion client can go through a proxy, if you configure it to do so. First, edit your "servers" configuration file to indicate which proxy to use. The files location depends on your operating system. On Linux or Unix it is located in the directory "~/.subversion". On Windows it is in "%APPDATA%\Subversion". (Try "echo %APPDATA%", note this is a hidden directory.)
+write access :
 
-There are comments in the file explaining what to do. If you don't have that file, get the latest Subversion client and run any command; this will cause the configuration directory and template files to be created.
+  git clone https://git-wip-us.apache.org/repos/asf/mina-vysper.git vysper
 
-Example : Edit the 'servers' file and add something like :
+You will not be able to commit into the project if you are not a committer.
 
-	[global]
-	http-proxy-host = your.proxy.name
-	http-proxy-port = 3128
 
 ## Building