+2006-12-30 OHASHI Akira <bg66@koka-in.org>
+
+ * mixi.el (mixi-event-owner-seceded-regexp): New regexp.
+ (mixi-realize-event): Follow the change above.
+
2006-12-28 OHASHI Akira <bg66@koka-in.org>
* sb-mixi.el (shimbun-mixi-message-id-suffix): Abolish.
"<td bgcolor=#FFF4E0\\( width=410\\)?> \\([^<]+\\)</td>")
(defconst mixi-event-owner-regexp
"<td \\(BGCOLOR\\|bgcolor\\)=#FDF9F2> <a href=\"show_friend\\.pl\\?id=\\([0-9]+\\)\">\\(.*\\)</a>")
+(defconst mixi-event-owner-seceded-regexp
+ "<td \\(BGCOLOR\\|bgcolor\\)=#FDF9F2> \\((mixi Âà²ñºÑ)\\)")
(defconst mixi-event-date-regexp
"<td \\(BGCOLOR\\|bgcolor\\)=#\\(FFFFFF\\|ffffff\\) \\(ALIGN\\|align\\)=center NOWRAP>³«ºÅÆü»þ</td>
<td \\(BGCOLOR\\|bgcolor\\)=#\\(FFFFFF\\|ffffff\\)>
(mixi-event-set-owner event
(mixi-make-friend (match-string 2 buffer)
(match-string 3 buffer)))
- (mixi-realization-error 'cannot-find-owner event))
+ (if (string-match mixi-event-owner-seceded-regexp buffer)
+ (mixi-event-set-owner event
+ (mixi-make-friend nil
+ (match-string 2 buffer)))
+ (mixi-realization-error 'cannot-find-owner event)))
(if (string-match mixi-event-date-regexp buffer)
(mixi-event-set-date event (match-string 6 buffer))
(mixi-realization-error 'cannot-find-date event))