>67 million Thunderbird downloads since 1.0! (Credit: Asbjørn) | RSS 2.0 link via FeedBurner

« July 21st - July 28th Trunk Builds | Main | July 29th - July 31st Trunk Builds »

XML (or RSS) problem

Apparently my blog entries do not render correctly compared to TBE's as shown in the MozillaZine Feedhouse. Does anyone know why? I have no expertise in using XML or RSS for that matter.

Thanks to Peter Lairo for bringing this up.

Edit: The RSS problem has been fixed. It now shows up perfectly in feedhouse. Thanks Jesse!

===================================================================
-----------------------------
TBE's RSS entry in Feedhouse:
-----------------------------
The Burning Edge -- 2004-07-27 Branch builds

* Fixed: 253118 - Cookies don't work; Privacy Options broken (just yesterday's build).
* Fixed: 246078 - URLs from other apps result in Firefox opening the first hit on Google for "StartDDE" (which is The Burning Edge) (since July 24).
* Fixed: 246078 - URLs from other apps result in two Firefox windows or a window and an error dialog (since ~March 15 or ~June 8).
* Fixed: 245406 - Display domain in status bar for secure sites.
* Fixed: 232708 - Ctrl+F4 does not close tab when address bar has focus.
* Fixed: 191410 - Modifying bool prefs in about:config should just toggle instead of prompting for a new value.
* Fixed: Updates to Help, including help for the new Find bar, the reorganized Web Features options panel, and the new cookie options.
* Fixed (?): Some folks see the undetermined progressmeter draw past the edge of the progressbar.

* Since July 27: 253288 - [WindowsXP with Luna] At secure sites, the Lock icon missing from the status bar.

Windows builds: Official Windows, Official Windows installer (discussion), bangbang's O2 G7 SSE2, moox's builds

Linux builds: Official Linux, Official Linux installer

Mac builds: Official Mac

Full Article

by jesse at July 27, 2004 08:43 PM

===================================================================
-----------------------------
TRE's RSS entry in Feedhouse:
-----------------------------
The Rumbling Edge -- July 21st - July 28th Trunk Builds
Checkins: Fixed: 249838 - Enable Webservices for Supporting Extensions Manager Fixed: 253055 - Use a folder listener to track folder name changes and deletions Fixed: 253359 - Artwork for RSS folders and posts Fixed: 252056 - Thunderbird should set itself...

Full Article

by skywalker at July 29, 2004 07:52 AM

===================================================================

Was there any special RSS setting I should have made in movable type?

Filed under 'zz - Others (pre-2008)' | Posted on 29 Jul 2004 (Thu) by Gary Kwong at 7:09 PM. (GMT+8)

Comments

Your RSS link here WFM using

Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7) Gecko/20040729 Firefox/0.9.1+

Peter

Posted by: Peter(6) at July 30, 2004 12:40 AM

The problem appears to be the markup used in entries.

On 'The Burning Edge', Jesse uses the HTML list construct so that each item (Good/Bad) is a seperate list - and each item within a list, is marked:

<ul class="good">
<li>Item 1 - ....</li>
<li>Item 2 - ....</li>
</ul>
<ul class="bad">
<li>Item 1 - ...</li>
<li>Item 2 - ...</li>
</ul>

Whereas you just list them using <br /> tags.

This would appear to be the problem.

Posted by: Colin Ogilvie at July 30, 2004 12:58 AM

but if i use <li> tags, the bullets will appear as in unordered lists, do i have to create style sheets like Jesse to remove these bullets?

I looked at TBE's page source, and havent have any clue on how he removes the bullets even though they comprise of <li> tags. I tried adding the tags but those bullets appear, and have no idea how Jesse does so.

Posted by: skywalker at July 30, 2004 1:29 AM

Your site stylesheet is located at the following URL:

http://weblogs.mozillazine.org/rumblingedge/styles-site.css

The proper way to remove the bullets is by adding the following code to the above stylesheet, which will remove bullets from all lists with the class named "sample", like so:

Sample HTML:

<ul class="sample">
<li>stuff</li>
<li>more stuff</li>
</ul>

Sample CSS:

ul.sample { list-style-type: none; }
ul.sample li { text-indent: -1em; margin-left: 1em; }

TBE also has 0px for left margins and padding in the ul.sample selector, but I want to say that's not strictly necessary for what you want (it still might be necessary).

Posted by: Jeff Walden at July 30, 2004 2:15 AM

It looks like the other reason his look good and yours don't is that the posts in the feed inside <description> tags aren't enclosed in <![CDATA[ and ]]>. For example:

<description><![CDATA[
This is my post.
<ul>
<li>hi</li>
<li>bye</li>
</ul>
]]></description>

For some reason MT is removing the HTML you're using to format the entries, so in your feed a post looks like this:

<description>Checkins: Fixed: 249838 - Enable Webservices for Supporting Extensions Manager Fixed: 253055 - Use a folder listener to track folder name changes and deletions Fixed: 253359 - Artwork for RSS folders and posts Fixed: 252056 - Thunderbird should set itself...</description>

It's also worth noting that if you want the whole post to show up at the feedHouse, you need to change a setting in MT somewhere to syndicate full posts. Right now you're syndicating summaries or introductions (can't help more because I've never used MT before).

Posted by: Jeff Walden at July 30, 2004 2:30 AM

You also need a favicon, probably the thunderbird icon.

Posted by: Will Rickards at July 30, 2004 3:21 AM

At some point, I changed a line of my index.rdf template to:

<description><$MTEntryBody encode_xml="1"$></description>

Hope that helps.

Posted by: Jesse Ruderman at July 30, 2004 4:35 AM

Posted by: denis at July 30, 2004 6:18 AM

I would also suggest a 'wider' blog, since the FIXED and BUG descriptions really don't fit. Or use a smaller font.

Thanks for the blog, will check it often.

Posted by: Marty at July 30, 2004 5:01 PM

I second Marty's comment. I don't mind the blue margins at all but at least please make the width of the white central column variable.

Posted by: Jean-Marc Gillet at August 1, 2004 6:46 PM

Favicon & some links added, margin widened, rss/xml problem fixed. Everything looks wonderful now.

:)

Posted by: skywalker at August 1, 2004 8:01 PM