<html>
<head>
<style><!--
  body {background-color:#ffffff;}
  .file {border:1px solid #eeeeee;margin-top:1em;margin-bottom:1em;}
  .pathname {font-family:monospace; float:right;}
  .fileheader {margin-bottom:.5em;}
  .diff {margin:0;}
  .tasklist {padding:4px;border:1px dashed #000000;margin-top:1em;}
  .tasklist ul {margin-top:0;margin-bottom:0;}
  tr.alt {background-color:#eeeeee}
  #added {background-color:#ddffdd;}
  #addedchars {background-color:#99ff99;font-weight:bolder;}
  tr.alt #added {background-color:#ccf7cc;}
  #removed {background-color:#ffdddd;}
  #removedchars {background-color:#ff9999;font-weight:bolder;}
  tr.alt #removed {background-color:#f7cccc;}
  #copied {background-color:#ccccff;}
  tr.alt #copied {background-color:#bbbbf7;}
  #info {color:#888888;}
  #context {background-color:#eeeeee;}
  td {padding-left:.3em;padding-right:.3em;}
  tr.head {border-bottom-width:1px;border-bottom-style:solid;}
  tr.head td {padding:0;padding-top:.2em;}
  .task {background-color:#ffff00;}
  .comment {white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;white-space:pre-wrap;word-wrap:break-word;padding:4px;border:1px dashed #000000;background-color:#ffffdd}
  .error {color:red;}
  hr {border-width:0px;height:2px;background:black;}
--></style>
</head>
<body>
<table cellspacing="0" cellpadding="0" border="0" rules="cols">
<tr class="head"><td colspan="5">Commit in <b><tt>as2api/trunk/as2api/lib/output/html</tt></b></td></tr>
<tr><td><tt><a href="#file1">diff.rb</a></tt> </td><td></td><td align="right" id="added">+32</td><td align="right" id="removed">-6</td><td nowrap="nowrap" align="center">350 -&gt; 351</td></tr>
</table>
<pre class="comment">
Include type/member summary sentences in the tables of changes
</pre>
<hr /><a name="file1" /><div class="file">
<span class="pathname">as2api/trunk/as2api/lib/output/html</span><br />
<div class="fileheader"><big><b>diff.rb</b></big> <small id="info">350 -&gt; 351</small></div>
<pre class="diff"><small id="info">--- trunk/as2api/lib/output/html/diff.rb        2006-03-31 07:43:04 UTC (rev 350)
+++ trunk/as2api/lib/output/html/diff.rb        2006-03-31 07:44:21 UTC (rev 351)
@@ -166,10 +166,17 @@
</small></pre><pre class="diff" id="context">   def generate_body_content
     html_h1(@title)
 
</pre><pre class="diff" id="removed">-    summary_table(@package_changes.added_types, _("Added Types")) do |as_type|
</pre><pre class="diff" id="added">+    summary_table<span id="addedchars">_tr</span>(@package_changes.added_types, _("Added Types")) do |as_type|
</pre><pre class="diff" id="context">       #name = as_type.unqualified_name
       #pcdata(name)
</pre><pre class="diff" id="removed">-      link_type(as_type)
</pre><pre class="diff" id="added">+      html_td do
+        link_type(as_type)
+      end
+      html_td do
+        if as_type.comment
+          output_doccomment_initial_sentence(as_type.comment.description)
+        end
+      end
</pre><pre class="diff" id="context">     end
 
     summary_table_tr(@package_changes.modified_types, _("Modified Types")) do |as_type|
</pre><pre class="diff"><small id="info">@@ -220,6 +227,11 @@
</small></pre><pre class="diff" id="context">           pcdata(".")
         end
       end
</pre><pre class="diff" id="added">+      html_td do
+        if as_type.new_type.comment
+          output_doccomment_initial_sentence(as_type.new_type.comment.description)
+        end
+      end
</pre><pre class="diff" id="context">     end
 
     summary_table(@package_changes.removed_types, _("Removed Types")) do |as_type|
</pre><pre class="diff"><small id="info">@@ -260,8 +272,15 @@
</small></pre><pre class="diff" id="context">   def generate_body_content
     html_h1(@title)
 
</pre><pre class="diff" id="removed">-    summary_table(@type_changes.added_fields, _("Added Fields")) do |as_field|
-      pcdata(as_field.name)
</pre><pre class="diff" id="added">+    summary_table_tr(@type_changes.added_fields, _("Added Fields")) do |as_field|
+      html_td do
+        pcdata(as_field.name)
+      end
+      html_td do
+        if as_field.comment
+          output_doccomment_initial_sentence(as_field.comment.description)
+        end
+      end
</pre><pre class="diff" id="context">     end
 
     summary_table_tr(@type_changes.modified_fields, _("Modified Fields")) do |field_changes|
</pre><pre class="diff"><small id="info">@@ -280,8 +299,15 @@
</small></pre><pre class="diff" id="context">       pcdata(as_field.name)
     end
 
</pre><pre class="diff" id="removed">-    summary_table(@type_changes.added_methods, _("Added Methods")) do |as_method|
-      pcdata(as_method.name)
</pre><pre class="diff" id="added">+    summary_table_tr(@type_changes.added_methods, _("Added Methods")) do |as_method|
+      html_td do
+        pcdata(as_method.name)
+      end
+      html_td do
+        if as_method.comment
+          output_doccomment_initial_sentence(as_method.comment.description)
+        end
+      end
</pre><pre class="diff" id="context">     end
 
     summary_table_tr(@type_changes.modified_methods, _("Modified Methods")) do |method_changes|
</pre></div>
<center><small><a href="http://www.badgers-in-foil.co.uk/projects/cvsspam/" title="commit -&gt; email">CVSspam</a> 0.2.12</small></center>
</body></html>