After the move to the new servers, I discovered a curious bug in the Chatterbox XML ticker. It is randomly either encoding or not encoding ampersands, angle brackets, and square brackets. This inconsistent encoding causes confusion in the Chatterbox clients. In the Tk client, it breaks the caching of messages, causing the same messages to be printed over and over again.

To verify that the problem is with the ticker and not the client, I viewed the source of the ticker in lynx (lynx -source 'http://www.perlmonks.org/index.pl?node=chatterbox+xml+ticker'). Here are two examples that demonstrate the problem. Only the relevant message is shown in each example.

<CHATTER><INFO site="http://perlmonks.org" sitename="Perl Monks">Rende +red by the Chatterbox XML Ticker</INFO> <message user_id="43546" author="chipmunk" time="2002020815340 +7"> test &amp;nbsp;</message> </CHATTER> <CHATTER><INFO site="http://perlmonks.org" sitename="Perl Monks">Rende +red by the Chatterbox XML Ticker</INFO> <message user_id="43546" author="chipmunk" time="2002020815340 +7"> test &nbsp;</message> </CHATTER>
<CHATTER><INFO site="http://perlmonks.org" sitename="Perl Monks">Rende +red by the Chatterbox XML Ticker</INFO> <message user_id="43546" author="chipmunk" time="2002021212120 +5"> test 0 &lt; 1</message> </CHATTER> <CHATTER><INFO site="http://perlmonks.org" sitename="Perl Monks">Rende +red by the Chatterbox XML Ticker</INFO> <message user_id="43546" author="chipmunk" time="2002021212120 +5"> test 0 < 1</message> </CHATTER>
It would be a great help to all the users of chatterbox clients to get this bug fixed. Unfortunately, there's no reliable way to work around it.

In reply to Chatterbox XML Ticker broken by chipmunk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.