You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by dm...@apache.org on 2011/08/07 01:53:23 UTC

svn commit: r1154622 - /hbase/trunk/src/docbkx/developer.xml

Author: dmeil
Date: Sat Aug  6 23:53:23 2011
New Revision: 1154622

URL: http://svn.apache.org/viewvc?rev=1154622&view=rev
Log:
HBASE-4174 - developer.xml adding sub-section for setting jira priorities

Modified:
    hbase/trunk/src/docbkx/developer.xml

Modified: hbase/trunk/src/docbkx/developer.xml
URL: http://svn.apache.org/viewvc/hbase/trunk/src/docbkx/developer.xml?rev=1154622&r1=1154621&r2=1154622&view=diff
==============================================================================
--- hbase/trunk/src/docbkx/developer.xml (original)
+++ hbase/trunk/src/docbkx/developer.xml Sat Aug  6 23:53:23 2011
@@ -32,7 +32,7 @@ git clone git://git.apache.org/hbase.git
             <section xml:id="eclipse.code.formatting">
             <title>Code Formatting</title>
             <para>See <link xlink:href="https://issues.apache.org/jira/browse/HBASE-3678">HBASE-3678 Add Eclipse-based Apache Formatter to HBase Wiki</link>
-              for an Eclipse formatter to help ensure your code conforms to HBase'y coding conventsion.
+              for an Eclipse formatter to help ensure your code conforms to HBase'y coding convention.
             The issue includes instructions for loading the attached formatter.</para>
             <para>Also, no @author tags - that's a rule.  Quality Javadoc comments are appreciated.  And include the Apache license.</para>
             </section>         
@@ -145,6 +145,18 @@ mvn test -Dtest=TestXYZ
           <para>Check for existing issues in <link xlink:href="https://issues.apache.org/jira/browse/HBASE">Jira</link>.  
           If it's either a new feature request, enhancement, or a bug, file a ticket.
           </para>
+          <section xml:id="jira.priorities"><title>Jira Priorities</title>
+          <para>The following is a guideline on setting Jira issue priorities:
+                <itemizedlist>
+                <listitem>Blocker: Should only be used if the issue WILL cause data loss or cluster instability reliably.</listitem>
+                <listitem>Critical: The issue described can cause data loss or cluster instability in some cases.</listitem>
+                <listitem>Major: Important but not tragic issues, like updates to the client API that will add a lot of much-needed functionality or significant
+                bugs that need to be fixed but that don't cause data loss.</listitem>
+                <listitem>Minor: Useful enhancements and annoying but not damaging bugs.</listitem> 
+                <listitem>Trivial: Useful enhancements but generally cosmetic.</listitem> 
+                </itemizedlist>  
+             </para> 
+          </section>
         </section>
         <section xml:id="codelines"><title>Codelines</title>
           <para>Most development is done on TRUNK.  However, there are branches for minor releases (e.g., 0.90.1, 0.90.2, and 0.90.3 are on the 0.90 branch).</para>