Changeset 15149 for platform/eclipse/sabotter/trunk/jp.xet.sabotter.core/src/jp/xet/sabotter/core/wassr/WassrService.java
- Timestamp:
- 07/04/08 16:23:01 (5 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
platform/eclipse/sabotter/trunk/jp.xet.sabotter.core/src/jp/xet/sabotter/core/wassr/WassrService.java
r15146 r15149 101 101 } else { 102 102 String[] tokens = line.split(","); 103 String id = tokens[0];103 String statusId = tokens[0]; 104 104 String text = tokens[1]; 105 105 String screenName = tokens[3]; 106 106 Date timeStamp = dateFormatter.parse(tokens[4]); 107 String name= tokens[5];107 String userId = tokens[5]; 108 108 109 109 // String name, String screenName, URL profileImageURL 110 110 MiniblogUser user = 111 new WassrUser( name, screenName, new URL("http://wassr.jp/user/" + name111 new WassrUser(userId, screenName, new URL("http://wassr.jp/user/" + userId 112 112 + "/profile_img.png.128.")); 113 113 // int id, String text, Date timeStamp, MiniblogUser user, boolean isDirectMessage, 114 114 // boolean isMessageToMe, boolean isMyEntry 115 115 WassrEntry entry = 116 new WassrEntry( id, text, timeStamp, user, false, /* TODO */false, client.getUserId()117 .equals( name));116 new WassrEntry(statusId, text, timeStamp, user, false, /* TODO */false, client.getUserId() 117 .equals(userId)); 118 118 miniblogEntries.add(entry); 119 119 }
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)