Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9EFA09D18 for ; Sat, 14 Apr 2012 17:59:53 +0000 (UTC) Received: (qmail 62988 invoked by uid 500); 14 Apr 2012 17:59:53 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 62938 invoked by uid 500); 14 Apr 2012 17:59:53 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 62931 invoked by uid 99); 14 Apr 2012 17:59:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 14 Apr 2012 17:59:53 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 14 Apr 2012 17:59:52 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 30E0123889D5; Sat, 14 Apr 2012 17:59:32 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1326165 - /httpd/site/trunk/xdocs/docs-project/svn.xml Date: Sat, 14 Apr 2012 17:59:32 -0000 To: cvs@httpd.apache.org From: rbowen@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120414175932.30E0123889D5@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rbowen Date: Sat Apr 14 17:59:31 2012 New Revision: 1326165 URL: http://svn.apache.org/viewvc?rev=1326165&view=rev Log: Oops. This needs to be in svn. Added: httpd/site/trunk/xdocs/docs-project/svn.xml Added: httpd/site/trunk/xdocs/docs-project/svn.xml URL: http://svn.apache.org/viewvc/httpd/site/trunk/xdocs/docs-project/svn.xml?rev=1326165&view=auto ============================================================================== --- httpd/site/trunk/xdocs/docs-project/svn.xml (added) +++ httpd/site/trunk/xdocs/docs-project/svn.xml [utf-8] Sat Apr 14 17:59:31 2012 @@ -0,0 +1,69 @@ + + + + Documentation Project: Subversion + + +
+Documentation Project: Subversion + +

The documentation of the Apache HTTP Server is in the same Subversion +revision control repository as the code. If you wish to work on the +documentation, you can check out the entire source code repository, or +just the documentation.

+ +

To check out the entire repository, you'll do the following:

+ + +svn checkout https://svn.apache.org/repos/asf/httpd/httpd/trunk httpd-trunk
+svn checkout https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x httpd-2.4 +
+ +

By checking out both trunk and 2.4, you'll be able to submit patches +against both the development version, and the current latest released +version.

+ +

To check out just the documentation portion of the repository, append +'/docs' to the end of the checkout URLs shown above. This +will give you a much smaller checkout, but perhaps you'll lack some of +the resources you might need to verify your documenation changes.

+ +
+ +
+Creating a patch + +

Once you have a checkout, creating a patch takes three steps.

+ +
    +
  1. Edit the file that you wish to modify. Make the desired changes, +and then save your changes.

  2. +
  3. At the command line, type the following to create a patch +file:

    + +svn diff > patch.txt + +
  4. +
  5. Send email to the docs@httpd.apache.org mailing list +and attach patch.txt.

  6. +
+ +

If you have more than one changed file, you can supply the file name +on the svn diff command line, in order to just record the +changes in one file.

+ + +svn diff mod_rewrite.xml > mod_rewrite_patch.txt + + +
+ +
See Also + +

See also the document on documentation +format and transformation for details about verifying that your +changes are complient with our documentation format and standards.

+
+ + +