You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by bu...@apache.org on 2014/10/21 18:18:07 UTC

svn commit: r926345 - in /websites/staging/directory/trunk/content: ./ sources.html

Author: buildbot
Date: Tue Oct 21 16:18:07 2014
New Revision: 926345

Log:
Staging update by buildbot for directory

Modified:
    websites/staging/directory/trunk/content/   (props changed)
    websites/staging/directory/trunk/content/sources.html

Propchange: websites/staging/directory/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Tue Oct 21 16:18:07 2014
@@ -1 +1 @@
-1633410
+1633411

Modified: websites/staging/directory/trunk/content/sources.html
==============================================================================
--- websites/staging/directory/trunk/content/sources.html (original)
+++ websites/staging/directory/trunk/content/sources.html Tue Oct 21 16:18:07 2014
@@ -165,18 +165,25 @@
 
 
 <h1 id="sources">Sources</h1>
-<p>Sources for the Apache Directory projects are currently managed through <a href="http://subversion.tigris.org|subversion.tigris.org">Subversion</a>. 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.</p>
+<p>Sources for the Apache Directory projects are currently managed through <a href="http://subversion.tigris.org|subversion.tigris.org">Subversion</a>, except for Fortress Core which is <a href="https://git-wip-us.apache.org/">git base</a>. 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.</p>
 <p><img alt="Subversion" src="images/subversion_logo.png" /></p>
 <h2 id="web-access-to-subversion">Web Access to Subversion</h2>
 <p>If you just want to browse the source code, you can use the <a href="http://svn.apache.org/viewvc/directory">web interface to Subversion</a>. This is current at all times.</p>
-<h2 id="normal-subversion-access">Normal Subversion Access</h2>
-<p>Anyone can check code out of Subversion. You only need to specify a username and password in order to update the Subversion repository, and only Directory committers have the permissions to do that. We run Subversion over standard HTTPS, so hopefully you won't have problems with intervening firewalls.</p>
-<h3 id="check-out-from-subversion">Check out from Subversion</h3>
+<h2 id="web-access-to-git">Web access to Git</h2>
+<p>If you just want to browse the source code, you can use the <a href="https://git-wip-us.apache.org/repos/asf?p=directory-fortress-core.git">web interface to Git</a>. This is current at all times.</p>
+<h2 id="normal-subversiongit-access">Normal Subversion/Git Access</h2>
+<p>Anyone can check code out of Subversion. You only need to specify a username and password in order to update the Subversion repository, and only Directory committers have the permissions to do that. We run Subversion and Git over standard HTTPS, so hopefully you won't have problems with intervening firewalls.</p>
+<h3 id="check-out-from-subversion-or-git">Check out from Subversion or Git</h3>
 <p>Again, anyone can do this. Use a command like:</p>
 <div class="codehilite"><pre><span class="n">svn</span> <span class="n">checkout</span> <span class="n">http</span><span class="p">:</span><span class="o">//</span><span class="n">svn</span><span class="p">.</span><span class="n">apache</span><span class="p">.</span><span class="n">org</span><span class="o">/</span><span class="n">repos</span><span class="o">/</span><span class="n">asf</span><span class="o">/</span><span class="n">directory</span><span class="o">/</span><span class="n">apacheds</span><span class="o">/</span><span class="n">trunk</span><span class="o">-</span><span class="n">with</span><span class="o">-</span><span class="n">dependencies</span>
 </pre></div>
 
 
+<p>or for Fortress :</p>
+<div class="codehilite"><pre><span class="n">git</span> <span class="n">clone</span> <span class="n">https</span><span class="p">:</span><span class="o">//</span><span class="n">git</span><span class="o">-</span><span class="n">wip</span><span class="o">-</span><span class="n">us</span><span class="p">.</span><span class="n">apache</span><span class="p">.</span><span class="n">org</span><span class="o">/</span><span class="n">repos</span><span class="o">/</span><span class="n">asf</span><span class="o">/</span><span class="n">directory</span><span class="o">-</span><span class="n">fortress</span><span class="o">-</span><span class="n">core</span><span class="p">.</span><span class="n">git</span> <span class="n">fortress</span>
+</pre></div>
+
+
 <p>to check out the current version of the server, for instance.</p>
 <p>The following table displays the URL of each project, and the URL where you can find information about how to build each project.</p>
 <table>
@@ -212,6 +219,10 @@
 <td align="center"><a href="http://svn.apache.org/repos/asf/directory/escimo/trunk/">http://svn.apache.org/repos/asf/directory/escimo/trunk/</a></td>
 </tr>
 <tr>
+<td align="center">Apache Fortress Core</td>
+<td align="center"><a href="https://git-wip-us.apache.org/repos/asf/directory-fortress-core.git">https://git-wip-us.apache.org/repos/asf/directory-fortress-core.git</a></td>
+</tr>
+<tr>
 <td align="center">Apache Directory Site</td>
 <td align="center"><a href="http://svn.apache.org/repos/asf/directory/site/trunk/">http://svn.apache.org/repos/asf/directory/site/trunk/</a></td>
 </tr>
@@ -234,6 +245,17 @@
 For committers to be able to commit modification, they should have had checked out the project files using **https** instead of **http**.
 </DIV>
 
+<h3 id="commit-changes-to-git">Commit changes to Git</h3>
+<p>Any Directory committer should have a shell account on git-wip-us.apache.org.</p>
+<p>You can use a command like this to push your changes to the repository :</p>
+<div class="codehilite"><pre><span class="n">git</span> <span class="n">push</span>
+</pre></div>
+
+
+<DIV class="note" markdown="1">
+For committers to be able to commit modification, they should have had checked out the project files using **https** instead of **http**.
+</DIV>
+
 <h2 id="read-only-git-repositories">Read Only Git Repositories</h2>
 <p>There are also read only git repositories, which are mirroring the subversion repositories.</p>
 <table>