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

svn commit: r848321 - in /websites/staging/mina/trunk/content: ./ ftpserver-project/building.html ftpserver-project/getting_source.html ftpserver-project/sources.html

Author: buildbot
Date: Mon Jan 28 17:19:11 2013
New Revision: 848321

Log:
Staging update by buildbot for mina

Removed:
    websites/staging/mina/trunk/content/ftpserver-project/sources.html
Modified:
    websites/staging/mina/trunk/content/   (props changed)
    websites/staging/mina/trunk/content/ftpserver-project/building.html
    websites/staging/mina/trunk/content/ftpserver-project/getting_source.html

Propchange: websites/staging/mina/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Mon Jan 28 17:19:11 2013
@@ -1 +1 @@
-1439500
+1439512

Modified: websites/staging/mina/trunk/content/ftpserver-project/building.html
==============================================================================
--- websites/staging/mina/trunk/content/ftpserver-project/building.html (original)
+++ websites/staging/mina/trunk/content/ftpserver-project/building.html Mon Jan 28 17:19:11 2013
@@ -108,7 +108,7 @@
 
 
 <h1 id="building">Building</h1>
-<p>You need <a href="http://svnbook.red-bean.com/">Subversion</a> to <a href="http://apache.org/dev/version-control.html">check out the source code</a> from <a href="sources.html">our source code repository</a>, and <a href="http://maven.apache.org/download.html">Maven 2</a> to build the source code. Currently, Maven 2.0.5 or 2.0.7 or newer is required for the build.</p>
+<p>You need <a href="http://svnbook.red-bean.com/">Subversion</a> to <a href="http://apache.org/dev/version-control.html">check out the source code</a> from <a href="getting_sources.html">our source code repository</a>, and <a href="http://maven.apache.org/download.html">Maven 2</a> to build the source code. Currently, Maven 2.0.5 or 2.0.7 or newer is required for the build.</p>
 <p>The following example shows how to build the trunk.</p>
 <div class="codehilite"><pre><span class="nv">$</span> <span class="nv">svn</span> <span class="n">co</span> <span class="n">http:</span><span class="sr">//s</span><span class="n">vn</span><span class="o">.</span><span class="n">apache</span><span class="o">.</span><span class="n">org</span><span class="sr">/repos/</span><span class="n">asf</span><span class="sr">/mina/</span><span class="n">ftpserver</span><span class="sr">/trunk/</span> <span class="n">ftpserver</span>
 <span class="nv">$</span> <span class="nv">cd</span> <span class="n">ftpserver</span>

Modified: websites/staging/mina/trunk/content/ftpserver-project/getting_source.html
==============================================================================
--- websites/staging/mina/trunk/content/ftpserver-project/getting_source.html (original)
+++ websites/staging/mina/trunk/content/ftpserver-project/getting_source.html Mon Jan 28 17:19:11 2013
@@ -107,42 +107,19 @@
       <div id="rightColumn">
 
 
-<h1 id="source">Source</h1>
 <h2 id="overview">Overview</h2>
-<p>This project uses Subversion to manage its source code. Instructions on Subversion use can be found at <a href="http://svnbook.red-bean.com/">http://svnbook.red-bean.com/</a>. If you are on Windows, the excellent <a href="http://tortoisesvn.tigris.org/">TortoiseSVN</a> client is highly recommended.</p>
+<p>Sources for the Apache MINA projects are currently managed through GIT. Instructions on GIT use can be found at <a href="http://git-scm.com/book/">http://git-scm.com/book/</a>.</p>
+<h2 id="normal-git-access">Normal Git Access</h2>
+<p>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.</p>
 <h2 id="web-access">Web Access</h2>
-<p>The following is a link to the <a href="http://svn.apache.org/viewvc/mina/ftpserver">online source repository</a>.</p>
-<h2 id="anonymous-access">Anonymous access</h2>
-<p>The source can be checked out anonymously from SVN with this command:</p>
-<div class="codehilite"><pre><span class="nv">$</span> <span class="nv">svn</span> <span class="n">checkout</span> <span class="n">http:</span><span class="sr">//s</span><span class="n">vn</span><span class="o">.</span><span class="n">apache</span><span class="o">.</span><span class="n">org</span><span class="sr">/repos/</span><span class="n">asf</span><span class="sr">/mina/</span><span class="n">ftpserver</span><span class="o">/</span><span class="n">trunk</span> <span class="n">ftpserver</span>
-</pre></div>
-
-
-<h2 id="developer-access">Developer access</h2>
-<p>Everyone can access the Subversion repository via HTTPS, but Committers must checkout the Subversion repository via HTTPS.</p>
-<div class="codehilite"><pre><span class="nv">$</span> <span class="nv">svn</span> <span class="n">checkout</span> <span class="n">https:</span><span class="sr">//s</span><span class="n">vn</span><span class="o">.</span><span class="n">apache</span><span class="o">.</span><span class="n">org</span><span class="sr">/repos/</span><span class="n">asf</span><span class="sr">/mina/</span><span class="n">ftpserver</span><span class="o">/</span><span class="n">trunk</span> <span class="n">ftpserver</span>
-</pre></div>
-
-
-<p>To commit changes to the repository, execute the following command to commit your changes (svn will prompt you for your password)</p>
-<div class="codehilite"><pre><span class="nv">$</span> <span class="nv">svn</span> <span class="n">commit</span> <span class="o">--</span><span class="n">username</span> <span class="n">your</span><span class="o">-</span><span class="n">username</span> <span class="o">-</span><span class="n">m</span> <span class="s">&quot;A message&quot;</span>
-</pre></div>
-
-
-<h2 id="access-from-behind-a-firewall">Access from behind a firewall</h2>
-<p>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:</p>
-<div class="codehilite"><pre><span class="nv">$</span> <span class="nv">svn</span> <span class="n">checkout</span> <span class="n">https:</span><span class="sr">//s</span><span class="n">vn</span><span class="o">.</span><span class="n">apache</span><span class="o">.</span><span class="n">org</span><span class="sr">/repos/</span><span class="n">asf</span><span class="sr">/mina/</span><span class="n">ftpserver</span><span class="o">/</span><span class="n">trunk</span> <span class="n">ftpserver</span>
-</pre></div>
-
-
-<h2 id="access-through-a-proxy">Access through a proxy</h2>
-<p>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.)</p>
-<p>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.</p>
-<p>Example : Edit the 'servers' file and add something like :</p>
-<div class="codehilite"><pre><span class="k">[global]</span>
-<span class="na">http-proxy-host</span> <span class="o">=</span> <span class="s">your.proxy.name</span>
-<span class="na">http-proxy-port</span> <span class="o">=</span> <span class="s">3128</span>
-</pre></div>
+<p>The following is a link to the <a href="https://git-wip-us.apache.org/repos/asf?p=mina-ftpserver.git;a=summary">online source repository</a>.</p>
+<h1 id="cloning-from-the-git-repo">Cloning from the Git repo</h1>
+<p>Again, anyone can do this. Use a command like to checkout the current development version (the trunk):</p>
+<p>read only access :</p>
+<p>git clone http://git-wip-us.apache.org/repos/asf/mina-ftpserver.git ftpserver</p>
+<p>write access :</p>
+<p>git clone https://git-wip-us.apache.org/repos/asf/mina-ftpserver.git ftpserver</p>
+<p>You will not be able to commit into the project if you are not a committer.</p>
 
                 </div><!-- rightColumn -->
                 <div id="endContent"></div>