From: ueno Date: Wed, 22 Apr 2009 07:49:16 +0000 (+0000) Subject: * riece-addon-modules.el (riece-addon-modules): Don't mention X-Git-Url: http://git.chise.org/gitweb/?p=elisp%2Friece.git;a=commitdiff_plain;h=abed95a2e1d69e2537e7ed32747d5b4db56fdc0b * riece-addon-modules.el (riece-addon-modules): Don't mention riece-notify. * Makefile.am (EXTRA_DIST): Remove riece-notify.el. * riece-notify.el: Remove; use riece-desktop-notify.el. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 56679e7..076ff16 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,10 @@ +2009-04-22 Daiki Ueno + + * riece-addon-modules.el (riece-addon-modules): Don't mention + riece-notify. + * Makefile.am (EXTRA_DIST): Remove riece-notify.el. + * riece-notify.el: Remove; use riece-desktop-notify.el. + 2009-03-30 OHASHI Akira * riece-desktop-notify.el: New add-on. diff --git a/lisp/Makefile.am b/lisp/Makefile.am index caee59d..3b5204f 100644 --- a/lisp/Makefile.am +++ b/lisp/Makefile.am @@ -20,7 +20,7 @@ EXTRA_DIST = COMPILE ChangeLog ChangeLog.Liece \ riece-kakasi.el riece-foolproof.el riece-yank.el riece-toolbar.el \ riece-eval.el riece-google.el riece-keepalive.el riece-eval-ruby.el \ riece-shrink-buffer.el riece-xfaceb.el riece-epg.el riece-twitter.el \ - riece-notify.el riece-desktop-notify.el \ + riece-desktop-notify.el \ url-riece.el \ riece-command-previous-channel.xpm riece-command-next-channel.xpm \ riece-command-configure-windows.xpm riece-command-list-addons.xpm \ diff --git a/lisp/riece-addon-modules.el b/lisp/riece-addon-modules.el index 1a47848..a09cb26 100644 --- a/lisp/riece-addon-modules.el +++ b/lisp/riece-addon-modules.el @@ -58,8 +58,6 @@ (riece-mcat "Use Riece only on the minibuffer.")) ;;; (cons 'riece-ndcc ;;; (riece-mcat "DCC file sending protocol support (written in elisp.)")) -;;; (cons 'riece-notify -;;; (riece-mcat "Display notification on status area.")) (cons 'riece-rdcc (riece-mcat "DCC file sending protocol support (written in Ruby.)")) (cons 'riece-shrink-buffer diff --git a/lisp/riece-notify.el b/lisp/riece-notify.el deleted file mode 100644 index dc223e2..0000000 --- a/lisp/riece-notify.el +++ /dev/null @@ -1,71 +0,0 @@ -;;; riece-notify.el --- display notification on status area -;; Copyright (C) 1998-2008 Daiki Ueno - -;; Author: Daiki Ueno -;; Created: 1998-09-28 -;; Keywords: IRC, riece - -;; This file is part of Riece. - -;; This program is free software; you can redistribute it and/or modify -;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation; either version 2, or (at your option) -;; any later version. - -;; This program is distributed in the hope that it will be useful, -;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;; GNU General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs; see the file COPYING. If not, write to the -;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -;; Boston, MA 02110-1301, USA. - -;;; Commentary: - -;; NOTE: This is an add-on module for Riece. - -;;; Code: - -(require 'riece-message) -(eval-when-compile (require 'riece-keyword)) -(require 'dbus) - -(defconst riece-notify-description "Display notification on status area.") - -(defun riece-notify-keyword-notify-function (keyword message) - (riece--notify (format "%s: %s" - (riece-format-identity (riece-message-speaker message)) - (riece-message-text message)))) - -(defun riece--notify (string) - (dbus-call-method - :session "org.freedesktop.Notifications" - "/org/freedesktop/Notifications" - "org.freedesktop.Notifications" "Notify" - "GNU Emacs" ;; Application name. - 0 ;; No replacement of other notifications. - "" ;; No icon. - "Notification summary" ;; Summary. - (encode-coding-string string 'utf-8) ;; Body. - '(:array) ;; No actions (empty array of strings). - '(:array :signature "{sv}") ;; No hints - ;; (empty array of dictionary entries). - ':int32 -1) ;; Default timeout. - ) - -(defun riece-notify-requires () - '(riece-keyword)) - -(defun riece-notify-insinuate () - (add-hook 'riece-keyword-notify-functions - 'riece-notify-keyword-notify-function)) - -(defun riece-notify-uninstall () - (remove-hook 'riece-keyword-notify-functions - 'riece-notify-keyword-notify-function)) - -(provide 'riece-notify) - -;;; riece-notify.el ends here