You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by jr...@apache.org on 2010/09/22 16:51:35 UTC

svn commit: r1000009 - in /wicket/common/site/trunk: _site/atom.xml _site/contribute/patch.html contribute/patch.md

Author: jrthomerson
Date: Wed Sep 22 14:51:35 2010
New Revision: 1000009

URL: http://svn.apache.org/viewvc?rev=1000009&view=rev
Log:
add 'how to contribute a patch' page to site

Modified:
    wicket/common/site/trunk/_site/atom.xml
    wicket/common/site/trunk/_site/contribute/patch.html
    wicket/common/site/trunk/contribute/patch.md

Modified: wicket/common/site/trunk/_site/atom.xml
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/atom.xml?rev=1000009&r1=1000008&r2=1000009&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/atom.xml (original)
+++ wicket/common/site/trunk/_site/atom.xml Wed Sep 22 14:51:35 2010
@@ -4,7 +4,7 @@
  <title>Apache Wicket</title>
  <link href="http://wicket.apache.org/atom.xml" rel="self"/>
  <link href="http://wicket.apache.org/"/>
- <updated>2010-09-21T22:47:23-05:00</updated>
+ <updated>2010-09-22T09:44:38-05:00</updated>
  <id>http://wicket.apache.org/</id>
  <author>
    <name>Apache Wicket</name>

Modified: wicket/common/site/trunk/_site/contribute/patch.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/contribute/patch.html?rev=1000009&r1=1000008&r2=1000009&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/contribute/patch.html (original)
+++ wicket/common/site/trunk/_site/contribute/patch.html Wed Sep 22 14:51:35 2010
@@ -144,7 +144,34 @@
 
 		<div id="contentbody">
 			<h1>Submit a patch</h1>
-			
+			<h2 id='high_level'>High level:</h2>
+
+<p>The steps to submitting a patch for Wicket are:</p>
+
+<ul>
+<li>Identify an issue that you want to fix or improve</li>
+
+<li>Search JIRA and the mailing list to see if it&#8217;s already been discussed</li>
+
+<li>If it&#8217;s a bug or a feature request, open a <a href='https://issues.apache.org/jira/browse/WICKET'>JIRA issue</a></li>
+
+<li><a href='../start/quickstart.html'>Create a quickstart</a> that you can use for prototyping the feature or demonstrating the bug ** Attach this quickstart to the JIRA issue if it&#8217;s representing a bug report.</li>
+
+<li>Get Subversion running</li>
+
+<li><a href='../start/download.html#snapshots_and_latest_bleedingedge_code'>Checkout out the code</a></li>
+
+<li>Make your changes</li>
+
+<li>Create the patch:</li>
+</ul>
+<div class='highlight'><pre><code class='console'><span class='go'>svn add &lt;any_files_you_created&gt;</span>
+<span class='go'>svn diff &gt; /tmp/fix-WICKET-NNNN.patch</span>
+</code></pre>
+</div>
+<ul>
+<li>Attach that file (/tmp/fix-WICKET-NNNN.patch) to the JIRA</li>
+</ul>
 		</div>
         <div id="clearer"></div>
 		<div id="footer"><span>

Modified: wicket/common/site/trunk/contribute/patch.md
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/contribute/patch.md?rev=1000009&r1=1000008&r2=1000009&view=diff
==============================================================================
--- wicket/common/site/trunk/contribute/patch.md (original)
+++ wicket/common/site/trunk/contribute/patch.md Wed Sep 22 14:51:35 2010
@@ -2,3 +2,25 @@
 layout: default
 title: Submit a patch
 ---
+
+TODO: this is just a set of basic instructions.  We need to add more information here.
+
+## High level: ##
+The steps to submitting a patch for Wicket are:
+
+* Identify an issue that you want to fix or improve
+* Search JIRA and the mailing list to see if it's already been discussed
+* If it's a bug or a feature request, open a [JIRA issue](https://issues.apache.org/jira/browse/WICKET)
+* [Create a quickstart](../start/quickstart.html) that you can use for prototyping the feature or demonstrating the bug
+** Attach this quickstart to the JIRA issue if it's representing a bug report.
+* Get Subversion running
+* [Checkout out the code](../start/download.html#snapshots_and_latest_bleedingedge_code)
+* Make your changes
+* Create the patch:
+
+{% highlight console %}
+svn add any_files_you_created
+svn diff > /tmp/fix-WICKET-NNNN.patch
+{% endhighlight %}
+
+* Attach that file (/tmp/fix-WICKET-NNNN.patch) to the JIRA