You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by je...@apache.org on 2004/11/29 01:08:12 UTC

svn commit: r106863 - /httpd/site/trunk/docs/dev/index.html /httpd/site/trunk/xdocs/dev/index.xml

Author: jerenkrantz
Date: Sun Nov 28 16:08:11 2004
New Revision: 106863

URL: http://svn.apache.org/viewcvs?view=rev&rev=106863
Log:
Put a quick note that we're using Subversion instead of CVS.  Detailed docs
will have to follow...

Modified:
   httpd/site/trunk/docs/dev/index.html
   httpd/site/trunk/xdocs/dev/index.xml

Modified: httpd/site/trunk/docs/dev/index.html
Url: http://svn.apache.org/viewcvs/httpd/site/trunk/docs/dev/index.html?view=diff&rev=106863&p1=httpd/site/trunk/docs/dev/index.html&r1=106862&p2=httpd/site/trunk/docs/dev/index.html&r2=106863
==============================================================================
--- httpd/site/trunk/docs/dev/index.html	(original)
+++ httpd/site/trunk/docs/dev/index.html	Sun Nov 28 16:08:11 2004
@@ -45,7 +45,6 @@
           <li><a href="/test/flood/">Flood</a></li>
           <li><a href="/apreq/">libapreq</a></li>
           <li><a href="/modules/">Modules</a></li>
-          <li><a href="/cli/">cli (.NET)</a></li>
         </menu>
       <p><b><a 
 href="/info/">Miscellaneous</a></b></p>
@@ -80,23 +79,33 @@
  </td></tr>
  <tr><td>
   <blockquote>
+<p>The Apache HTTP Server Project has switched to Subversion for hosting its
+source code.</p>
+<p>To check out the 2.0.x branch:</p>
 <blockquote>
-The Apache HTTP Server Project has begun development of the 2.1-dev branch!
-The developers seek to maintain module compatibility between 2.0.42 and 
-future 2.0 releases for administrators and end users, while continuing the 
-forward progress that has made the 2.0 server faster and more scalable.
+<code>
+svn co http://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x httpd-2.0.x
+</code>
 </blockquote>
+<p>To check out the 1.3.x branch:</p>
 <blockquote>
-Developers who have active CVS trees may want to cvs up -r APACHE_2_0_BRANCH
-to continue to work with the current httpd-2.0 cvs sources.  Developers who
-want to work in the 2.1-dev sandbox should continue to use cvs HEAD.
+<code>
+svn co http://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x httpd-1.3.x
+</code>
 </blockquote>
+<p>To check out the current development version (as of this writing, 2.1.x),
+use:</p>
 <blockquote>
-The simplest way for committers to work with this change is to commit new
-work to the 2.1-dev sources (cvs HEAD), obtain appropriate feedback, and 
-finally commit back to the APACHE_2_0_BRANCH those stable and well tested
-changes that don't break compatibility with the most recent 2.0 release.
+<code>
+svn co http://svn.apache.org/repos/asf/httpd/httpd/trunk httpd-trunk
+</code>
 </blockquote>
+<p>Committers should check out via https instead of http (so that they can
+commit their changes).  For more info about Subversion, please read <a href="http://www.apache.org/dev/version-control.html">the ASF version control FAQ</a>.</p>
+<p>The developers continue to seek to maintain module compatibility between
+2.0.42 and future 2.0 releases for administrators and end users, while
+continuing the forward progress that has made the 2.0 server faster and more
+scalable.</p>
   </blockquote>
  </td></tr>
 </table>

Modified: httpd/site/trunk/xdocs/dev/index.xml
Url: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/dev/index.xml?view=diff&rev=106863&p1=httpd/site/trunk/xdocs/dev/index.xml&r1=106862&p2=httpd/site/trunk/xdocs/dev/index.xml&r2=106863
==============================================================================
--- httpd/site/trunk/xdocs/dev/index.xml	(original)
+++ httpd/site/trunk/xdocs/dev/index.xml	Sun Nov 28 16:08:11 2004
@@ -18,23 +18,43 @@
 <section>
 <title>Developer News</title>
 
+<p>The Apache HTTP Server Project has switched to Subversion for hosting its
+source code.</p>
+
+<p>To check out the 2.0.x branch:</p>
 <blockquote>
-The Apache HTTP Server Project has begun development of the 2.1-dev branch!
-The developers seek to maintain module compatibility between 2.0.42 and 
-future 2.0 releases for administrators and end users, while continuing the 
-forward progress that has made the 2.0 server faster and more scalable.
+<code>
+svn co http://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x httpd-2.0.x
+</code>
 </blockquote>
+
+<p>To check out the 1.3.x branch:</p>
+
 <blockquote>
-Developers who have active CVS trees may want to cvs up -r APACHE_2_0_BRANCH
-to continue to work with the current httpd-2.0 cvs sources.  Developers who
-want to work in the 2.1-dev sandbox should continue to use cvs HEAD.
+<code>
+svn co http://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x httpd-1.3.x
+</code>
 </blockquote>
+
+<p>To check out the current development version (as of this writing, 2.1.x),
+use:</p>
+
 <blockquote>
-The simplest way for committers to work with this change is to commit new
-work to the 2.1-dev sources (cvs HEAD), obtain appropriate feedback, and 
-finally commit back to the APACHE_2_0_BRANCH those stable and well tested
-changes that don't break compatibility with the most recent 2.0 release.
+<code>
+svn co http://svn.apache.org/repos/asf/httpd/httpd/trunk httpd-trunk
+</code>
 </blockquote>
+
+<p>Committers should check out via https instead of http (so that they can
+commit their changes).  For more info about Subversion, please read <a
+href="http://www.apache.org/dev/version-control.html"
+>the ASF version control FAQ</a>.</p>
+
+<p>The developers continue to seek to maintain module compatibility between
+2.0.42 and future 2.0 releases for administrators and end users, while
+continuing the forward progress that has made the 2.0 server faster and more
+scalable.</p>
+
 </section>
 
 <section>