Author: buildbot Date: Fri Mar 9 21:13:59 2012 New Revision: 808026 Log: Staging update by buildbot for accumulo
Modified: websites/staging/accumulo/trunk/content/ (props changed) websites/staging/accumulo/trunk/content/accumulo/source.html Propchange: websites/staging/accumulo/trunk/content/ ------------------------------------------------------------------------------ --- cms:source-revision (original) +++ cms:source-revision Fri Mar 9 21:13:59 2012 @@ -1 +1 @@ -1297733 +1299047 Modified: websites/staging/accumulo/trunk/content/accumulo/source.html ============================================================================== --- websites/staging/accumulo/trunk/content/accumulo/source.html (original) +++ websites/staging/accumulo/trunk/content/accumulo/source.html Fri Mar 9 21:13:59 2012 @@ -66,7 +66,7 @@ <li><a href="/accumulo/user_manual_1.3-incubating">Manual v1.3</a></li> <li><a href="/accumulo/user_manual_1.3-incubating/examples.html">Examples v1.3</a></li> <li><a href="/accumulo/user_manual_1.4-incubating">Manual v1.4</a> -<!-- - klzzwxh:0006 --> +<!-- - <a href="/accumulo/getting_started.html">Getting Started</a> --> <!-- - Javadoc --> <!-- - Examples --></li> <li><a href="/accumulo/screenshots.html">Screenshots</a></li> @@ -78,7 +78,7 @@ - Building --> -<h1 id="asf_links">ASF links</h1> +<h1 id="asf-links">ASF links</h1> <ul> <li><a href="http://www.apache.org">Apache Software Foundation</a></li> <li><a href="http://www.apache.org/foundation/thanks.html">Thanks</a></li> @@ -92,30 +92,34 @@ <div id="content"> <h1 class="title">Apache Accumulo Source Code & Developers Guide</h1> - <h2 id="source_code">Source Code</h2> + <h2 id="source-code">Source Code</h2> <p>Accumulo source code is maintained using <a href="http://subversion.apache.org/">Apache Subversion</a> version control (<a href="http://svn.apache.org/viewvc/incubator/accumulo/">browse</a>|<a href="https://svn.apache.org/repos/asf/incubator/accumulo/trunk/">checkout</a>). It builds with <a href="http://maven.apache.org/">Apache Maven</a>.</p> -<h2 id="developers_guide">Developers Guide</h2> -<h3 id="building_code">Building code</h3> +<h2 id="website">Website</h2> +<p>Accumulo's web site is also maintained in Subversion using Apache's <a href="http://www.apache.org/dev/cms.html">Content Management System</a>. +Committers may edit the site by following <a href="http://www.apache.org/dev/cms.html#usage">these instructions</a>.</p> +<h2 id="developers-guide">Developers Guide</h2> +<h3 id="building-code">Building code</h3> <p>To check out the code:</p> <div class="codehilite"><pre><span class="n">svn</span> <span class="n">co</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">/incubator/</span><span class="n">accumulo</span><span class="sr">/trunk/</span> </pre></div> <p>To build the code:</p> -<div class="codehilite"><pre><span class="n">mvn</span> <span class="nb">package</span> <span class="o">&&</span> <span class="n">mvn</span> <span class="n">assembly:single</span> +<div class="codehilite"><pre><span class="n">mvn</span> <span class="o">-</span><span class="n">P</span> <span class="nb">package</span> </pre></div> +<p>For older branches, "mvn package && mvn assembly:single" may be required instead.</p> <p>This will create a file accumulo-*-incubating-SNAPSHOT-dist.tar.gz in the target directory.</p> -<h3 id="continuous_integration">Continuous Integration</h3> +<h3 id="continuous-integration">Continuous Integration</h3> <p>Accumulo uses <a href="http://jenkins-ci.org/">Jenkins</a> for automatic builds.</p> <p><img src="https://builds.apache.org/job/Accumulo-Trunk/lastBuild/buildStatus" width=18> <a href="https://builds.apache.org/job/Accumulo-Trunk/">Trunk</a></p> <p><img src="https://builds.apache.org/job/Accumulo-1.4.x/lastBuild/buildStatus" width=18> <a href="https://builds.apache.org/job/Accumulo-1.4.x/">1.4 Branch</a></p> <p><img src="https://builds.apache.org/job/Accumulo-1.3.x/lastBuild/buildStatus" width=18> <a href="https://builds.apache.org/job/Accumulo-1.3.x/">1.3 Branch</a></p> -<h3 id="issue_tracking">Issue Tracking</h3> +<h3 id="issue-tracking">Issue Tracking</h3> <p>Accumulo <a href="https://issues.apache.org/jira/browse/accumulo">tracks issues</a> with <a href="http://www.atlassian.com/software/jira/overview">JIRA</a>. Every commit should reference a JIRA ticket of the form ACCUMULO-#.</p> -<h3 id="merging_practices">Merging Practices</h3> +<h3 id="merging-practices">Merging Practices</h3> <p>Changes should be merged from earlier branches of Accumulo to later branches. Currently, all changes are being merged from the 1.4 branch and later, but not all changes are merged from the 1.3 branch. When you make a change in branch 1.x, use the following process to merge to subsequent versions 1.y and 1.z:</p> <div class="codehilite"><pre><span class="n">svn</span> <span class="n">merge</span> <span class="o">-</span><span class="n">r</span> <span class="mi">1</span><span class="p">:</span><span class="n">HEAD</span> <span class="mi">1</span><span class="o">.</span><span class="n">x_svn_url</span> <span class="mi">1</span><span class="o">.</span><span class="n">y_local_dir</span> @@ -135,7 +139,7 @@ </pre></div> -<h3 id="coding_practices">Coding Practices</h3> +<h3 id="coding-practices">Coding Practices</h3> <ul> <li>License Header: Always add the current ASF license header as described in <a href="http://www.apache.org/legal/src-headers.html">ASF Source Header</a>.</li> <li>Trailing Whitespaces: Remove all trailing whitespaces. Eclipse users can use Source->Cleanup option to accomplish this.</li> @@ -144,7 +148,7 @@ <li>Control Structure New Lines: Use a new line with single statement if/else blocks.</li> <li>Author Tags: Do not use Author Tags. The code is developed and owned by the community. </li> </ul> -<h3 id="eclipse_configuration_tips">Eclipse Configuration Tips</h3> +<h3 id="eclipse-configuration-tips">Eclipse Configuration Tips</h3> <ul> <li>Download Eclipse <a href="https://svn.apache.org/repos/asf/incubator/accumulo/trunk/contrib/">formatting and style guides for Accumulo</a>.</li> <li>Import Formatter: Preferences > Java > Code Style > Formatter and import the Eclipse-Accumulo-Codestyle.xml downloaded in the previous step. </li> @@ -152,7 +156,7 @@ </ul> <h3 id="svn">SVN</h3> <p>Instructions for configuring svn clients are <a href="http://www.apache.org/dev/version-control.html#https-svn-config">here</a>.</p> -<h3 id="release_guide">Release Guide</h3> +<h3 id="release-guide">Release Guide</h3> <p>Accumulo's release guide can be found <a href="/accumulo/governance/releasing.html">here</a>.</p> </div>