Changeset 38385 for websites/twicli

Show
Ignore:
Timestamp:
08/31/10 04:05:05 (3 years ago)
Author:
NeoCat
Message:

Merge http://github.com/wa-/twicli

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • websites/twicli/twicli.js

    r38377 r38385  
    664664function makeUserInfoHTML(user) { 
    665665        return '<table><tr><td><a target="twitter" href="' + twitterURL + 'account/profile_image/'+ 
    666                         user.screen_name+'"><img class="uicon2" src="' + user.profile_image_url + '"></a></td><td id="profile">' + 
     666                        user.screen_name+'"><img class="uicon2" src="' + user.profile_image_url + '"></a></td><td id="profile"><div>' + 
    667667                        (user.protected ? '<img alt="lock" src="http://assets0.twitter.com/images/icon_lock.gif">' : '') + 
    668                         '<b>' + user.screen_name + '</b> / <b>' + user.name + '</b><br>' + 
    669                         (user.location ? '<b>Location</b>: ' + user.location + '<br>' : '') + 
    670                         (user.url ? '<b>URL</b>: <a target="_blank" href="' + user.url + '">' + user.url + '</a><br>' : '') + 
    671                         (user.description ? user.description : '') + 
    672                         '<br><b><a href="javascript:switchFollowing()">' + user.friends_count + '<small>following</small></a> / ' +  
     668                        '<b>' + user.screen_name + '</b> / <b>' + user.name + '</b></div>' + 
     669                        (user.location ? '<div><b>Location</b>: ' + user.location + '</div>' : '') + 
     670                        (user.url ? '<div><b>URL</b>: <a target="_blank" href="' + user.url + '">' + user.url + '</a></div>' : '') + 
     671                        '<div>' + (user.description ? user.description : '<br>') + 
     672                        '</div><b><a href="javascript:switchFollowing()">' + user.friends_count + '<small>following</small></a> / ' +  
    673673                                                '<a href="javascript:switchFollower()">' + user.followers_count + '<small>followers</small></a>' + 
    674674                        '<br><a href="javascript:switchStatus()">' + user.statuses_count + '<small>updates</small></a> / ' +