You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by bu...@apache.org on 2011/07/12 20:06:36 UTC

svn commit: r792601 [44/49] - /websites/staging/openejb/trunk/content/

Modified: websites/staging/openejb/trunk/content/time-saved.html
==============================================================================
--- websites/staging/openejb/trunk/content/time-saved.html (original)
+++ websites/staging/openejb/trunk/content/time-saved.html Tue Jul 12 18:06:32 2011
@@ -152,7 +152,7 @@
           <P>
             <!-- $BODY -->
             <DIV id="PageContent">
-          <p>Ever wonder e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">actly how much time you might be saving being able to quickly
+          <p>Ever wonder exactly how much time you might be saving being able to quickly
 compile and test code with OpenEJB?  Well, find out!</p>
 
 <p>Deploy times in Java EE in general are partially based on the platform and
@@ -160,248 +160,248 @@ partially on the size of the application
 put together this little calculator so you can see what OpenEJB is doing
 for you!</p>
 
-<p><a name="TimeSaved-Calculator">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="TimeSaved-Calculator"></a></p>
 
 <h1>Calculator</h1>
 
-<p><script type="te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">javascript" src="http:<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"><IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">prototypejs.org<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">assets<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" b
 order="0">2010<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">4<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">1<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">prototype.js">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">script>
-<script></p>
+<script type="text/javascript" src="http://prototypejs.org/assets/2010/4/1/prototype.js"></script>
 
-<p>function calculate() {
+<script>
+
+  function calculate() {
     var developers = $("devs").getValue();
     var cycles = $("cycles").getValue();
-    var weeks = $("weeks").getValue();</p>
+    var weeks = $("weeks").getValue();
 
-<pre><code>var individual_deployTime_openejb = $("time_openejb").getValue();
-var individual_deployTime_vendor = $("time_vendor").getValue();
-var individual_deployTime_savings = individual_deployTime_vendor - individual_deployTime_openejb;
-
-var individual_deployTimePerHour_openejb = cycles * individual_deployTime_openejb &lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt; 8;
-var individual_deployTimePerHour_vendor =  cycles * individual_deployTime_vendor &lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt; 8;
-var individual_deployTimePerHour_savings = individual_deployTimePerHour_vendor - individual_deployTimePerHour_openejb;
-
-var individual_deployTimePerWeek_openejb = individual_deployTimePerHour_openejb * 40;
-var individual_deployTimePerWeek_vendor = individual_deployTimePerHour_vendor * 40;
-var individual_deployTimePerWeek_savings = individual_deployTimePerWeek_vendor - individual_deployTimePerWeek_openejb;
-
-var individual_deployTimePerMonth_openejb = individual_deployTimePerWeek_openejb * 4.33;
-var individual_deployTimePerMonth_vendor = individual_deployTimePerWeek_vendor * 4.33;
-var individual_deployTimePerMonth_savings = individual_deployTimePerMonth_vendor - individual_deployTimePerMonth_openejb;
-
-var team_deployTime_openejb = developers * individual_deployTime_openejb;
-var team_deployTime_vendor = developers * individual_deployTime_vendor;
-var team_deployTime_savings = developers * individual_deployTime_savings;
-
-var team_deployTimePerHour_openejb = developers * individual_deployTimePerHour_openejb;
-var team_deployTimePerHour_vendor = developers * individual_deployTimePerHour_vendor;
-var team_deployTimePerHour_savings = developers * individual_deployTimePerHour_savings;
-
-var team_deployTimePerWeek_openejb = developers * individual_deployTimePerWeek_openejb;
-var team_deployTimePerWeek_vendor = developers * individual_deployTimePerWeek_vendor;
-var team_deployTimePerWeek_savings = developers * individual_deployTimePerWeek_savings;
-
-var team_deployTimePerMonth_openejb = developers * individual_deployTimePerMonth_openejb;
-var team_deployTimePerMonth_vendor = developers * individual_deployTimePerMonth_vendor;
-var team_deployTimePerMonth_savings = developers * individual_deployTimePerMonth_savings;
-
-var total_savings = team_deployTimePerWeek_savings * weeks;
-
-$("individual.deployTime.openejb").innerHTML = format(individual_deployTime_openejb);
-$("individual.deployTime.vendor").innerHTML = format(individual_deployTime_vendor);
-$("individual.deployTime.savings").innerHTML = format(individual_deployTime_savings);
-
-$("individual.deployTimePerHour.openejb").innerHTML = format(individual_deployTimePerHour_openejb);
-$("individual.deployTimePerHour.vendor").innerHTML = format(individual_deployTimePerHour_vendor);
-$("individual.deployTimePerHour.savings").innerHTML = format(individual_deployTimePerHour_savings);
-
-$("individual.deployTimePerWeek.openejb").innerHTML = format(individual_deployTimePerWeek_openejb);
-$("individual.deployTimePerWeek.vendor").innerHTML = format(individual_deployTimePerWeek_vendor);
-$("individual.deployTimePerWeek.savings").innerHTML = format(individual_deployTimePerWeek_savings);
-
-$("individual.deployTimePerMonth.openejb").innerHTML = format(individual_deployTimePerMonth_openejb);
-$("individual.deployTimePerMonth.vendor").innerHTML = format(individual_deployTimePerMonth_vendor);
-$("individual.deployTimePerMonth.savings").innerHTML = format(individual_deployTimePerMonth_savings);
-
-$("team.deployTime.openejb").innerHTML = format(team_deployTime_openejb);
-$("team.deployTime.vendor").innerHTML = format(team_deployTime_vendor);
-$("team.deployTime.savings").innerHTML = format(team_deployTime_savings);
-$("team.deployTimePerHour.openejb").innerHTML = format(team_deployTimePerHour_openejb);
-$("team.deployTimePerHour.vendor").innerHTML = format(team_deployTimePerHour_vendor);
-$("team.deployTimePerHour.savings").innerHTML = format(team_deployTimePerHour_savings);
-$("team.deployTimePerWeek.openejb").innerHTML = format(team_deployTimePerWeek_openejb);
-$("team.deployTimePerWeek.vendor").innerHTML = format(team_deployTimePerWeek_vendor);
-$("team.deployTimePerWeek.savings").innerHTML = format(team_deployTimePerWeek_savings);
-$("team.deployTimePerMonth.openejb").innerHTML = format(team_deployTimePerMonth_openejb);
-$("team.deployTimePerMonth.vendor").innerHTML = format(team_deployTimePerMonth_vendor);
-$("team.deployTimePerMonth.savings").innerHTML = format(team_deployTimePerMonth_savings);
+    var individual_deployTime_openejb = $("time_openejb").getValue();
+    var individual_deployTime_vendor = $("time_vendor").getValue();
+    var individual_deployTime_savings = individual_deployTime_vendor - individual_deployTime_openejb;
+
+    var individual_deployTimePerHour_openejb = cycles * individual_deployTime_openejb / 8;
+    var individual_deployTimePerHour_vendor =  cycles * individual_deployTime_vendor / 8;
+    var individual_deployTimePerHour_savings = individual_deployTimePerHour_vendor - individual_deployTimePerHour_openejb;
+
+    var individual_deployTimePerWeek_openejb = individual_deployTimePerHour_openejb * 40;
+    var individual_deployTimePerWeek_vendor = individual_deployTimePerHour_vendor * 40;
+    var individual_deployTimePerWeek_savings = individual_deployTimePerWeek_vendor - individual_deployTimePerWeek_openejb;
+
+    var individual_deployTimePerMonth_openejb = individual_deployTimePerWeek_openejb * 4.33;
+    var individual_deployTimePerMonth_vendor = individual_deployTimePerWeek_vendor * 4.33;
+    var individual_deployTimePerMonth_savings = individual_deployTimePerMonth_vendor - individual_deployTimePerMonth_openejb;
+
+    var team_deployTime_openejb = developers * individual_deployTime_openejb;
+    var team_deployTime_vendor = developers * individual_deployTime_vendor;
+    var team_deployTime_savings = developers * individual_deployTime_savings;
+
+    var team_deployTimePerHour_openejb = developers * individual_deployTimePerHour_openejb;
+    var team_deployTimePerHour_vendor = developers * individual_deployTimePerHour_vendor;
+    var team_deployTimePerHour_savings = developers * individual_deployTimePerHour_savings;
+
+    var team_deployTimePerWeek_openejb = developers * individual_deployTimePerWeek_openejb;
+    var team_deployTimePerWeek_vendor = developers * individual_deployTimePerWeek_vendor;
+    var team_deployTimePerWeek_savings = developers * individual_deployTimePerWeek_savings;
+
+    var team_deployTimePerMonth_openejb = developers * individual_deployTimePerMonth_openejb;
+    var team_deployTimePerMonth_vendor = developers * individual_deployTimePerMonth_vendor;
+    var team_deployTimePerMonth_savings = developers * individual_deployTimePerMonth_savings;
+
+    var total_savings = team_deployTimePerWeek_savings * weeks;
+
+    $("individual.deployTime.openejb").innerHTML = format(individual_deployTime_openejb);
+    $("individual.deployTime.vendor").innerHTML = format(individual_deployTime_vendor);
+    $("individual.deployTime.savings").innerHTML = format(individual_deployTime_savings);
+
+    $("individual.deployTimePerHour.openejb").innerHTML = format(individual_deployTimePerHour_openejb);
+    $("individual.deployTimePerHour.vendor").innerHTML = format(individual_deployTimePerHour_vendor);
+    $("individual.deployTimePerHour.savings").innerHTML = format(individual_deployTimePerHour_savings);
+
+    $("individual.deployTimePerWeek.openejb").innerHTML = format(individual_deployTimePerWeek_openejb);
+    $("individual.deployTimePerWeek.vendor").innerHTML = format(individual_deployTimePerWeek_vendor);
+    $("individual.deployTimePerWeek.savings").innerHTML = format(individual_deployTimePerWeek_savings);
+
+    $("individual.deployTimePerMonth.openejb").innerHTML = format(individual_deployTimePerMonth_openejb);
+    $("individual.deployTimePerMonth.vendor").innerHTML = format(individual_deployTimePerMonth_vendor);
+    $("individual.deployTimePerMonth.savings").innerHTML = format(individual_deployTimePerMonth_savings);
+
+    $("team.deployTime.openejb").innerHTML = format(team_deployTime_openejb);
+    $("team.deployTime.vendor").innerHTML = format(team_deployTime_vendor);
+    $("team.deployTime.savings").innerHTML = format(team_deployTime_savings);
+    $("team.deployTimePerHour.openejb").innerHTML = format(team_deployTimePerHour_openejb);
+    $("team.deployTimePerHour.vendor").innerHTML = format(team_deployTimePerHour_vendor);
+    $("team.deployTimePerHour.savings").innerHTML = format(team_deployTimePerHour_savings);
+    $("team.deployTimePerWeek.openejb").innerHTML = format(team_deployTimePerWeek_openejb);
+    $("team.deployTimePerWeek.vendor").innerHTML = format(team_deployTimePerWeek_vendor);
+    $("team.deployTimePerWeek.savings").innerHTML = format(team_deployTimePerWeek_savings);
+    $("team.deployTimePerMonth.openejb").innerHTML = format(team_deployTimePerMonth_openejb);
+    $("team.deployTimePerMonth.vendor").innerHTML = format(team_deployTimePerMonth_vendor);
+    $("team.deployTimePerMonth.savings").innerHTML = format(team_deployTimePerMonth_savings);
 
-$("totalSavings").innerHTML = longFormat(total_savings);
-</code></pre>
+    $("totalSavings").innerHTML = longFormat(total_savings);
 
-<p>}</p>
+  }
 
-<p>function format(secs) {
-    var mins = Math.floor(secs <IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"> 60)
+  function format(secs) {
+    var mins = Math.floor(secs / 60)
     secs = secs % 60;
-    secs -= secs % 1;</p>
-
-<pre><code>var hrs = Math.floor(mins &lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt; 60)
-mins = mins % 60
+    secs -= secs % 1;
 
-if (secs &lt; 10) secs = "0" + secs;
-if (mins &lt; 10) mins = "0" + mins;
-if (hrs &lt; 10) hrs = "0" + hrs;
+    var hrs = Math.floor(mins / 60)
+    mins = mins % 60
 
-return hrs + ":" + mins + ":" + secs + "";
-</code></pre>
+    if (secs < 10) secs = "0" + secs;
+    if (mins < 10) mins = "0" + mins;
+    if (hrs < 10) hrs = "0" + hrs;
 
-<p>}</p>
+    return hrs + ":" + mins + ":" + secs + "";
+  }
 
-<p>function longFormat(secs) {
-    var mins = Math.floor(secs <IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"> 60)
+  function longFormat(secs) {
+    var mins = Math.floor(secs / 60)
     secs = secs % 60;
-    secs -= secs % 1;</p>
-
-<pre><code>var hrs = Math.floor(mins &lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt; 60)
-mins = mins % 60
-
-&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt; eight hours per work day
-var days = Math.floor(hrs &lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt; 8)
-hrs = hrs % 8
-
-&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt; five days per work week
-var weeks = Math.floor(days &lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt; 5)
-days = days % 5
-
-var str = "";
-if (weeks &gt; 0) str = weeks + " weeks, "
-if (str.length &gt; 0 || days &gt; 0) str += days + " days, "
-if (str.length &gt; 0 || hrs &gt; 0) str += hrs + " hours, "
-if (str.length &gt; 0 || mins &gt; 0) str += mins + " minutes, "
-if (secs &gt; 0) str += secs + " seconds"
+    secs -= secs % 1;
 
-str = str.replace(&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;, $&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;, "");
-str = str.replace(&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;^ *&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;, "");
+    var hrs = Math.floor(mins / 60)
+    mins = mins % 60
 
-return str;
-</code></pre>
+    // eight hours per work day
+    var days = Math.floor(hrs / 8)
+    hrs = hrs % 8
+
+    // five days per work week
+    var weeks = Math.floor(days / 5)
+    days = days % 5
+
+    var str = "";
+    if (weeks > 0) str = weeks + " weeks, "
+    if (str.length > 0 || days > 0) str += days + " days, "
+    if (str.length > 0 || hrs > 0) str += hrs + " hours, "
+    if (str.length > 0 || mins > 0) str += mins + " minutes, "
+    if (secs > 0) str += secs + " seconds"
+
+    str = str.replace(/, $/, "");
+    str = str.replace(/^ */, "");
+
+    return str;
+  }
+</script>
 
-<p>}
-&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">script></p>
-
-<p><table>
+<table>
   <col width=370>
     <!--<col width=200>-->
   <tr>
-    <td><strong>How many developers?&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">strong>&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td><input id="devs" type="te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t" value="0" size="5"<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">>&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-  &lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">tr>
-  <tr>
-    <td><strong>How many weeks?&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">strong>
-    &lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td><input id="weeks" type="te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t" value="0" size="5"<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">>&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-  &lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">tr>
-  <tr>
-    <td><strong>How many times do you compile<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">run per day?&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">strong>&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td><input id="cycles" type="te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t" value="0" size="5"<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">>&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-  &lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">tr>
-  <tr>
-    <td><strong>Time to start<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">deploy your app in OpenEJB?&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">strong>&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td><input id="time_openejb" value="0" type="te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t" size="5"<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">> <i>seconds&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">i>&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-  &lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">tr>
-  <tr>
-    <td><strong>Time to start<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">deploy your app in your other platform?&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">strong>&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td><input id="time_vendor" value="0" type="te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t" size="5"<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">> <i>seconds&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">i>&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-  &lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">tr>
-  <tr>
-    <td colspan="2" align="center">&nbsp;&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-  &lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">tr>
-  <tr>
-    <td colspan="2" align="center"><input type="button" id="calculate" value="Calculate" onclick="calculate();"<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">>&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-  &lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">tr>
-&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">table></p>
+    <td><strong>How many developers?</strong></td>
+    <td><input id="devs" type="text" value="0" size="5"/></td>
+  </tr>
+  <tr>
+    <td><strong>How many weeks?</strong>
+    </td>
+    <td><input id="weeks" type="text" value="0" size="5"/></td>
+  </tr>
+  <tr>
+    <td><strong>How many times do you compile/run per day?</strong></td>
+    <td><input id="cycles" type="text" value="0" size="5"/></td>
+  </tr>
+  <tr>
+    <td><strong>Time to start/deploy your app in OpenEJB?</strong></td>
+    <td><input id="time_openejb" value="0" type="text" size="5"/> <i>seconds</i></td>
+  </tr>
+  <tr>
+    <td><strong>Time to start/deploy your app in your other platform?</strong></td>
+    <td><input id="time_vendor" value="0" type="text" size="5"/> <i>seconds</i></td>
+  </tr>
+  <tr>
+    <td colspan="2" align="center">&nbsp;</td>
+  </tr>
+  <tr>
+    <td colspan="2" align="center"><input type="button" id="calculate" value="Calculate" onclick="calculate();"/></td>
+  </tr>
+</table>
+
+<h3>Individual Stats</h3>
 
-<p><h3>Individual Stats&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">h3>
 <table cellpadding="1" border="1" style='border-collapse:collapse'>
   <col width=198>
   <col width=90>
   <col width=90>
   <col width=90>
   <tr>
-    <td>&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center">OpenEJB&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center">Vendor&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center"><b>Savings&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">b>&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-  &lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">tr>
-  <tr>
-    <td>deployTime&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center" id="individual.deployTime.openejb">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center" id="individual.deployTime.vendor">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center" id="individual.deployTime.savings">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-  &lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">tr>
-  <tr>
-    <td>deployTimePerHour&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center" id="individual.deployTimePerHour.openejb">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center" id="individual.deployTimePerHour.vendor">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center" id="individual.deployTimePerHour.savings">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-  &lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">tr>
-  <tr>
-    <td>deployTimePerWeek&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center" id="individual.deployTimePerWeek.openejb">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center" id="individual.deployTimePerWeek.vendor">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center" id="individual.deployTimePerWeek.savings">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-  &lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">tr>
-  <tr>
-    <td>deployTimePerMonth&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center" id="individual.deployTimePerMonth.openejb">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center" id="individual.deployTimePerMonth.vendor">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center" id="individual.deployTimePerMonth.savings">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-  &lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">tr>
-&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">table>
-<p><i>Time in HH:MM:SS format&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">i>&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">p>
-<h3>Team Stats&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">h3>
-<table border=1 cellpadding=2 cellspacing=2 style='border-collapse:
- collapse;table-layout:fi<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ed'>
+    <td></td>
+    <td align="center">OpenEJB</td>
+    <td align="center">Vendor</td>
+    <td align="center"><b>Savings</b></td>
+  </tr>
+  <tr>
+    <td>deployTime</td>
+    <td align="center" id="individual.deployTime.openejb"></td>
+    <td align="center" id="individual.deployTime.vendor"></td>
+    <td align="center" id="individual.deployTime.savings"></td>
+  </tr>
+  <tr>
+    <td>deployTimePerHour</td>
+    <td align="center" id="individual.deployTimePerHour.openejb"></td>
+    <td align="center" id="individual.deployTimePerHour.vendor"></td>
+    <td align="center" id="individual.deployTimePerHour.savings"></td>
+  </tr>
+  <tr>
+    <td>deployTimePerWeek</td>
+    <td align="center" id="individual.deployTimePerWeek.openejb"></td>
+    <td align="center" id="individual.deployTimePerWeek.vendor"></td>
+    <td align="center" id="individual.deployTimePerWeek.savings"></td>
+  </tr>
+  <tr>
+    <td>deployTimePerMonth</td>
+    <td align="center" id="individual.deployTimePerMonth.openejb"></td>
+    <td align="center" id="individual.deployTimePerMonth.vendor"></td>
+    <td align="center" id="individual.deployTimePerMonth.savings"></td>
+  </tr>
+</table>
+
+<p><i>Time in HH:MM:SS format</i></p>
+
+<h3>Team Stats</h3>
+
+<p><table border=1 cellpadding=2 cellspacing=2 style='border-collapse:
+ collapse;table-layout:fixed'>
   <col width=198>
   <col width=90>
   <col width=90>
   <col width=90>
   <tr>
-    <td>&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center">OpenEJB&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center">Vendor&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center"><b>Savings&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">b>&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-  &lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">tr></p>
+    <td></td>
+    <td align="center">OpenEJB</td>
+    <td align="center">Vendor</td>
+    <td align="center"><b>Savings</b></td>
+  </tr></p>
 
 <p><tr>
-    <td>deployTime&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center" id="team.deployTime.openejb">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center" id="team.deployTime.vendor">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center" id="team.deployTime.savings">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-  &lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">tr>
-  <tr>
-    <td>deployTimePerHour&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center" id="team.deployTimePerHour.openejb">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center" id="team.deployTimePerHour.vendor">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center" id="team.deployTimePerHour.savings">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-  &lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">tr>
-  <tr>
-    <td>deployTimePerWeek&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center" id="team.deployTimePerWeek.openejb">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center" id="team.deployTimePerWeek.vendor">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center" id="team.deployTimePerWeek.savings">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-  &lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">tr>
-  <tr>
-    <td>deployTimePerMonth&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center" id="team.deployTimePerMonth.openejb">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center" id="team.deployTimePerMonth.vendor">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-    <td align="center" id="team.deployTimePerMonth.savings">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">td>
-  &lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">tr>
-&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">table></p>
+    <td>deployTime</td>
+    <td align="center" id="team.deployTime.openejb"></td>
+    <td align="center" id="team.deployTime.vendor"></td>
+    <td align="center" id="team.deployTime.savings"></td>
+  </tr>
+  <tr>
+    <td>deployTimePerHour</td>
+    <td align="center" id="team.deployTimePerHour.openejb"></td>
+    <td align="center" id="team.deployTimePerHour.vendor"></td>
+    <td align="center" id="team.deployTimePerHour.savings"></td>
+  </tr>
+  <tr>
+    <td>deployTimePerWeek</td>
+    <td align="center" id="team.deployTimePerWeek.openejb"></td>
+    <td align="center" id="team.deployTimePerWeek.vendor"></td>
+    <td align="center" id="team.deployTimePerWeek.savings"></td>
+  </tr>
+  <tr>
+    <td>deployTimePerMonth</td>
+    <td align="center" id="team.deployTimePerMonth.openejb"></td>
+    <td align="center" id="team.deployTimePerMonth.vendor"></td>
+    <td align="center" id="team.deployTimePerMonth.savings"></td>
+  </tr>
+</table></p>
 
-<p><h3>Total Savings&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">h3></p>
+<h3>Total Savings</h3>
 
-<p><p><span  id="totalSavings">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">span>&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">p></p>
+<p><span  id="totalSavings"></span></p>
 
             </DIV>
           </P>

Modified: websites/staging/openejb/trunk/content/tips-and-suggestions.html
==============================================================================
--- websites/staging/openejb/trunk/content/tips-and-suggestions.html (original)
+++ websites/staging/openejb/trunk/content/tips-and-suggestions.html Tue Jul 12 18:06:32 2011
@@ -156,11 +156,11 @@
   
 </blockquote>
 
-<p><a name="TipsandSuggestions-Usefulinformationforcontributors">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="TipsandSuggestions-Usefulinformationforcontributors"></a></p>
 
 <h2>Useful information for contributors</h2>
 
-<p><a name="TipsandSuggestions-JIRAusage">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="TipsandSuggestions-JIRAusage"></a></p>
 
 <h3>JIRA usage</h3>
 
@@ -206,12 +206,12 @@ description has some good information:</
 <p>{+}If you'd like to get added to the openejb-contributors JIRA group, just
 ping the list with your JIRA id and someone will add you.{+}</p>
 
-<p><a name="TipsandSuggestions-Commits">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="TipsandSuggestions-Commits"></a></p>
 
 <h3>Commits</h3>
 
 <p><em>Contributed by</em>: David Blevins
-+Here is an email from David Blevins e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">plaining the things he keeps in mind
++Here is an email from David Blevins explaining the things he keeps in mind
 during commits.+ <em>{+}Definitely worth a read{+}{</em>}+:+</p>
 
 <p>I generally <em>try never to reformat a file and make changes at the same
@@ -225,10 +225,10 @@ commits as to isolate the big change in 
 good at that and other times I'm really meticulous about it.</p>
 
 <p><em>Include the JIRA number and title (if there is a jira)</em>.  I try never to
-say "Fi<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ed FOO-2543" all by itself.  Reviewing the last 10 changes on a
+say "Fixed FOO-2543" all by itself.  Reviewing the last 10 changes on a
 file is a super big PITA when all you see is numbers to other systems. <em>I
-shoot for more or less "Fi<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ed <issue-number> <issue-title>
-<how-did-i-fi<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">-it>"</em> Sometimes the "how did i fi<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"> it" part is obvious by
+shoot for more or less "Fixed <issue-number> <issue-title>
+<how-did-i-fix-it>"</em> Sometimes the "how did i fix it" part is obvious by
 the title, other times not.  Sometimes I'm too tired and the wife is
 impatiently waiting for me to leave the computer :-)
 As far as jiras go, there doesn't have to be a jira for absolutely every
@@ -241,11 +241,11 @@ way though :-)</p>
 <p>As far as jira titles, I always <em>try and make them short and succinct</em> for
 the future release notes.</p>
 
-<p><a name="TipsandSuggestions-SVN+JIRA">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="TipsandSuggestions-SVN+JIRA"></a></p>
 
 <h3>SVN + JIRA</h3>
 
-<p><a name="TipsandSuggestions-*Contributedby*:Vamsi">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="TipsandSuggestions-*Contributedby*:Vamsi"></a></p>
 
 <h4><em>Contributed by</em>: Vamsi</h4>
 
@@ -259,92 +259,92 @@ JIRA you know where to find the revision
 the svn logs.</p>
 
 <p>Some files may be missing $Rev$ and $Date$ in the header.  Whenever I
-modify an e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">isting file, I always check if I have to add these missing
-$Rev$ $Date$ and add those so that the file will have them from my ne<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t
+modify an existing file, I always check if I have to add these missing
+$Rev$ $Date$ and add those so that the file will have them from my next
 commit onwards.</p>
 
-<p><a name="TipsandSuggestions-*Contributedby*:DavidBlevins">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="TipsandSuggestions-*Contributedby*:DavidBlevins"></a></p>
 
 <h4><em>Contributed by</em>: David Blevins</h4>
 
 <blockquote>
   <p>If you put "[jira](jira.html)
    OPENEJB-XXX" anywhere in your subject line and cc jira@apache.org our
-  email gets added as a comment with all '> quoted' te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t stripped out.
+  email gets added as a comment with all '> quoted' text stripped out.
   PS: XXX is the JIRA issue number</p>
 </blockquote>
 
-<p><a name="TipsandSuggestions-Details">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="TipsandSuggestions-Details"></a></p>
 
 <h4>Details</h4>
 
 <p>The following subject lines did work:
 - Subject: [jira](jira.html)
  OPENEJB-670
-- Subject: Some other subject prefi<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"> ([jira](jira.html)
+- Subject: Some other subject prefix ([jira](jira.html)
  OPENEJB-670)
-- Subject: Re: Some other subject prefi<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"> ([jira](jira.html)
+- Subject: Re: Some other subject prefix ([jira](jira.html)
  OPENEJB-670)</p>
 
 <p>The following subject lines did <em>not</em> work:
 - Subject: OPENEJB-670
-- Subject: Some other subject prefi<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"> (jira: OPENEJB-670)
-- Subject: Some other subject prefi<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"> (jira OPENEJB-670)
-- Subject: Some other subject prefi<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"> (OPENEJB-670)</p>
+- Subject: Some other subject prefix (jira: OPENEJB-670)
+- Subject: Some other subject prefix (jira OPENEJB-670)
+- Subject: Some other subject prefix (OPENEJB-670)</p>
 
 <p>It appears that as long as the subject contains "[jira](jira.html)
  FOO-XXX" the email contents will be added as comments.</p>
 
-<p>It also appears that all quoted te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t regardless of place in the email is
-stripped out and the remaining te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t is added as the comment.</p>
+<p>It also appears that all quoted text regardless of place in the email is
+stripped out and the remaining text is added as the comment.</p>
 
-<p>The e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">act email bodies, white space and all, for the "reply te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t" comments
+<p>The exact email bodies, white space and all, for the "reply text" comments
 above are:</p>
 
 <p><one>
-Reply te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t at the top.</p>
+Reply text at the top.</p>
 
 <p>-- David</p>
 
 <p>On Aug 23, 2007, at 1:02 PM, David Blevins wrote:</p>
 
-<p>Testing adding comments via email with this subject line "Some other subject prefi<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"> ([jira](jira.html)
+<p>Testing adding comments via email with this subject line "Some other subject prefix ([jira](jira.html)
  OPENEJB-670)"</p>
 
-<p>&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">one></p>
+<p></one></p>
 
 <p><two></p>
 
 <p>On Aug 23, 2007, at 1:02 PM, David Blevins wrote:</p>
 
-<p>Testing adding comments via email with this subject line "Some other subject prefi<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"> ([jira](jira.html)
+<p>Testing adding comments via email with this subject line "Some other subject prefix ([jira](jira.html)
  OPENEJB-670)"</p>
 
-<p>Reply te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t at the bottom.</p>
+<p>Reply text at the bottom.</p>
 
 <p>--
 David</p>
 
-<p>&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">two></p>
+<p></two></p>
 
 <p><three>
 On Aug 23, 2007, at 1:02 PM, David Blevins wrote:</p>
 
 <p>Testing adding comments via email</p>
 
-<p>Some reply te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t</p>
+<p>Some reply text</p>
 
-<p>with this subject line "Some other subject prefi<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"> ([jira](jira.html)
+<p>with this subject line "Some other subject prefix ([jira](jira.html)
  OPENEJB-670)"</p>
 
-<p>Some more reply te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t</p>
+<p>Some more reply text</p>
 
 <p>--
 David</p>
 
-<p>&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">three></p>
+<p></three></p>
 
-<h3>scp, ssh, and rsync e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples for working with files and directories on</h3>
+<h3>scp, ssh, and rsync examples for working with files and directories on</h3>
 
 <p>people.apache.org</p>
 
@@ -352,40 +352,40 @@ David</p>
 
 <p><em>copying a file to apache from locahost</em>
 scp topsecret.tar.gz kmalhi@people.apache.org:
-scp inde<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">.html kmalhi@people.apache.org:public_html<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"></p>
+scp index.html kmalhi@people.apache.org:public_html/</p>
 
 <p><em>copying a file from apache to localhost -- reverse of the above</em>
-scp kmalhi@people.apache.org:topsecret.tar.gz .<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">
-scp kmalhi@people.apache.org:public_html<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">inde<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">.html .<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"></p>
+scp kmalhi@people.apache.org:topsecret.tar.gz ./
+scp kmalhi@people.apache.org:public_html/index.html ./</p>
 
 <p><em>copying directories</em>
-scp -r kmalhi@people.apache.org:public_html .<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">
+scp -r kmalhi@people.apache.org:public_html ./
 scp -r public_html kmalhi@people.apache.org:</p>
 
-<p><em>When the directory e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ists, better to rsync</em></p>
+<p><em>When the directory exists, better to rsync</em></p>
 
 <p><em>pull a dir from apache</em>
-rsync -v -e ssh -lzrptog kmalhi@people.apache.org:public_html .<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">
+rsync -v -e ssh -lzrptog kmalhi@people.apache.org:public_html ./
 rsync -v -e ssh -lzrptog
-kmalhi@people.apache.org:<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">home<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">kmalhi<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">public_html .<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"></p>
+kmalhi@people.apache.org:/home/kmalhi/public_html ./</p>
 
-<p><em>the two above commands do the e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">act same thing</em></p>
+<p><em>the two above commands do the exact same thing</em></p>
 
 <p><em>push the same dir to apache</em>
-rsync -v -e ssh -lzrptog .<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">public_html kmalhi@people.apache.org:
-rsync -v -e ssh -lzrptog .<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">public_html
-kmalhi@people.apache.org:<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">home<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">kmalhi<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"></p>
+rsync -v -e ssh -lzrptog ./public_html kmalhi@people.apache.org:
+rsync -v -e ssh -lzrptog ./public_html
+kmalhi@people.apache.org:/home/kmalhi/</p>
 
-<p><em>the two above commands do the e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">act same thing</em></p>
+<p><em>the two above commands do the exact same thing</em></p>
 
-<p><em>sometimes useful to e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ecute commands over ssh (piping works too)</em>
-ssh people.apache.org ls <IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">home \| tee home-dirs-on-apache.t<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t
+<p><em>sometimes useful to execute commands over ssh (piping works too)</em>
+ssh people.apache.org ls /home \| tee home-dirs-on-apache.txt
 echo -e 'Hello, me\n\nHow am I doing today?' \| ssh
 kmalhi@people.apache.org mail -s 'Greetings' kmalhi@apache.org</p>
 
 <p><em>For Putty users</em>
 <em>Contributed by:</em> Mohammad
-I have Putty on my linu<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"> machine and it is easier to use, Putty has a
+I have Putty on my linux machine and it is easier to use, Putty has a
 Windows version too, I issue this command to upload a file to my home dir
 on people.apache.org</p>
 
@@ -393,12 +393,12 @@ on people.apache.org</p>
 </code></pre>
 
 <p>| [dir]
-] mnour@people.apache.org:~<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"></p>
+] mnour@people.apache.org:~/</p>
 
 <p>and if you want to access your home page, you should create a dir with the
 name public_html, and then upload files to it.</p>
 
-<p><a name="TipsandSuggestions-Acoolsubversiontip">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="TipsandSuggestions-Acoolsubversiontip"></a></p>
 
 <h3>A cool subversion tip</h3>
 
@@ -406,7 +406,7 @@ name public_html, and then upload files 
 
 <p><em>It'll let you forget about some svn administrative commands you'd
 otherwise have to type in on the command line.</em>
-Edit<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">Add the following configurations to \~<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">.subversion<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">config:</p>
+Edit/Add the following configurations to \~/.subversion/config:</p>
 
 <pre><code>[miscellany]
 global-ignores = *.log *.save *.o *.lo *.la #*# .*~ *~ .#* .DS_Store
@@ -419,74 +419,74 @@ enable-auto-props = yes
 *.h = svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
 *.dsp = svn:eol-style=CRLF
 *.dsw = svn:eol-style=CRLF
-*.sh = svn:e&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;ecutable;svn:eol-style=native;svn:keywords=Date Revision
-*.cmd = svn:mime-type=te&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;t&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;plain;svn:eol-style=CRLF
-*.bat = svn:mime-type=te&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;t&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;plain;svn:eol-style=CRLF
+*.sh = svn:executable;svn:eol-style=native;svn:keywords=Date Revision
+*.cmd = svn:mime-type=text/plain;svn:eol-style=CRLF
+*.bat = svn:mime-type=text/plain;svn:eol-style=CRLF
 Makefile = svn:eol-style=native;svn:keywords=Date Author Id Revision
 </code></pre>
 
 <p>HeadURL
-    *.obj = svn:mime-type=application<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">octet-stream
-    *.bin = svn:mime-type=application<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">octet-stream
-    *.bmp = svn:mime-type=image<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">bmp
-    *.class = svn:mime-type=application<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">java
-    *.doc = svn:mime-type=application<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">msword
-    *.e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">e = svn:mime-type=application<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">octet-stream
-    *.gif = svn:mime-type=image<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">gif
-    *.gz = svn:mime-type=application<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"><IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">-gzip
-    *.jar = svn:mime-type=application<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">java-archive
-    *.jelly = svn:mime-type=te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">plain;svn:eol-style=native;svn:keywords=Date
+    *.obj = svn:mime-type=application/octet-stream
+    *.bin = svn:mime-type=application/octet-stream
+    *.bmp = svn:mime-type=image/bmp
+    *.class = svn:mime-type=application/java
+    *.doc = svn:mime-type=application/msword
+    *.exe = svn:mime-type=application/octet-stream
+    *.gif = svn:mime-type=image/gif
+    *.gz = svn:mime-type=application/x-gzip
+    *.jar = svn:mime-type=application/java-archive
+    *.jelly = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date
     Revision
-    *.jpg = svn:mime-type=image<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">jpeg
-    *.jpeg = svn:mime-type=image<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">jpeg
-    *.pdf = svn:mime-type=application<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">pdf
-    *.png = svn:mime-type=image<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">png
-    *.tgz = svn:mime-type=application<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">octet-stream
-    *.tif = svn:mime-type=image<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">tiff
-    *.tiff = svn:mime-type=image<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">tiff
-    *.zip = svn:mime-type=application<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">zip
-    *.t<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t = svn:mime-type=te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">plain;svn:eol-style=native;svn:keywords=Date
+    *.jpg = svn:mime-type=image/jpeg
+    *.jpeg = svn:mime-type=image/jpeg
+    *.pdf = svn:mime-type=application/pdf
+    *.png = svn:mime-type=image/png
+    *.tgz = svn:mime-type=application/octet-stream
+    *.tif = svn:mime-type=image/tiff
+    *.tiff = svn:mime-type=image/tiff
+    *.zip = svn:mime-type=application/zip
+    *.txt = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date
 Revision
-    *.<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ml = svn:mime-type=te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"><IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ml;svn:eol-style=native;svn:keywords=Date
+    *.xml = svn:mime-type=text/xml;svn:eol-style=native;svn:keywords=Date
 Revision
-    *.ent = svn:mime-type=te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">plain;svn:eol-style=native;svn:keywords=Date
+    *.ent = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date
 Revision
-    *.dtd = svn:mime-type=te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">plain;svn:eol-style=native;svn:keywords=Date
+    *.dtd = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date
 Revision
-    *.vsl = svn:mime-type=te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">plain;svn:eol-style=native;svn:keywords=Date
+    *.vsl = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date
 Revision
-    *.<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">sd = svn:mime-type=te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"><IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ml;svn:eol-style=native;svn:keywords=Date
+    *.xsd = svn:mime-type=text/xml;svn:eol-style=native;svn:keywords=Date
 Revision
-    *.<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">sl = svn:mime-type=te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"><IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ml;svn:eol-style=native;svn:keywords=Date
+    *.xsl = svn:mime-type=text/xml;svn:eol-style=native;svn:keywords=Date
 Revision
-    *.wsdl = svn:mime-type=te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"><IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ml;svn:eol-style=native;svn:keywords=Date
+    *.wsdl = svn:mime-type=text/xml;svn:eol-style=native;svn:keywords=Date
 Revision
-    *.htm = svn:mime-type=te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">html;svn:eol-style=native;svn:keywords=Date
+    *.htm = svn:mime-type=text/html;svn:eol-style=native;svn:keywords=Date
 Revision
-    *.html = svn:mime-type=te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">html;svn:eol-style=native;svn:keywords=Date
+    *.html = svn:mime-type=text/html;svn:eol-style=native;svn:keywords=Date
 Revision
-    *.css = svn:mime-type=te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">css;svn:eol-style=native;svn:keywords=Date
+    *.css = svn:mime-type=text/css;svn:eol-style=native;svn:keywords=Date
 Revision
-    *.js = svn:mime-type=te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">plain;svn:eol-style=native;svn:keywords=Date
+    *.js = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date
 Revision
-    *.jsp = svn:mime-type=te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">plain;svn:eol-style=native;svn:keywords=Date
+    *.jsp = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date
 Revision
-    *.t<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t = svn:mime-type=te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">plain;svn:eol-style=native;svn:keywords=Date
+    *.txt = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date
 Revision
-    *.java = svn:mime-type=te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">plain;svn:eol-style=native;svn:keywords=Date
+    *.java = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date
     Revision
     *.properties =
-svn:mime-type=te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">plain;svn:eol-style=native;svn:keywords=Date
+svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date
     Revision
-    *.sql = svn:mime-type=te<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">t<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">plain;svn:eol-style=native;svn:keywords=Date
+    *.sql = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date
 Revision</p>
 
-<p><a name="TipsandSuggestions-Maventips">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="TipsandSuggestions-Maventips"></a></p>
 
 <h3>Maven tips</h3>
 
 <p><em>Contributed by:</em> Jacek and David
-<em>I want to make a small change in a module , for e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ample openejb-core and
+<em>I want to make a small change in a module , for example openejb-core and
 then want to build a snapshot of openejb-standalone, start the server and
 test my change. What is the easiest and fastest way of doing it?</em>
 Run the following from within openejb-core</p>
@@ -505,34 +505,34 @@ profile or a plugin</em></p>
 
 <p>Another option is and <em>if you're in bash</em>, here's what could be done</p>
 
-<pre><code># camping out in assembly&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;openejb-standalone&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;
-$ (cd ..&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;..&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;container&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;openejb-core &amp;&amp; mvn clean install -Dtest=skip) &amp;&amp; mvn
+<pre><code># camping out in assembly/openejb-standalone/
+$ (cd ../../container/openejb-core &amp;&amp; mvn clean install -Dtest=skip) &amp;&amp; mvn
 </code></pre>
 
-<p>clean install &amp;&amp; .<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">try.sh</p>
+<p>clean install &amp;&amp; ./try.sh</p>
 
 <p>That's one command, parens and all. The first "$" is the prompt,don't type
-that.  Then just edit .<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">try.sh to do what you're looking for on the
+that.  Then just edit ./try.sh to do what you're looking for on the
 standalone zip.</p>
 
 <p>The parens in bash are great as nothing done in there lasts -- at least no
 changes to the environment.  So you can 'cd' around all you want and not
 have to 'cd' back when done.</p>
 
-<p>For e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ample</p>
+<p>For example</p>
 
-<pre><code>$ e&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;port FOO=hello &amp;&amp; (e&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;port FOO=byebye) &amp;&amp; echo $FOO
+<pre><code>$ export FOO=hello &amp;&amp; (export FOO=byebye) &amp;&amp; echo $FOO
 hello
 
-$ cd ~ &amp;&amp; echo $PWD &amp;&amp; (cd &lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;tmp &amp;&amp; echo $PWD) &amp;&amp; echo $PWD
-&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;Users&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;dblevins
-&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;tmp
-&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;Users&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;dblevins
+$ cd ~ &amp;&amp; echo $PWD &amp;&amp; (cd /tmp &amp;&amp; echo $PWD) &amp;&amp; echo $PWD
+/Users/dblevins
+/tmp
+/Users/dblevins
 </code></pre>
 
 <p>As well, several commands can be combined with '&amp;&amp;'.  Far better than just
 separating commands with ';' as if one of the commands fail, the remaining
-commands will not be e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ecuted.</p>
+commands will not be executed.</p>
 
 <p><em>Suggestion from Dain</em></p>
 
@@ -551,13 +551,13 @@ commands will not be e<IMG class="emotic
   If you want to be thorough, run with -Dassemble.</p>
 </blockquote>
 
-<p><a name="TipsandSuggestions-JAXBUsage">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="TipsandSuggestions-JAXBUsage"></a></p>
 
 <h3>JAXB Usage</h3>
 
 <p>{note:title=TODO}
 Create a write up from here
-http:<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"><IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">www.nabble.com<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">ja<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">b-question-td18023648.html
+http://www.nabble.com/jaxb-question-td18023648.html
 {note}</p>
 
             </DIV>