Mercurial > emacs
changeset 97399:7806c35019cb
* net/xesam.el (xesam-search-engines): Add Debbugs hit fields.
(xesam-refresh-entry): Add Debbugs handling. Insert a widget
"DONE", when all hits are retrieved.
(xesam-search): autoload it.
author | Michael Albinus <michael.albinus@gmx.de> |
---|---|
date | Sun, 10 Aug 2008 19:35:39 +0000 |
parents | fe058c1304c6 |
children | ab3e7eb2a2a0 |
files | lisp/net/xesam.el |
diffstat | 1 files changed, 61 insertions(+), 16 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/net/xesam.el Sun Aug 10 03:53:09 2008 +0000 +++ b/lisp/net/xesam.el Sun Aug 10 19:35:39 2008 +0000 @@ -22,7 +22,7 @@ ;;; Commentary: -;; This package provides an interface to the Xesam, a D-Bus based "eXtEnsible +;; This package provides an interface to Xesam, a D-Bus based "eXtEnsible ;; Search And Metadata specification". It has been tested with ;; ;; xesam-glib 0.3.4, xesam-tools 0.6.1 @@ -32,7 +32,7 @@ ;; The precondition for this package is a D-Bus aware Emacs. This is ;; configured per default, when Emacs is built on a machine running ;; D-Bus. Furthermore, there must be at least one search engine -;; running, which support the Xesam interface. Beagle and strigi have +;; running, which supports the Xesam interface. Beagle and strigi have ;; been tested; tracker, pinot and recoll are also said to support ;; Xesam. You can check the existence of such a search engine by ;; @@ -380,20 +380,25 @@ ;; That is not the case now, so we set it ourselves. ;; Hopefully, this will change later. (setq hit-fields - (cond - ((string-equal vendor-id "Beagle") - '("xesam:mimeType" "xesam:url")) - ((string-equal vendor-id "Strigi") - '("xesam:author" "xesam:cc" "xesam:charset" - "xesam:contentType" "xesam:fileExtension" "xesam:id" - "xesam:lineCount" "xesam:links" "xesam:mimeType" "xesam:name" - "xesam:size" "xesam:sourceModified" "xesam:subject" - "xesam:to" "xesam:url")) - ((string-equal vendor-id "TrackerXesamSession") - '("xesam:relevancyRating" "xesam:url")) - ;; xesam-tools yahoo service. - (t '("xesam:contentModified" "xesam:mimeType" "xesam:summary" - "xesam:title" "xesam:url" "yahoo:displayUrl")))) + (case (intern vendor-id) + ('Beagle + '("xesam:mimeType" "xesam:url")) + ('Strigi + '("xesam:author" "xesam:cc" "xesam:charset" + "xesam:contentType" "xesam:fileExtension" + "xesam:id" "xesam:lineCount" "xesam:links" + "xesam:mimeType" "xesam:name" "xesam:size" + "xesam:sourceModified" "xesam:subject" "xesam:to" + "xesam:url")) + ('TrackerXesamSession + '("xesam:relevancyRating" "xesam:url")) + ('Debbugs + '("xesam:keyword" "xesam:owner" "xesam:title" + "xesam:url" "xesam:sourceModified" "xesam:mimeType" + "debbugs:key")) + ;; xesam-tools yahoo service. + (t '("xesam:contentModified" "xesam:mimeType" "xesam:summary" + "xesam:title" "xesam:url" "yahoo:displayUrl")))) (xesam-set-property engine "hit.fields" hit-fields) (xesam-set-property engine "hit.fields.extended" '("xesam:snippet")) @@ -560,6 +565,39 @@ (string-equal "text/html" (widget-get widget :xesam:mimeType))) (setcar widget 'url-link)) + ;; Debbugs hits shall be displayed. + ((and (widget-member widget :xesam:mimeType) + (string-equal "application/x-debbugs" + (widget-get widget :xesam:mimeType))) + (widget-put + widget :notify + '(lambda (widget &rest ignore) + ;; We toggle. If there are already children, we delete them. + (if (widget-get widget :children) + (widget-children-value-delete widget) + + ;; No children. Let's display the messages. + (widget-end-of-line) + ;; Get hit data. Loop over results. + (dolist (data + ;; "GetHitData" returns a list. But we have + ;; requested just one element only. + (car + (xesam-dbus-call-method + :session (car xesam-engine) xesam-path-search + xesam-interface-search "GetHitData" xesam-search + (list (widget-get widget :debbugs:key)) + '("debbugs:key")))) + (let ((child + (widget-create-child-and-convert + ;; The result is a variant. So we must apply `car'. + widget '(link) :format "\n%h" :doc (car data)))) + ;; Add child to parent's list. Needed, in order to be + ;; able to delete it next toggle. + (widget-put + widget + :children (cons child (widget-get widget :children))))))))) + ;; For local files, we will open the file as default action. ((string-match "file" (url-type (url-generic-parse-url @@ -654,6 +692,12 @@ (- (min (+ xesam-hits-per-page xesam-to) xesam-count) (length xesam-objects)))))) + ;; Add "DONE" widget. + (when (= xesam-current xesam-count) + (goto-char (point-max)) + (widget-create 'link :notify 'ignore "DONE") + (widget-beginning-of-line)) + ;; Return with save settings. (setq xesam-refreshing nil))))) @@ -762,6 +806,7 @@ ;; Return search id. search)) +;;;###autoload (defun xesam-search (engine query) "Perform an interactive search. ENGINE is the Xesam search engine to be applied, it must be one of the