<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;}
  #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 {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="4">Commit in <b><tt>trunk/as2api/output/html</tt></b><span id="info"> on MAIN</span></td></tr>
<tr><td><tt><a href="#file1">html_framework.rb</a></tt></td><td align="right" id="added">+12</td><td align="right" id="removed">-2</td><td nowrap="nowrap" align="center">281 -&gt; 282</td></tr>
</table>
<div class="tasklist"><ul>
<li><a href="#task1">FIXME: Seem to have missed generating title attribute in several cases,</a></li>
<li><a href="#task2">FIXME: doesn't handle case where we have some link text</a></li>
</ul></div>
<pre class="comment">
Wasn't outputting {@link} text (still doesn't in some cases!)
</pre>
<hr /><a name="file1" /><div class="file">
<span class="pathname">trunk/as2api/output/html</span><br />
<div class="fileheader"><big><b>html_framework.rb</b></big> <small id="info">281 -&gt; 282</small></div>
<pre class="diff"><small id="info">--- trunk/as2api/output/html/html_framework.rb        2006-02-26 13:14:56 UTC (rev 281)
+++ trunk/as2api/output/html/html_framework.rb        2006-02-26 15:59:28 UTC (rev 282)
@@ -377,6 +377,7 @@
</small></pre><pre class="diff" id="context">       passthrough(inline)  # allow HTML through unabused (though I wish it were
                            # easy to require it be valid XHTML)
     elsif inline.is_a?(LinkTag)
</pre><pre class="diff" id="added"><a name="task1" />+      # <span class="task">FIXME</span>: Seem to have missed generating title attribute in several cases,
</pre><pre class="diff" id="context">       if inline.target &amp;&amp; inline.member
         if inline.target.resolved?
           href = link_for_type(inline.target.resolved_type)
</pre><pre class="diff"><small id="info">@@ -387,12 +388,17 @@
</small></pre><pre class="diff" id="context">           end
           href &lt;&lt; target
           html_a("href"=&gt;href) do
</pre><pre class="diff" id="removed">-            pcdata("#{inline.target.name}.#{inline.member}")
</pre><pre class="diff" id="added">+            if inline.text &amp;&amp; inline.text!=""
+              pcdata(inline.text)
+            else
+              pcdata("#{inline.target.name}.#{inline.member}")
+            end
</pre><pre class="diff" id="context">           end
         else
           pcdata("#{inline.target.name}##{inline.member}")
         end
       elsif inline.target
</pre><pre class="diff" id="added"><a name="task2" />+        # <span class="task">FIXME</span>: doesn't handle case where we have some link text
</pre><pre class="diff" id="context">         link_type_proxy(inline.target)
       else
         if inline.member =~ /\(/
</pre><pre class="diff"><small id="info">@@ -401,7 +407,11 @@
</small></pre><pre class="diff" id="context">           target = "##{inline.member}"
         end
         html_a("href"=&gt;target) do
</pre><pre class="diff" id="removed">-          pcdata(inline.member)
</pre><pre class="diff" id="added">+          if inline.text &amp;&amp; inline.text!=""
+            pcdata(inline.text)
+          else
+            pcdata(inline.member)
+          end
</pre><pre class="diff" id="context">         end
       end
     elsif inline.is_a?(CodeTag)
</pre></div>
<center><small><a href="http://www.badgers-in-foil.co.uk/projects/cvsspam/" title="commit -&gt; email">CVSspam</a> 0.2.11</small></center>
</body></html>