the public timeline remains empty when using the statusnet desktop.
A colleague has tried using tweetdeck, but is experiencing the same issue.
the microblog plugin for pidgin seems to work, but the interface is rather limited....
any ideas what this might be?
Comments
Once, open the javaScript file.
{$StatusNet Desktop}Contents/Resources/model/statusnet_atom_parser.js
Then, Could you find following line (about 314 line)?
'statusnet:profile_info': function(match2) {Please insert following code, before the line.
=========== Code Start ==========
'poco:displayName': function(match) {notice.author = match.text;
},
'link': function(match) {
var rel = match.attributes['rel'];
var type = match.attributes['type'];
if (rel == 'avatar') {
if (!notice.avatar || match.attributes['media:width'] == StatusNet.Platform.avatarSize()) {
notice.avatar = match.attributes['href'];
}
} else if (rel == 'related' && (type == 'image/png' || type == 'image/jpeg' || type == 'image/gif')) {
// XXX: Special case for search Atom entries
if (!notice.avatar) {
notice.avatar = match.attributes['href'];
}
} else if (rel == 'image' && (type == 'image/png' || type == 'image/jpeg' || type == 'image/gif')) {
// XXX: Special case for DM Atom entries
if (!notice.avatar) {
notice.avatar = match.attributes['href'];
}
}
},
=========== Code End ==========
This code helps to set avatar url. So that, timeline may display.
Best Regards.