Ok I also managed to screw up the tables. How do I escape the &quot;|&quot; character? There&#39;s an example with a logical OR and its messing with the html tables.<br><br><div class="gmail_quote">On Mon, Aug 9, 2010 at 11:48 PM, Andrej Mitrovic <span dir="ltr">&lt;<a href="mailto:andrej.mitrovich@gmail.com">andrej.mitrovich@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">Ok it&#39;s done, at least for the confirmed ones.<br><br>But I will need someone to take a look at some of my unanswered posts for confirmation on whether these are errors/bugs:<br>
<br><a href="http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D&amp;article_id=114394" target="_blank">http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D&amp;article_id=114394</a><br>

<a href="http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D&amp;article_id=114395" target="_blank">http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D&amp;article_id=114395</a><br>
<a href="http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D&amp;article_id=114397" target="_blank">http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D&amp;article_id=114397</a><br>

<a href="http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D&amp;article_id=114891" target="_blank">http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D&amp;article_id=114891</a> (Perhaps I&#39;m misunderstanding the commet there, but ultimately a Friend method gets called)<div>
<div></div><div class="h5"><br>
<br><br><div class="gmail_quote">On Mon, Aug 9, 2010 at 10:40 PM, Andrei Alexandrescu <span dir="ltr">&lt;<a href="mailto:SeeWebsiteForEmail@erdani.org" target="_blank">SeeWebsiteForEmail@erdani.org</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<div><div></div><div>Yao G. wrote:<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Andrei has this errata web page: <a href="http://www.erdani.com/tdpl/errata/index.php?title=Main_Page" target="_blank">http://www.erdani.com/tdpl/errata/index.php?title=Main_Page</a><br>
<br>
I think you should edit the wiki and add them, because here your message will be lost between all the flux of messages.<br>
<br>
On Mon, 09 Aug 2010 15:29:06 -0500, Andrej Mitrovic &lt;<a href="mailto:andrej.mitrovich@gmail.com" target="_blank">andrej.mitrovich@gmail.com</a>&gt; wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
The last example:<br>
<br>
override bool opEquals(Object rhs)<br>
{<br>
    // the other must be at least a Widget<br>
    auto that = cast(Widget) rhs;<br>
    if (!that)<br>
        return false;<br>
   // do they compare equals as Widgets? if not, we&#39;re done<br>
    if (!super.opEquals(that))<br>
        return false;<br>
   // is it a TextWidget?<br>
    auto that2 = cast(TextWidget) rhs;<br>
   // if not, we&#39;re done comparing with success<br>
    if (!that2)<br>
        return true;<br>
   // compare as TextWidgets<br>
    return text == that.text;<br>
}<br>
<br>
<br>
Last return should be:<br>
<br>
return text == that2.text;<br>
</blockquote></blockquote>
<br></div></div>
Yes please. Andrej, doing so for your past reports would be very much appreciated. Thanks!<br><font color="#888888">
<br>
Andrei<br>
<br>
</font></blockquote></div><br>
</div></div></blockquote></div><br>