b897296d5d7b03a5b769277523bef96ca42264ab
[riece] / lisp / ChangeLog
1 2003-10-22  Daiki Ueno  <ueno@unixuser.org>
2
3         * riece-misc.el (riece-get-identities-on-server): New function.
4         (riece-get-users-on-server): Use it.
5
6         * riece-ctcp.el (riece-ctcp-completing-read-identity): Abolish.
7         (riece-command-ctcp-version): Use riece-completing-read-identity
8         and riece-get-identities-on-server.
9         (riece-command-ctcp-ping): Ditto.
10         (riece-command-ctcp-clientinfo): Ditto.
11         (riece-command-ctcp-action): Ditto.
12
13         * riece-commands.el (riece-command-finger): Pass the current
14         server name to riece-get-users-on-server; use
15         riece-completing-read-identity.
16         (riece-command-invite): Ditto.
17         (riece-command-enter-message-to-user): Ditto.
18
19         * riece-000.el (riece-handle-001-message): Register myself with
20         riece-obarray.
21
22 2003-10-21  Daiki Ueno  <ueno@unixuser.org>
23
24         * riece-ctcp.el (riece-ctcp-completing-read-identity): New
25         function.
26         (riece-command-ctcp-version): Use it.
27         (riece-command-ctcp-ping): Ditto.
28         (riece-command-ctcp-clientinfo): Ditto.
29         (riece-command-ctcp-action): Ditto; don't encode CHANNEL identity
30         twice.
31
32 2003-10-20  Daiki Ueno  <ueno@unixuser.org>
33
34         * riece-xemacs.el (riece-xemacs-mode-line-buffer-identification):
35         Abolish.
36         (riece-mode-line-buffer-identification): Don't define alias.
37
38         * riece-server.el (riece-open-server): Handle errors occurred
39         during reading password.
40
41         * riece-options.el (riece-addons): Add riece-icon.
42
43         * riece-layout.el (riece-configure-windows-top): Collect arguments.
44
45         * riece-icon.el: New add-on.
46         * COMPILE (riece-modules): Add riece-icon.
47         * Makefile.am (EXTRA_DIST): Add riece-icon.el
48
49 2003-10-20  Daiki Ueno  <ueno@unixuser.org>
50
51         * riece-options.el (riece-saved-forms): Add riece-layout.
52
53         * riece-layout.el (riece-layout-alist): Change format.
54         (riece-configure-windows): Take 2 args to specify the position of
55         the command buffer window.
56
57         * riece-commands.el (riece-command-change-layout): Set
58         riece-save-variables-are-dirty.
59
60 2003-10-19  Daiki Ueno  <ueno@unixuser.org>
61
62         * Riece: Version 0.1.4 released.
63         * riece-version.el (riece-version-number): Bump up to 0.1.4.
64
65 2003-10-19  Daiki Ueno  <ueno@unixuser.org>
66
67         * riece-server.el (riece-server-process-opened): Return t.
68
69         * riece.el (riece-dialogue-mode-map): Bind "p" to
70         riece-command-enter-message-to-user.
71
72         * riece-misc.el (riece-current-nickname): Use
73         riece-current-server-name.
74         (riece-get-users-on-server): Ditto.
75
76         * riece-server.el (riece-current-server-name): New function.
77         (riece-send-string): Use it.
78
79         * riece-commands.el (riece-command-enter-message-to-user): New command.
80
81 2003-10-19  Daiki Ueno  <ueno@unixuser.org>
82
83         * riece-menu.el (riece-menu-create-layouts-menu): New function.
84         (riece-menu-items): Use it.
85
86         * riece-server.el (riece-server-process-opened): New function.
87         (riece-server-opened): Use it.
88
89         * riece-url.el: Require 'riece-menu.
90         (riece-url-insinuate): Add "Open URL..." menu in
91         riece-command-mode-hook.
92
93         * riece-options.el (riece-addons): Add riece-menu.
94
95         * riece-menu.el: New add-on.
96         * COMPILE (riece-modules): Add riece-menu.
97         * Makefile.am (EXTRA_DIST): Add riece-menu.el
98
99 2003-10-19  Daiki Ueno  <ueno@unixuser.org>
100
101         * riece-version.el (riece-extended-version): Remove interactive spec.
102         (riece-version): New command.
103         * riece.el (riece-command-map): Bind "V" to riece-version.
104
105         * riece-options.el (riece-command-prefix): New user option.
106         (riece-tab-stop-list): Abolish.
107
108         * riece.el (riece-define-keys-1): If keymap is a list, eval the
109         2nd element of it.
110         (riece-select-keys): Use riece-command-prefix instead of "\C-c".
111         (riece-command-map): Ditto.
112         (riece-dialogue-mode): Don't set tab-stop-list.
113
114 2003-10-18  Daiki Ueno  <ueno@unixuser.org>
115
116         * riece-keyword.el (riece-keyword-message-filter): Ignore messages
117         which belongs to myself.
118
119         * riece-commands.el (riece-command-topic): Use
120         riece-check-channel-commands-are-usable.
121         (riece-command-invite): Ditto.
122         (riece-command-kick): Ditto.
123         (riece-command-change-mode): Ditto.
124         (riece-command-set-operators): Ditto.
125         (riece-command-set-speakers): Ditto.
126         (riece-command-send-message): Ditto.
127         (riece-command-part): Ditto.
128
129         * riece-misc.el (riece-get-users-on-server): If
130         riece-current-channel is not set, check the default server.
131         (riece-check-channel-commands-are-usable): New function.
132
133         * riece-globals.el (riece-channel-regexp): Accept channel names
134         beginning with "!!".
135
136 2003-10-16  TAKAHASHI Kaoru  <kaoru@kaisei.org>
137
138         * riece-commands.el (riece-command-universal-server-name-argument):
139         Fix parenthesis.
140
141 2003-10-16  Daiki Ueno  <ueno@unixuser.org>
142
143         * riece.el (riece-buffer-alist): Rename from
144         riece-buffer-mode-alist.
145
146         * riece-misc.el (riece-get-buffer-create): Takes an optional 2nd
147         argument, init-major-mode, which is used to assert the major-mode
148         of the created buffer.
149
150         * riece-naming.el (riece-naming-assert-rename): Merged buffer
151         renaming logic that riece-handle-nick-message was responsible for.
152
153         * riece-globals.el (riece-server-process-alist): Revive.
154         (riece-process-list): Abolish.
155         (riece-command-buffer): Set default to nil.
156         (riece-dialogue-buffer): Ditto.
157         (riece-others-buffer): Ditto.
158         (riece-channel-list-buffer): Ditto.
159         (riece-user-list-buffer): Ditto.
160         (riece-private-buffer): Abolish.
161         (riece-wallops-buffer): Abolish.
162
163         * riece-display.el (riece-channel-buffer-format): Moved from
164         riece-globals.
165         (riece-channel-buffer-alist): New variable.
166         (riece-channel-buffer-create): Assert the major-mode of the
167         created buffer is 'riece-channel-mode.
168         (riece-channel-buffer): New function.
169         (riece-switch-to-channel): Use riece-channel-buffer instead of
170         directly using get-buffer.
171
172 2003-10-14  Daiki Ueno  <ueno@unixuser.org>
173
174         * riece-commands.el (riece-command-toggle-away): Check user away
175         status in the server buffer.
176         [cf. <Liece:00119>]
177         (riece-command-names): Use identity prefix
178         instead of formatted identity.
179         (riece-command-who): Ditto.
180
181 2003-10-14  TAKAHASHI Kaoru  <kaoru@kaisei.org>
182
183         * riece.el (riece-dialogue-mode-map): Bind "N" instead of "\C-n"
184         to `riece-command-name'.
185
186 2003-10-14  Daiki Ueno  <ueno@unixuser.org>
187
188         * riece-layout.el (riece-reconfigure-windows-predicate): Simplified.
189
190 2003-10-13  Daiki Ueno  <ueno@unixuser.org>
191
192         * Riece: Version 0.1.3 released.
193         * riece-version.el (riece-version-number): Bump up to 0.1.3.
194
195 2003-10-13  Daiki Ueno  <ueno@unixuser.org>
196
197         * riece-button.el (riece-button-map-identity-region): Abolish.
198         (riece-user-button-set-operators): Use riece-scan-property-region.
199         (riece-user-button-set-speakers): Ditto.
200         (riece-button-add-identity-button): Ditto.
201
202         * riece-keyword.el: Require 'riece-message.
203         (riece-keyword-map-region): Abolish.
204         (riece-keyword-scan-region): Use riece-scan-property-region.
205
206         * riece-misc.el (riece-scan-property-region): New function.
207
208 2003-10-13  Daiki Ueno  <ueno@unixuser.org>
209
210         * riece-xemacs.el (riece-make-overlay): New alias.
211         (riece-overlay-put): New alias.
212         (riece-overlay-start): New alias.
213         (riece-overlay-buffer): New alias.
214
215         * riece-emacs.el (riece-make-overlay): New alias.
216         (riece-overlay-put): New alias.
217         (riece-overlay-start): New alias.
218         (riece-overlay-buffer): New alias.
219
220         * riece-keyword.el: New add-on.
221         * COMPILE (riece-modules): Add riece-keyword.
222         * Makefile.am (EXTRA_DIST): Add riece-keyword.el
223
224         * riece-message.el (riece-message-filter-functions): New user option.
225         (riece-display-message-1): New function.
226         (riece-display-message): Use it.
227
228 2003-10-13  Daiki Ueno  <ueno@unixuser.org>
229
230         * riece.el (riece-channel-list-mode): Initialize
231         riece-update-buffer-functions.
232         (riece-user-list-mode): Ditto.
233
234         * riece-globals.el (riece-channel-indicator): Rename from
235         riece-short-channel-indicator.
236         (riece-long-channel-indicator): Rename from
237         riece-channel-indicator.
238
239         * riece-display.el (riece-update-buffer-functions): Default to
240         nil.
241         (riece-update-indicator-functions): New variable splitted from
242         riece-update-buffer-functions.
243         (riece-update-channel-indicator): Rename from
244         riece-update-short-channel-indicator.
245         (riece-update-long-channel-indicator): Rename from
246         riece-update-channel-indicator.
247         (riece-update-buffers): Don't set riece-channel-buffer.
248         (riece-switch-to-channel): Set riece-channel-buffer here.
249
250         * riece-button.el (riece-user-button-popup-menu): Change order.
251         (riece-button-update-buffer): Unify
252         riece-button-update-channel-list-buffer and
253         riece-button-update-user-list-buffer.
254
255 2003-10-13  Daiki Ueno  <ueno@unixuser.org>
256
257         * riece-history.el (riece-history-insinuate): In
258         riece-after-switch-to-channel-functions, check whether the last
259         channel is nil.
260
261         * riece-xemacs.el (riece-event-buffer): New alias.
262         (riece-event-point): New alias.
263
264         * riece-emacs.el (riece-event-buffer): New function.
265         (riece-event-point): New function.
266
267         * riece-display.el (riece-update-user-list-buffer): Use
268         riece-format-identity to add 'riece-identity property to user
269         names.
270
271         * riece-button.el (riece-user-button-popup-menu): New variable.
272         (riece-identity-button): Rename from riece-channel-button.
273         (riece-button-switch-to-identity): Rename from
274         riece-channel-button-action.
275         (riece-identity-button-popup-menu): Rename from
276         riece-channel-button-popup-menu; set point to the position the
277         event occurred.
278         (riece-user-button-join-partner): New function.
279         (riece-user-button-set-operators): New function.
280         (riece-user-button-set-speakers): New function.
281         (riece-user-button-finger): New function.
282         (riece-make-identity-button-map): New function.
283         (riece-button-map-identity-region): New function; splitted from
284         riece-button-add-identity-button.
285         (riece-button-add-identity-button): Use it.
286         (riece-button-update-user-list-buffer): New function.
287         (riece-button-insinuate): Add riece-button-update-user-list-buffer
288         to riece-update-buffer-functions.
289
290 2003-10-13  Daiki Ueno  <ueno@unixuser.org>
291
292         * riece-xemacs.el (riece-mouse-2): New variable.
293         (riece-popup-menu-popup): New function.
294
295         * riece-emacs.el (riece-mouse-2): New variable.
296         (riece-popup-menu-bogus-filter-constructor): New macro.
297         (riece-popup-menu-popup): New function.
298
299         * riece-commands.el (riece-command-list): Use identity prefix
300         instead of formatted identity.
301
302         * riece-button.el (riece-channel-button-popup-menu): New variable.
303         (riece-channel-button): Arrange help-echo.
304         (riece-channel-button-switch-to-channel): New function.
305         (riece-channel-button-part): New function.
306         (riece-channel-button-list): New function.
307         (riece-channel-button-map): New variable.
308         (riece-button-add-channel-buttons): Add 'local-map and 'keymap
309         properties on channel buttons.
310
311 2003-10-13  Daiki Ueno  <ueno@unixuser.org>
312
313         * riece-button.el (riece-button-insinuate): Buttonize channel buffers.
314
315         * riece-history.el (riece-channel-list-history-face): New face.
316         (riece-history-format-channel-list-line): New function.
317         (riece-history-insinuate): Add ?+ to
318         riece-channel-list-mark-face-alist; add
319         riece-history-format-channel-list-line to
320         riece-format-channel-list-line-functions.
321
322         * riece-highlight.el (riece-channel-list-current-face): Arrange colors.
323
324 2003-10-13  Daiki Ueno  <ueno@unixuser.org>
325
326         * riece-unread.el (riece-unread-after-display-message-function):
327         Do nothing when message-target is already in
328         riece-unread-channels; call riece-redisplay-buffers.
329         (riece-unread-update-channel-list-buffer): Abolish.
330         (riece-unread-after-switch-to-channel-function): Don't call
331         riece-unread-update-channel-list-buffer.
332         (riece-unread-format-channel-list-line): New function.
333         (riece-unread-insinuate): Add
334         riece-unread-format-channel-list-line to
335         riece-format-channel-list-line; don't add
336         riece-unread-update-channel-list-buffer to
337         riece-update-buffer-functions.
338
339         * riece-highlight.el (riece-channel-list-mark-current-channel):
340         Abolish; merged into riece-update-channel-list-buffer.
341         (riece-highlight-insinuate): Don't add
342         riece-channel-list-mark-current-channel to
343         riece-after-switch-to-channel-functions.
344
345         * riece-display.el (riece-channel-list-changed): Abolish.
346         (riece-update-channel-list-buffer): Always redisplay channel-list
347         buffer.
348         (riece-update-channel-list-indicator): Always redisplay
349         channel-list indicator.
350         (riece-format-channel-list-line): New function.
351         (riece-update-buffers): Don't clear riece-channel-list-changed.
352         (riece-join-channel): Don't set riece-channel-list-changed.
353         (riece-part-channel): Ditto.
354
355 2003-10-13  Daiki Ueno  <ueno@unixuser.org>
356
357         * riece-options.el (riece-addons): Add riece-button.
358
359         * riece-display.el (riece-update-channel-list-buffer): Avoid to
360         use format to preserve 'riece-identity property.
361
362         * riece-unread.el (riece-unread-update-channel-list-buffer):
363         Simplified.
364         (riece-unread-insinuate): Delay adding
365         riece-unread-update-channel-list-buffer to
366         riece-update-buffer-functions.
367
368         * riece-button.el: New add-on.
369         * COMPILE (riece-modules): Add riece-button.
370         * Makefile.am (EXTRA_DIST): Add riece-button.el
371
372 2003-10-08  Daiki Ueno  <ueno@unixuser.org>
373
374         * riece-server.el (riece-close-server-process): 
375         (riece-quit-server-process): Call riece-close-server-process
376         instead of kill-process; call riece-exit if no process is available.
377
378 2003-10-07  Daiki Ueno  <ueno@unixuser.org>
379
380         * riece-display.el (riece-channel-buffer-name): Check whether
381         IDENTITY is a member of riece-current-channels.
382
383 2003-10-07  TAKAHASHI Kaoru  <kaoru@kaisei.org>
384
385         * riece-commands.el (riece-command-kick): Fix completing-read
386         collection argument.
387
388 2003-10-05  Daiki Ueno  <ueno@unixuser.org>
389
390         * riece-000.el: Require 'riece-commands.
391         * riece-200.el: Don't require 'riece-commands.
392         * riece-300.el: Ditto.
393
394 2003-10-05  Daiki Ueno  <ueno@unixuser.org>
395
396         * Riece: Version 0.1.2 released.
397         * riece-version.el (riece-version-number): Bump up to 0.1.2.
398
399 2003-10-05  Daiki Ueno  <ueno@unixuser.org>
400
401         * riece-filter.el (riece-sentinel): Don't clear
402         riece-reconnect-with-password.
403         * riece-server.el (riece-open-server): Clear
404         riece-reconnect-with-password here.
405
406 2003-10-04  Daiki Ueno  <ueno@unixuser.org>
407
408         * riece-globals.el (riece-join-channel-candidate): New variable.
409         * riece-commands.el (riece-command-join): Prompt
410         riece-join-channel-candidate.
411
412         * riece-handle.el (riece-handle-invite-message): Set
413         riece-join-channel-candidate when the user is invited.
414         * riece-naming.el (riece-naming-assert-join): Clear
415         riece-join-channel-candidate.
416
417 2003-10-04  Daiki Ueno  <ueno@unixuser.org>
418
419         * riece-identity.el (riece-completing-read-identity): Pass 6th &
420         7th arguments to completing-read.
421
422         * riece-commands.el (riece-command-part): Use 6th argument DEFAULT
423         of riece-completing-read-identity.
424
425         * riece-handle.el (riece-handle-invite-message): Fix parsing of
426         parameters.
427
428         * riece-display.el (riece-update-channel-list-buffer): Don't clear
429         riece-channel-list-changed.
430         (riece-update-buffers): Clear it.
431
432 2003-10-01  Daiki Ueno  <ueno@unixuser.org>
433
434         * riece-rdcc.el (riece-rdcc-save-directory): New user option.
435
436 2003-09-29  Daiki Ueno  <ueno@unixuser.org>
437
438         * riece-000.el (riece-handle-001-message): Parse elements in
439         riece-startup-channel-list.
440
441 2003-09-21  TAKAHASHI Kaoru  <kaoru@kaisei.org>
442
443         * riece-skk-kakutei.el
444         (riece-skk-kakutei-command-enter-message-as-notice): Fix typo.
445
446 2003-09-20  Daiki Ueno  <ueno@unixuser.org>
447
448         * riece-options.el (riece-startup-channel-list): Revive.
449         * riece-000.el (riece-handle-001-message): Process
450         riece-startup-channel-list.
451
452         * riece-server.el (riece-open-server): Display "Logging in to
453         XXX..." message.
454         * riece-000.el (riece-handle-001-message): Clear "Logging in to
455         XXX..." message; call riece-after-login-hook.
456
457 2003-09-07  Daiki Ueno  <ueno@unixuser.org>
458
459         * riece-unread.el (riece-unread-after-display-message-function):
460         Simplified.
461
462 2003-09-02  Daiki Ueno  <ueno@unixuser.org>
463
464         * riece-commands.el (riece-command-join): Extract target
465         identity-prefix before applying riece-channel-p; format target.
466
467 2003-08-30  Daiki Ueno  <ueno@unixuser.org>
468
469         * Riece: Version 0.1.1 released.
470         * riece-version.el (riece-version-number): Bump up to 0.1.1.
471
472 2003-08-29  Daiki Ueno  <ueno@unixuser.org>
473
474         * riece-guess.el (riece-guess-channel-try-functions): Default to
475         nil.
476         (riece-default-guess-channel): Abolish.
477         (riece-command-guess-switch-to-channel): Reconstruct
478         riece-guess-candidates when it is empty.
479
480 2003-08-28  Daiki Ueno  <ueno@unixuser.org>
481
482         * riece-highlight.el (riece-dialogue-change-face): Use defvar to
483         define.
484         (riece-dialogue-notice-face): Ditto.
485         (riece-dialogue-wallops-face): Ditto.
486         (riece-dialogue-error-face): Ditto.
487         (riece-dialogue-info-face): Ditto.
488         (riece-dialogue-server-face): Ditto.
489         (riece-dialogue-prefix-face): Ditto.
490         (riece-channel-list-default-face): Ditto.
491         (riece-channel-list-current-face): Ditto.
492
493         * riece-unread.el (riece-channel-list-unread-face): Use defvar to
494         define.
495
496 2003-08-27  Daiki Ueno  <ueno@unixuser.org>
497
498         * riece-history.el (riece-history-insinuate): Don't set
499         riece-guess-channel-try-functions here.
500         (riece-history-requires): Don't require riece-guess.
501
502         * riece-unread.el (riece-unread-requires): Don't require
503         riece-guess.
504         (riece-unread-insinuate): Don't set
505         riece-guess-channel-try-functions here.
506
507 2003-08-27  Daiki Ueno  <ueno@unixuser.org>
508
509         * riece-unread.el (riece-unread-after-display-message-function):
510         Rename from riece-unread-display-message-function.
511         (riece-unread-after-switch-to-channel-function): Rename from
512         riece-unread-channel-switch-hook.
513         (riece-guess-channel-from-unread): New function.
514         (riece-unread-requires): Require 'riece-guess and 'riece-history.
515         (riece-unread-insinuate): Setup riece-guess-channel-try-functions.
516
517         * riece-options.el (riece-addons): Add riece-guess, riece-history,
518         and riece-url.
519
520         * riece-layout.el (riece-reconfigure-windows-predicate): Don't
521         check riece-last-channel.
522
523         * riece-display.el (riece-switch-to-channel): Rename
524         riece-channel-switch-hook to
525         riece-after-switch-to-channel-functions.
526         (riece-switch-to-nearest-channel): Ditto.
527
528         * riece-guess.el: New add-on.
529         * COMPILE (riece-modules): Add riece-guess.
530         * Makefile.am (EXTRA_DIST): Add riece-guess.el
531
532         * riece-history.el: New add-on.
533         * COMPILE (riece-modules): Add riece-history.
534         * Makefile.am (EXTRA_DIST): Add riece-history.el
535
536 2003-08-27  Daiki Ueno  <ueno@unixuser.org>
537
538         * riece-options.el (riece-connection-timeout): Abolish.
539
540         * riece-server.el (riece-clear-system): Abolish.
541         * riece.el (riece-exit): Merge riece-clear-system.
542
543 2003-08-26  Daiki Ueno  <ueno@unixuser.org>
544
545         * riece-filter.el (riece-sentinel): Suppress status message when
546         riece-debug is nil.
547
548 2003-08-26  Daiki Ueno  <ueno@unixuser.org>
549
550         * riece-highlight.el (riece-channel-list-mark-current-channel):
551         New function.
552
553         * riece-display.el (riece-channel-list-changed): New variable.
554         (riece-update-channel-list-buffer): Check riece-channel-list-changed.
555         (riece-update-channel-list-indicator): Ditto.
556
557 2003-08-26  Daiki Ueno  <ueno@unixuser.org>
558
559         * riece-options.el (riece-addons): Enable riece-unread by default.
560
561         * riece-highlight.el (riece-channel-list-current-face): New variable.
562         (riece-channel-list-default-face): New face.
563
564         * riece-globals.el (riece-channel-list-buffer): Strip leading
565         whitespace.
566
567 2003-08-26  Daiki Ueno  <ueno@unixuser.org>
568
569         * riece-unread.el: Require 'riece-highlight when compiling.
570         (riece-unread): New custom group.
571         (riece-channel-list-unread-face): New variable.
572         (riece-channel-list-unread-face): New face.
573         (riece-unread-requires): New function.
574         (riece-unread-insinuate): Add ?! to riece-channel-list-mark-face-alist.
575
576         * riece-highlight.el: Highlight *Channels* buffer; rename
577         riece-*-face -> riece-dialogue-*-face, riece-highlight-* ->
578         riece-dialogue-*.
579         (riece-channel-list-font-lock-keywords): New variable.
580         (riece-channel-list-mark-face-alist): New variable.
581
582 2003-08-25  Daiki Ueno  <ueno@unixuser.org>
583
584         * riece-unread.el (riece-unread-update-channel-list-buffer):
585         Restore channel marks if exist.
586
587         * riece-naming.el (riece-naming-assert-join): Don't set
588         riece-redisplay-buffers.
589         (riece-naming-assert-part): Ditto.
590         (riece-naming-assert-rename): Ditto.
591
592         * riece-display.el (riece-redisplay-buffers): Abolish.
593         (riece-update-user-list-buffer): Don't check
594         riece-redisplay-buffers.
595         (riece-update-channel-list-buffer): Ditto; prefix "*" at the
596         beginning of the current channel.
597         (riece-switch-to-channel): Don't set riece-redisplay-buffers.
598         (riece-join-channel): Ditto.
599         (riece-part-channel): Ditto.
600
601 2003-08-25  Daiki Ueno  <ueno@unixuser.org>
602
603         * riece-display.el (riece-join-channel): Parse non-nil elements in
604         riece-default-channel-binding.
605
606 2003-08-25  Daiki Ueno  <ueno@unixuser.org>
607
608         * riece-identity.el (riece-format-identity): Add 'riece-identity
609         property to the resulting string.
610
611         * riece-misc.el (riece-concat-channel-topic): Don't append ":" if
612         topic is "".
613
614         * riece-300.el (riece-handle-322-message): Simplify message.
615
616         * riece-commands.el (riece-command-change-layout): Call
617         riece-command-configure-windows; Use setq instead of
618         custom-set-variables.
619
620 2003-08-25  Daiki Ueno  <ueno@unixuser.org>
621
622         * Riece: Version 0.1.0 released.
623         * riece-version.el (riece-version-number): Bump up to 0.1.0.
624
625 2003-08-25  Daiki Ueno  <ueno@unixuser.org>
626
627         * COMPILE (riece-compile-modules): Ignore errors during byte
628         compilation.
629         (riece-install-modules): If there lacks a compiled module, don't
630         attempt to install it.
631
632         * riece-options.el (riece-quit-timeout): Default to 10.
633
634         * riece.el (riece-dialogue-mode-map): Bind riece-command-change-layout.
635         (riece): Switch to riece-command-buffer before riece-redisplay-buffers.
636
637         * riece-unread.el: Require 'riece-commands.
638
639         * riece-server.el: Require 'riece-identity and 'riece-compat.
640
641         * riece-ndcc.el: Require 'riece-globals, 'riece-options,
642         'riece-display.
643         (riece-handle-dcc-request): Use riece-channel-buffer-name.
644
645         * riece-identity.el: Don't require 'riece-server.
646
647         * riece-doctor.el: Require 'riece-globals, 'riece-identity,
648         'riece-message, and 'riece-server.
649
650         * riece-ctcp.el: Require 'riece-display.
651
652         * riece-commands.el: Require 'riece-layout.
653         (riece-command-change-layout): New command.
654
655         * riece-alias.el: Require 'riece-identity.
656
657         * riece-layout.el: No longer provided as an add-on.
658         * riece-display.el: Remove window configuration stuff.
659
660 2003-08-24  Daiki Ueno  <ueno@unixuser.org>
661
662         * riece-rdcc.el (riece-command-dcc-send): Bind
663         process-connection-type to nil.
664
665         * riece-300.el (riece-handle-319-message): New handler.
666
667         * riece.el (riece-buffer-mode-alist): Add riece-command-buffer.
668         (riece): Signal an error when a server is opened;
669         No need to initialize riece-command-buffer specially.
670
671 2003-08-22  TAKAHASHI Kaoru  <kaoru@kaisei.org>
672
673         * riece-display.el (riece-configure-windows-top): Set
674         `truncate-partial-width-windows' nil, when horizontal window
675         split.
676
677 2003-08-21  TAKAHASHI Kaoru  <kaoru@kaisei.org>
678
679         * riece-display.el (riece-configure-windows-top): Change
680         user-list-buffer and channel-list-buffer window create logic.
681
682         * riece-skk-kakutei.el (riece-skk-kakutei-insinuate): Add
683         require riece.el when compile.
684
685         * riece.el (riece): Use `riece-redisplay-buffers' instead of
686         `riece-configure-windows'.
687
688 2003-08-20  TAKAHASHI Kaoru  <kaoru@kaisei.org>
689
690         * riece-display.el (riece-configure-windows-top): New function.
691         * riece-layout.el (riece-layout-alist): Add top.
692
693         * riece-skk-kakutei.el: New add-on.
694         * COMPILE (riece-modules): Add riece-skk-kakutei.
695         * Makefile.am (EXTRA_DIST): Add riece-skk-kakutei.el
696
697 2003-08-19  Daiki Ueno  <ueno@unixuser.org>
698
699         * riece-layout.el: New add-on.
700         * COMPILE (riece-modules): Add riece-layout.
701         * Makefile.am (EXTRA_DIST): Add riece-layout.el
702
703 2003-08-17  Daiki Ueno  <ueno@unixuser.org>
704
705         * riece-options.el (riece-quit-timeout): New user option.
706         * riece-server.el (riece-quit-server-process): New function.
707         * riece-commands.el (riece-command-quit): Use it.
708         (riece-command-close-server): Use it.
709
710 2003-08-17  Daiki Ueno  <ueno@unixuser.org>
711
712         * riece-commands.el (riece-command-previous-channel): Skip nil in
713         riece-current-channels.
714
715 2003-08-09  Daiki Ueno  <ueno@unixuser.org>
716
717         * riece-rdcc.el (riece-command-dcc-send): Accept output only from
718         the ruby process.
719
720         * riece-xemacs.el: Don't require 'riece-compat.
721
722 2003-08-06  Daiki Ueno  <ueno@unixuser.org>
723
724         * riece-unread.el (riece-unread-update-channel-list-buffer): Call
725         riece-parse-identity.
726
727 2003-08-04  Daiki Ueno  <ueno@unixuser.org>
728
729         * riece-server.el (riece-find-server-name): Abolish.
730
731         * riece-alias.el: Add usage.
732
733 2003-08-04  Daiki Ueno  <ueno@unixuser.org>
734
735         * riece-mini.el (riece-mini-send-message): Use
736         riece-completing-read-identity; don't use riece-own-channel-message.
737
738         * riece-identity.el: Require 'riece-compat.
739         (riece-identity-prefix-case-table): New variable.
740         (riece-abbrev-identity-string-function): New variable.
741         (riece-expand-identity-string-function): New variable.
742         (riece-format-identity): Rename from riece-decode-identity.
743         (riece-parse-identity): Rename from riece-encode-identity.
744         (riece-with-identity-buffer): Abolish.
745         (riece-identity-canonicalize-prefix): Use case-table.   
746
747         * riece-filter.el (riece-handle-numeric-reply): Decode messages.
748         (riece-handle-message): Ditto.
749
750         * riece-alias.el: New add-on.
751         * COMPILE (riece-modules): Add riece-alias.
752         * Makefile.am (EXTRA_DIST): Add riece-alias.el.
753
754         * riece-emacs.el (riece-set-case-syntax-pair): New alias.
755         * riece-xemacs.el (riece-set-case-syntax-pair): New alias.
756         * riece-identity.el (riece-identity-canonicalize-prefix): Simplified.
757
758 2003-08-03  Daiki Ueno  <ueno@unixuser.org>
759
760         * Riece: Version 0.0.4 released.
761         * riece-version.el (riece-version-number): Bump up to 0.0.4.
762
763 2003-06-24  OHASHI Akira  <bg66@koka-in.org>
764
765         * riece-unread.el (riece-unread-display-message-function): Don't check
766         `selected-window'. It doesn't work as expected.
767
768 2003-06-23  Daiki Ueno  <ueno@unixuser.org>
769
770         * riece-misc.el (riece-channel-p): Moved from riece-channel.el.
771
772         * riece-300.el: Rewrite using riece-decode-identity.
773
774         * riece-identity.el (riece-completing-read-identity): Signal an
775         error when the encoded channel name is not matched with
776         riece-channel-regexp.
777
778         * riece-globals.el (riece-channel-regexp): Moved from
779         riece-channel.el.
780         (riece-user-regexp): Moved form riece-user.el.
781
782 2003-06-23  Daiki Ueno  <ueno@unixuser.org>
783
784         * riece-handle.el (riece-handle-join-message): Don't call
785         riece-switch-to-channel.
786         (riece-handle-part-message): Don't decode message if it is empty.
787         (riece-handle-kick-message): Ditto.
788         (riece-handle-quit-message): Ditto.
789         (riece-handle-kill-message): Ditto.
790
791         * riece-commands.el (riece-command-part): Show the current channel
792         as default candidate.
793
794         * riece-identity.el (riece-completing-read-identity): Accept
795         optional 5th argument `initial'.
796
797         * riece-unread.el (riece-unread-update-channel-list-buffer):
798         Simplified.
799
800         * riece-filter.el (riece-sentinel): Don't bind
801         riece-inhibit-update-buffers.
802
803         * riece-display.el (riece-redisplay-buffer): New variable.
804         (riece-inhibit-update-buffers): Abolish.
805         (riece-update-channel-list-buffer): Memorize
806         encoded identity as text property on each line. 
807
808         * riece.el (riece-channel-list-mode): Make riece-redisplay-buffer
809         buffer local.
810         (riece-user-list-mode): Ditto.
811
812 2003-06-22  Yoichi NAKAYAMA  <yoichi@geiin.org>
813
814         * riece-log.el, riece-mini.el, riece-unread.el, riece-url.el:
815         Fix example setting, don't use 3rd arg of add-to-list.
816
817         * riece-coding.el (riece-default-coding-system): Fix default value.
818
819 2003-06-22  Daiki Ueno  <ueno@unixuser.org>
820
821         * riece-display.el (riece-inhibit-update-buffers): New variable.
822         * riece-filter.el (riece-sentinel): Bind
823         riece-inhibit-update-buffers while removing channels from
824         riece-current-channels.
825         * riece-unread.el (riece-unread-display-message-function): Don't
826         update channel list buffer when riece-inhibit-update-buffers is
827         non-nil.
828         (riece-unread-channel-switch-hook): Ditto.
829         (riece-unread-insinuate): Add
830         riece-unread-update-channel-list-buffer to
831         riece-update-buffer-functions.
832
833         * riece-commands.el (riece-command-switch-to-channel): Call
834         riece-redisplay-buffers instead of riece-command-configure-windows.
835
836         * riece-identity.el (riece-completing-read-identity): Remove nil
837         from riece-current-channels before converting it to an alist.
838
839 2003-06-17  OHASHI Akira  <bg66@koka-in.org>
840
841         * riece-unread.el (riece-unread-display-message-function): Check a
842         `selected-window'.
843
844         * riece-mini.el: New add-on.
845         * COMPILE (riece-modules): Add `riece-mini'.
846         * Makefile.am (EXTRA_DIST): Add `riece-mini.el'.
847
848         * riece-display.el (riece-channel-buffer-create): Add new hook.
849         * riece-log.el: New add-on for saving irc logs.
850         * COMPILE (riece-modules): Add `riece-log'.
851         * Makefile.am (EXTRA_DIST): Add `riece-log.el'.
852
853         * riece-commands.el (riece-command-join): Use `let*' instead of `let'.
854         (riece-command-part): Ditto.
855
856 2003-06-12  Daiki Ueno  <ueno@unixuser.org>
857
858         * riece-naming.el (riece-naming-assert-join): Call
859         riece-update-buffers.
860         (riece-naming-assert-part): Ditto.
861
862         * riece-filter.el (riece-sentinel): Don't bind
863         riece-overriding-server-name; use riece-part-channel.
864
865         * riece-display.el (riece-switch-to-channel): Don't set
866         riece-channel-buffer.
867         (riece-update-buffers): Set riece-channel-buffer here.
868
869         * riece-commands.el (riece-command-switch-to-channel-by-number): Fixed.
870         (riece-command-close-server): Fixed completion bug.
871         (riece-command-universal-server-name-argument): Ditto.
872
873 2003-06-12  Daiki Ueno  <ueno@unixuser.org>
874
875         * riece-doctor.el: Don't require 'doctor; autoload doctor-mode and
876         doctor-read-print.
877
878         * riece-handle.el (riece-handle-nick-message): Use
879         riece-decode-identity to decode user.
880         (riece-handle-join-message): Ditto.
881         (riece-handle-part-message): Ditto.
882         (riece-handle-kick-message): Ditto.
883         (riece-handle-quit-message): Ditto.
884         (riece-handle-kill-message): Ditto.
885         (riece-handle-invite-message): Ditto.
886         (riece-handle-topic-message): Ditto.
887         (riece-handle-mode-message): Ditto.
888
889 2003-06-12  Daiki Ueno  <ueno@unixuser.org>
890
891         * riece-message.el (riece-own-channel-message): Abolish.
892
893         * riece-commands.el (riece-command-send-message): Don't use
894         riece-own-channel-message.
895
896         * riece-doctor.el (riece-doctor-reply): Don't use
897         riece-own-channel-message.
898         (riece-doctor-hello-regexp): New user option.
899         (riece-doctor-bye-regexp): New user option.
900
901 2003-06-11  Daiki Ueno  <ueno@unixuser.org>
902
903         * riece-identity.el (riece-identity-member-no-server): Abolish.
904
905         * riece-doctor.el (riece-doctor-patients): Make it global variable.
906         (riece-doctor-after-privmsg-hook): Use riece-identity-member
907         instead of riece-identity-member-no-server.
908
909 2003-06-11  Daiki Ueno  <ueno@unixuser.org>
910
911         * riece-doctor.el: New add-on.
912         * COMPILE (riece-modules): Add riece-doctor.
913         * Makefile.am (EXTRA_DIST): Add riece-doctor.el
914
915 2003-06-11  Daiki Ueno  <ueno@unixuser.org>
916
917         * riece-handle.el (riece-handle-nick-message): Follow the change
918         of riece-identity-member.
919
920         * riece-commands.el (riece-command-next-channel): Use
921         riece-identity-member instead of riece-identity-member-no-server.
922         (riece-command-previous-channel): Ditto.
923
924 2003-06-11  Daiki Ueno  <ueno@unixuser.org>
925
926         * riece-identity.el (riece-completing-read-identity): Remove nil
927         from channels before completing-read.
928
929         * riece-message.el (riece-message-make-name): Fix condition for priv.
930         (riece-message-make-global-name): Ditto.
931         (riece-message-buffer): Ditto.
932
933         * riece-misc.el (riece-current-nickname): Use
934         riece-with-identity-buffer.
935
936 2003-06-11  Daiki Ueno  <ueno@unixuser.org>
937
938         * riece-message.el (riece-message-parent-buffers): Regard message's
939         speaker as target when priv mode.
940
941         * riece-display.el (riece-update-channel-indicator): Decode
942         riece-current-channel even in priv mode.
943
944         * riece-identity.el (riece-decode-identity): Respect prefix-only.
945         (riece-completing-read-identity): Check if illegal characters in
946         channel name.
947
948 2003-06-08  Daiki Ueno  <ueno@unixuser.org>
949
950         * riece.el (riece-buffer-mode-alist): Add riece-user-list-buffer.
951         * riece-globals.el (riece-user-buffer-format): Abolish.
952         (riece-user-list-buffer): Default to " *Users*".
953         * riece-display.el (riece-user-list-buffer-name): Abolish.
954         (riece-user-list-buffer-create): Abolish.
955
956 2003-06-08  Daiki Ueno  <ueno@unixuser.org>
957
958         * riece-filter.el (riece-handle-numeric-reply): Don't decode messages.
959         (riece-handle-message): Ditto.
960         (riece-sentinel): Clear system here.
961
962         * riece-server.el (riece-server-process-name): New function.
963         (riece-server-process): New function.
964         (riece-close-server): Abolish.
965
966         * riece-identity.el: Adopt vector object representation for
967         identity objects.
968         (riece-with-identity-buffer): New macro.
969         (riece-decode-identity): New function.
970         (riece-encode-identity): New function.
971
972         * riece-globals.el (riece-process-list): New variable.
973         (riece-server-process-alist): Abolish.
974         (riece-channel-buffer-alist): Abolish.
975         (riece-user-list-buffer-alist): Abolish.
976         (riece-short-channel-indicator): New variable.
977
978         * riece-channel.el: Assume that we are already in the server buffer.
979         * riece-user.el: Likewise.
980
981 2003-06-06  OHASHI Akira  <bg66@koka-in.org>
982
983         * riece-ndcc.el (riece-ndcc-server-sentinel): Close a parenthesis.
984
985         * riece-rdcc.el (riece-rdcc-insinuate): Don't use the 3rd argument of
986         `add-to-list'.
987
988 2003-06-06  Daiki Ueno  <ueno@unixuser.org>
989
990         * riece-channel.el (riece-forget-channel): Fixed.
991         (riece-channel-modeless-regexp): Abolish.
992         (riece-channel-modeless-p): Abolish.
993
994 2003-06-06  OHASHI Akira  <bg66@koka-in.org>
995
996         * riece-unread.el (riece-unread-display-message-function): Delete the
997         target before adding to list.
998         (riece-unread-switch-to-channel): New function.
999         (riece-unread-insinuate): Bind "\C-c\C-u" to riece-command-mode-map.
1000         Bind "u" to riece-dialogue-mode-map.
1001         Bind "u" to riece-channel-list-mode-map.
1002
1003         * riece.el (riece-channel-list-mode-map): Don't bind
1004         `riece-command-unread-channel'.
1005
1006 2003-06-04  Yoichi NAKAYAMA  <yoichi@geiin.org>
1007
1008         * riece-000.el,riece-200.el,riece-300.el,riece-400.el,riece-500.el,
1009         riece-commands.el,riece-filter.el,riece-handle.el,riece-highlight.el
1010         riece-identity.el,riece-message.el,riece-misc.el,riece-naming.el,
1011         riece.el: Don't require riece-inlines since it has been removed.
1012
1013 2003-06-03  Daiki Ueno  <ueno@unixuser.org>
1014
1015         * riece-display.el (riece-update-user-list-buffer): Rename from
1016         riece-user-list-update-buffer.
1017         (riece-update-channel-list-buffer): Rename from
1018         riece-channel-list-update-buffer.
1019
1020 2003-06-03  Daiki Ueno  <ueno@unixuser.org>
1021
1022         * riece-identity.el (riece-identity-canonicalize-prefix): Moved
1023         from riece-inlines.el; renamed from scandinavian-downcase.
1024         (riece-identity-equal-no-server): Moved from riece-inlines.el;
1025         renamed from scandinavian-equal-ignore-case.
1026         (riece-identity-equal-no-server-safe): New function.
1027         (riece-identity-member-no-server): Moved from riece-inlines.el;
1028         renamed from scandinavian-member-ignore-case.
1029         (riece-identity-member-no-server-safe): New function.
1030
1031         * riece-inlines.el: Removed.
1032         * COMPILE (riece-modules): Remove riece-inlines.
1033         * Makefile.am (EXTRA_DIST): Remove riece-inlines.el.
1034
1035 2003-06-03  Daiki Ueno  <ueno@unixuser.org>
1036
1037         * riece-rdcc.el (riece-rdcc-sentinel): Don't call delete-process
1038         explicitly.
1039         * riece-ndcc.el: Don't call delete-process explicitly.
1040         * riece-server.el (riece-close-server-process): Don't call
1041         delete-process explicitly unless riece-debug == t.
1042
1043 2003-06-03  Daiki Ueno  <ueno@unixuser.org>
1044
1045         * riece-inlines.el (scandinavian-downcase): New inline function.
1046         (scandinavian-equal-ignore-case): Rename from
1047         string-equal-ignore-case.
1048         (scandinavian-member-ignore-case): Rename from
1049         string-list-member-ignore-case.
1050
1051         * riece-identity.el (riece-identity-equal): Rename from
1052         riece-identity-equal-no-server; use scandinavian-equal-ignore-case.
1053         (riece-identity-equal-safe): Rename from riece-identity-equal.
1054         (riece-identity-member): Rename from riece-identity-member-no-server.
1055         (riece-identity-member-safe): Rename from riece-identity-member.
1056         (riece-identity-assoc): Rename from riece-identity-assoc-no-server.
1057         (riece-identity-assoc-safe): Rename from riece-identity-assoc.
1058
1059 2003-06-03  Daiki Ueno  <ueno@unixuser.org>
1060
1061         * riece-rdcc.el: Require 'riece-ctcp.
1062         (riece-rdcc-insinuate): Add "DCC" to
1063         riece-ctcp-additional-clientinfo.
1064
1065         * riece-ctcp.el (riece-ctcp-additional-clientinfo): New variable.
1066         (riece-command-ctcp-clientinfo): New command.
1067         (riece-ctcp-insinuate): Bind it in riece-dialogue-mode-map.
1068         (riece-handle-ctcp-clientinfo-request): New handler.
1069         (riece-handle-ctcp-clientinfo-response): New handler.
1070
1071         * riece-server.el (riece-open-server): No need to use
1072         get-buffer-create to reuse process buffer.
1073
1074 2003-06-03  Daiki Ueno  <ueno@unixuser.org>
1075
1076         * riece-rdcc.el (riece-command-dcc-send): Generate new buffer for
1077         DCC process.
1078         (riece-command-dcc-receive): Likewise; don't set buffer-file-name.
1079
1080         * riece-server.el (riece-server-keyword-map): `:coding-system' ->
1081         `:coding'.
1082         (riece-open-server): Follow the change.
1083
1084         * riece-ctcp.el (riece-command-ctcp-action): New command.
1085         (riece-ctcp-insinuate): Bind it in riece-dialogue-mode-map.
1086         (riece-handle-ctcp-action-request): New handler.
1087
1088         * riece.el (riece-command-mode): Enclose status indicators with
1089         `{}'; show riece-user-indicator.
1090         (riece-channel-mode): Likewise.
1091         (riece-dialogue-mode): Enclose status indicators with `{}'.
1092         * riece-globals.el (riece-user-indicator): New indicator.
1093         (riece-freeze-indicator): Default to "-".
1094         * riece-display.el (riece-update-channel-indicator): Don't update
1095         modeline.
1096         (riece-update-status-indicators): Set riece-user-indicator.
1097         * riece-300.el (riece-handle-324-message): Update channel indicator.
1098
1099 2003-06-02  Daiki Ueno  <ueno@unixuser.org>
1100
1101         * riece.el (riece-command-mode): Don't set riece-freeze-indicator.
1102         (riece-dialogue-mode): Call riece-update-status-indicators.
1103         (riece-channel-mode): Add riece-operator-indicator to
1104         mode-line-buffer-identification.
1105         * riece-user.el (riece-make-user): New attribute `operator'.
1106         (riece-user-operator): New function.
1107         (riece-user-set-operator): New function.
1108         (riece-user-toggle-away): New function.
1109         (riece-user-toggle-operator): New function.
1110         * riece-misc.el (riece-own-frozen): Revive.
1111         * riece-message.el (riece-display-message): Reset riece-freeze if
1112         riece-freeze == 'own && (riece-message-own-p message).
1113         * riece-globals.el (riece-own-freeze): Abolish; use riece-freeze.
1114         (riece-operator-indicator): New variable.
1115         * riece-display.el (riece-update-status-indicators): New function.
1116         (riece-update-buffer-functions): Add it.
1117         * riece-commands.el (riece-command-toggle-freeze): Don't call
1118         riece-freeze.
1119         (riece-command-toggle-own-freeze): Don't call riece-own-freeze.
1120         * riece-300.el (riece-handle-302-message): Use
1121         riece-user-toggle-away instead of riece-user-set-away.
1122         (riece-handle-301-message): Ditto.
1123         (riece-handle-305-message): Ditto.
1124         (riece-handle-306-message): Ditto.
1125         (riece-handle-352-message): Ditto.
1126
1127 2003-06-02  Yoichi NAKAYAMA  <yoichi@geiin.org>
1128
1129         * riece-commands.el (riece-command-next-channel): Circularly
1130         follow the channel list.
1131         (riece-command-previous-channel): Ditto.
1132
1133 2003-06-02  Daiki Ueno  <ueno@unixuser.org>
1134
1135         * riece.el (riece-command-mode): Set default value of riece-freeze
1136         & riece-own-freeze.
1137         * riece-options.el (riece-away-message): New user option.
1138         * riece-commands.el (riece-command-toggle-away): Query user away
1139         message.
1140         * riece-300.el (riece-handle-301-message): Set user's away status.
1141         (riece-handle-305-message): Ditto.
1142         (riece-handle-306-message): Ditto.
1143         (riece-handle-302-message): Ditto.
1144         (riece-handle-352-message): Ditto.
1145
1146 2003-06-02  Daiki Ueno  <ueno@unixuser.org>
1147
1148         * riece-rdcc.el: Require riece-globals, riece-misc, riece-channel,
1149         and riece-identity.
1150         (riece-command-dcc-receive): Check the existence of
1151         set-buffer-multibyte.
1152
1153 2003-06-02  Daiki Ueno  <ueno@unixuser.org>
1154
1155         * Riece: Version 0.0.3 released.
1156         * riece-version.el (riece-version-number): Bump up to 0.0.3.
1157
1158         * riece-ctcp.el (riece-handle-ctcp-request): Catch errors occured
1159         in hooks.
1160         (riece-handle-ctcp-response): Ditto.
1161
1162 2003-06-01  Daiki Ueno  <ueno@unixuser.org>
1163
1164         * riece-user.el (riece-rename-user): Don't modify entry when
1165         old-name == new-name.
1166
1167         * riece-display.el (riece-configure-windows): Use window-buffer
1168         instead of current-buffer.
1169
1170         * riece-rdcc.el (riece-rdcc-server-address): Default to nil.
1171         (riece-rdcc-ruby-command): New user option.
1172         (riece-rdcc-send-program): New user option.
1173         (riece-rdcc-decode-address-program): New user option.
1174         (riece-rdcc-substitute-variables): New function.
1175         (riece-command-dcc-send): Use it.
1176         (riece-rdcc-decode-address): Use it.
1177
1178 2003-06-01  Daiki Ueno  <ueno@unixuser.org>
1179
1180         * riece-rdcc.el: New add-on.
1181
1182         * Makefile.am (EXTRA_DIST): Add riece-rdcc.el
1183
1184 2003-06-01  Daiki Ueno  <ueno@unixuser.org>
1185
1186         * riece-ndcc.el: New add-on.
1187         * Makefile.am (EXTRA_DIST): Add riece-ndcc.el
1188
1189 2003-05-31  Daiki Ueno  <ueno@unixuser.org>
1190
1191         * riece-server.el (riece-open-server): Simplify message.
1192
1193         * riece-commands.el (riece-command-open-server): Throw an error
1194         when the server is already opened.
1195
1196         * riece-filter.el (riece-sentinel): Simplified.
1197
1198         * riece-display.el (riece-user-list-update-buffer): Check the
1199         existence of riece-user-list-buffer.
1200         (riece-channel-list-update-buffer): Check the existence of
1201         riece-channel-list-buffer.
1202         (riece-set-window-points): Ditto.
1203
1204         * riece-commands.el (riece-command-open-server): Simplified.
1205         (riece-command-toggle-channel-buffer-mode): Set
1206         riece-save-variables-are-dirty to t.
1207         (riece-command-toggle-user-list-buffer-mode): Ditto.
1208         (riece-command-toggle-channel-list-buffer-mode): Ditto.
1209
1210         * riece-server.el (riece-start-server): Abolish.
1211         (riece-open-server): Set riece-server-process-alist and
1212         riece-server-process here.
1213
1214 2003-05-31  Daiki Ueno  <ueno@unixuser.org>
1215
1216         * riece-filter.el (riece-sentinel): Close process even if
1217         riece-reconnect-with-password == t.
1218         (riece-handle-message): Catch errors occured in hooks.
1219
1220         * riece-server.el (riece-open-server): Reuse server buffer.
1221         (riece-close-server-process): Delete process even if process is
1222         not running.
1223
1224 2003-05-31  Daiki Ueno  <ueno@unixuser.org>
1225
1226         * riece-server.el (riece-open-server): No need to reset
1227         riece-reconnect-with-password.
1228
1229         * riece-filter.el (riece-sentinel): Don't call riece when
1230         riece-reconnect-with-password = t and process !=
1231         riece-server-process.
1232
1233         * riece-url.el: Fix usage.
1234
1235         * riece-inlines.el (string-list-member-ignore-case): Remove docstring.
1236
1237         * riece-unread.el: New add-on.
1238         * COMPILE (riece-modules): Add riece-unread.
1239         * Makefile.am (EXTRA_DIST): Add riece-unread.el
1240
1241         * riece-300.el (riece-handle-322-message): New handler.
1242         (riece-handle-323-message): New handler.
1243
1244 2003-05-30  Daiki Ueno  <ueno@unixuser.org>
1245
1246         * riece-display.el (riece-configure-windows): Select other window
1247         when minibuffer is active.
1248
1249         * riece-commands.el (riece-command-list): New command.
1250         (riece-command-enter-message-as-notice): New command.
1251         * riece.el (riece-command-mode-map): Bind
1252         riece-command-enter-message-as-notice and riece-command-list.
1253
1254         * riece-server.el (riece-close-server): Skip nil when leaving
1255         channels before closing server.
1256
1257 2003-05-30  Daiki Ueno  <ueno@unixuser.org>
1258
1259         * Riece: Version 0.0.2 released.
1260         * riece-version.el (riece-version-number): Bump up to 0.0.2.
1261
1262         * riece.el (riece-load-and-build-addon-dependencies): Fixed.
1263         * riece-url.el (riece-url-requires): Don't assert dependency on
1264         riece-highlight unless it appears in riece-addons.
1265
1266         * riece-url.el: New add-on.
1267         * COMPILE (riece-modules): Add riece-url.
1268
1269         * riece-message.el (riece-message-make-bracket): Abolish.
1270         * riece-highlight.el (riece-highlight-font-lock-keywords):
1271         Give up to fontify "-nick-" or "-nick server-".
1272
1273         * riece-highlight.el (riece-highlight-font-lock-keywords):
1274         Simplified regexp.
1275
1276         * riece-ctcp.el (riece-handle-ctcp-request): Don't bind user.
1277         (riece-handle-ctcp-response): Ditto.
1278
1279         * riece-highlight.el: Make it an add-on.
1280         (riece-highlight-insinuate): New function.
1281         * riece.el: Don't require 'riece-highlight.
1282         * riece-options.el (riece-addons): Turn on riece-highlight and
1283         riece-ctcp by default.
1284
1285         * riece-display.el (riece-configure-windows-predicate): New function.
1286         (riece-configure-windows-predicate): New user option.
1287         (riece-redisplay-buffers): Use it.
1288
1289         * riece-complete.el: Require 'cl for butlast.
1290
1291         * Makefile.am (elc): Renamed from "compile".
1292
1293         * riece.el (riece-dialogue-mode-map): Bind
1294         riece-command-toggle-channel-list-buffer-mode.
1295
1296         * riece-display.el (riece-configure-windows): Typo fixed.
1297
1298         * riece-user.el (riece-user-toggle-channel): Use member instead of
1299         memq.
1300
1301 2003-05-29  Daiki Ueno  <ueno@unixuser.org>
1302
1303         * riece-ctcp.el (riece-ctcp-insinuate): New function.
1304
1305         * riece-options.el (riece-addons): New user option.
1306         (riece-addon-directory): New user option.
1307
1308         * riece.el (riece-load-and-build-addon-dependencies): New function.
1309         (riece-insinuate-addons): New function.
1310         (riece): Call riece-insinuate-addons.
1311
1312         * riece-misc.el (riece-get-users-on-server): Moved from
1313         riece-commands.el.
1314
1315         * riece-ctcp.el: New file.
1316         * COMPILE (riece-modules): Add riece-ctcp.
1317         * Makefile.am (EXTRA_DIST): Add riece-ctcp.el
1318
1319 2003-05-29  Daiki Ueno  <ueno@unixuser.org>
1320
1321         * Riece: Version 0.0.1 released.
1322
1323         * riece-commands.el (riece-command-names): New command.
1324         (riece-command-who): New command.
1325
1326         * riece.el (riece-dialogue-mode-map): Bind riece-command-names and
1327         riece-command-who.
1328
1329         * riece-300.el (riece-handle-341-message): New handler.
1330         (riece-handle-352-message): New handler.
1331
1332         * riece-commands.el (riece-command-invite): Don't accept channel
1333         argument; throw an error when user is not on a channel.
1334         (riece-command-kick): New command.