Return-Path: Delivered-To: apmail-incubator-river-commits-archive@minotaur.apache.org Received: (qmail 46837 invoked from network); 3 Apr 2009 23:17:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 3 Apr 2009 23:17:33 -0000 Received: (qmail 15746 invoked by uid 500); 3 Apr 2009 23:17:23 -0000 Delivered-To: apmail-incubator-river-commits-archive@incubator.apache.org Received: (qmail 15176 invoked by uid 500); 3 Apr 2009 23:17:22 -0000 Mailing-List: contact river-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: river-dev@incubator.apache.org Delivered-To: mailing list river-commits@incubator.apache.org Received: (qmail 14433 invoked by uid 99); 3 Apr 2009 23:10:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Apr 2009 23:10:30 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Apr 2009 23:10:21 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id BF05F234C051 for ; Fri, 3 Apr 2009 16:10:00 -0700 (PDT) Message-ID: <916389380.1238800200781.JavaMail.www-data@brutus> Date: Fri, 3 Apr 2009 16:10:00 -0700 (PDT) From: confluence@apache.org To: river-commits@incubator.apache.org Subject: [CONF] Apache River: Source Code (page edited) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Source Code (RIVER) edited by Jukka Zitting Page: http://cwiki.apache.org/confluence/display/RIVER/Source+Code Changes: http://cwiki.apache.org/confluence/pages/diffpagesbyversion.action?pageId=72559&originalVersion=4&revisedVersion=5 Content: --------------------------------------------------------------------- h1. River source code River uses [Subversion|http://subversion.tigris.org/] to manage its source code. Instructions on Subversion use can be found [here|http://svnbook.red-bean.com]. The source code for the various deliverables of Apache River can be freely browsed at [http://svn.apache.org/viewvc/incubator/river/]. h2. Anonymous access The Apache River source can be checked out anonymously with this command (for the jtsk deliverable): {noformat} svn checkout http://svn.apache.org/repos/asf/incubator/river/jtsk/trunk river {noformat} h2. 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 HTTPS: {noformat} svn checkout https://svn.apache.org/repos/asf/incubator/river/jtsk/trunk river {noformat} h2. 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.) 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. Example : Edit the 'servers' file and add something like : {noformat} [global] http-proxy-host = your.proxy.name http-proxy-port = 3128 {noformat} h2. Submitting a Patch If you make changes to River, and would like to contribute the to the project, you should create a patch and post it to the [River JIRA issue tracker|http://issues.apache.org/jira/browse/RIVER]. To create a patch, simply execute the following command: {noformat} svn diff > your-changes.patch {noformat} If you've added new files, remember to "svn add" them so they get included in the diff. h2. Developer Access Everyone can access the River Subversion repository via HTTPS, but River Committers must checkout the Subversion repository via HTTPS. {noformat} svn checkout https://svn.apache.org/repos/asf/incubator/river/jtsk/trunk river {noformat} To commit changes to the repository, you must set your password on the Apache Subversion server. To set your password, use ssh to connect to svn.apache.org, and enter the command *svnpasswd*. This will prompt you to enter a svn password of your choice (pick a safe password). Now, now your are ready to commit changes using your username/password. Execute the following command to commit your changes (svn will prompt you for your password) {noformat} svn commit --username your-username Authentication realm: ASF Committers Password for 'your-username': your-password {noformat} You can also pass your password on the command line directly, but this is a security problem on multiuser unix computers (the command line arguments are available via the ps command). Here is the command if you are Windows or a single user unix computer: {noformat} svn commit --username your-username --password your-password {noformat} Remember to replace 'your-username' and 'your-password' with your actual username and password on svn.apache.org. --------------------------------------------------------------------- CONFLUENCE INFORMATION This message is automatically generated by Confluence Unsubscribe or edit your notifications preferences http://cwiki.apache.org/confluence/users/viewnotifications.action If you think it was sent incorrectly contact one of the administrators http://cwiki.apache.org/confluence/administrators.action If you want more information on Confluence, or have a bug to report see http://www.atlassian.com/software/confluence