<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.emacs.dvc.devel">
    <title>gmane.emacs.dvc.devel</title>
    <link>http://blog.gmane.org/gmane.emacs.dvc.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.dvc.devel/2897"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.dvc.devel/2896"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.dvc.devel/2895"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.dvc.devel/2894"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.dvc.devel/2893"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.dvc.devel/2892"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.dvc.devel/2891"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.dvc.devel/2890"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.dvc.devel/2890"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.dvc.devel/2889"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.dvc.devel/2888"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.dvc.devel/2887"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.dvc.devel/2886"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.dvc.devel/2885"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.dvc.devel/2884"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.dvc.devel/2883"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.dvc.devel/2882"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.dvc.devel/2881"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.dvc.devel/2880"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.dvc.devel/2879"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.dvc.devel/2897">
    <title>confirm delete unversioned files</title>
    <link>http://permalink.gmane.org/gmane.emacs.dvc.devel/2897</link>
    <description>&lt;pre&gt;Hi,

After accidentally hitting 'd' instead of 'a' one too many times, I made
a mod to ask the user to confirm deletion; it's at

  https://code.launchpad.net/~ryorke/dvc/confirm-delete-unversioned

AKA

  lp:~ryorke/dvc/confirm-delete-unversioned

It works fine with bzr; not sure if it needs to be tested with other
backends.

Regards,

Rory
&lt;/pre&gt;</description>
    <dc:creator>Rory Yorke</dc:creator>
    <dc:date>2012-04-06T12:26:12</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.dvc.devel/2896">
    <title>Re: How do I bind to xgit-diff-mode-map?</title>
    <link>http://permalink.gmane.org/gmane.emacs.dvc.devel/2896</link>
    <description>&lt;pre&gt;Oh - I always mess up with those quotes. Your answer is not correct though.
Here's a correction:

(require 'xgit-dvc)

after that all those

(define-key xgit-diff-mode-map (kbd "M-1") 'delete-other-windows)
(define-key xgit-diff-mode-map (kbd "M-2") 'split-window-vertically)
(define-key xgit-diff-mode-map (kbd "M-&amp;lt; at &amp;gt;") 'split-window-horizontally)
(define-key xgit-diff-mode-map (kbd "M-!") 'delete-window)

work fine.

Thank You for Your answer.

With great respect, Boris.

On Mon, Apr 2, 2012 at 9:58 AM, Stefan Reichör &amp;lt;stefan&amp;lt; at &amp;gt;xsteve.at&amp;gt; wrote:

_______________________________________________
Dvc-dev mailing list
Dvc-dev&amp;lt; at &amp;gt;gna.org
https://mail.gna.org/listinfo/dvc-dev
&lt;/pre&gt;</description>
    <dc:creator>Boris Kheyfets</dc:creator>
    <dc:date>2012-04-02T13:34:47</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.dvc.devel/2895">
    <title>Re: How do I bind to xgit-diff-mode-map?</title>
    <link>http://permalink.gmane.org/gmane.emacs.dvc.devel/2895</link>
    <description>&lt;pre&gt;

I think that quoting xgit-diff-mode-map is the problem. Try the following:

(define-key xgit-diff-mode-map (kbd "M-1") 'delete-other-windows)


Stefan.
&lt;/pre&gt;</description>
    <dc:creator>Stefan Reichör</dc:creator>
    <dc:date>2012-04-02T05:58:47</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.dvc.devel/2894">
    <title>How do I bind to xgit-diff-mode-map?</title>
    <link>http://permalink.gmane.org/gmane.emacs.dvc.devel/2894</link>
    <description>&lt;pre&gt;I have in my .emacs:

(require 'dvc-autoloads)

I try to bind delete-other-windows to M-1. I tried to do it:
(define-key 'xgit-diff-mode-map (kbd "M-1") 'delete-other-windows)
I got:
keymapp, xgit-diff-mode-map

I think the problem is - dvc is not loadede at start up. So I tired:
(eval-after-load "dvc-autoloads" '(define-key 'xgit-diff-mode-map (kbd
"M-1") 'delete-other-windows))

No help!
_______________________________________________
Dvc-dev mailing list
Dvc-dev&amp;lt; at &amp;gt;gna.org
https://mail.gna.org/listinfo/dvc-dev
&lt;/pre&gt;</description>
    <dc:creator>Boris Kheyfets</dc:creator>
    <dc:date>2012-03-23T11:10:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.dvc.devel/2893">
    <title>[commit] rev 589: xhg-gnus: xhg-gnus-import-patch: Improve errormessage</title>
    <link>http://permalink.gmane.org/gmane.emacs.dvc.devel/2893</link>
    <description>&lt;pre&gt;Committed revision 589 to http://bzr.xsteve.at/dvc/

xhg-gnus: xhg-gnus-import-patch: Improve error message
&lt;/pre&gt;</description>
    <dc:creator>Stefan Reichör</dc:creator>
    <dc:date>2012-02-17T21:49:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.dvc.devel/2892">
    <title>[commit] rev 588: Add new command: bzr-upload</title>
    <link>http://permalink.gmane.org/gmane.emacs.dvc.devel/2892</link>
    <description>&lt;pre&gt;Committed revision 588 to http://bzr.xsteve.at/dvc/

Add new command: bzr-upload
  
  Add support for the bzr upload plugin
&lt;/pre&gt;</description>
    <dc:creator>Stefan Reichör</dc:creator>
    <dc:date>2012-01-13T16:44:01</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.dvc.devel/2891">
    <title>[commit] rev 587: xhg-core: Implement xhg-prepare-environment toensure that LC_MESSAGES=C is used</title>
    <link>http://permalink.gmane.org/gmane.emacs.dvc.devel/2891</link>
    <description>&lt;pre&gt;Committed revision 587 to http://bzr.xsteve.at/dvc/

xhg-core: Implement xhg-prepare-environment to ensure that LC_MESSAGES=C is used
&lt;/pre&gt;</description>
    <dc:creator>Stefan Reichör</dc:creator>
    <dc:date>2012-01-10T21:46:49</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.dvc.devel/2890">
    <title>Re: [Bug 902513] [NEW] dvc-clone: Symbol's function definition isvoid: ffap-url-at-point</title>
    <link>http://permalink.gmane.org/gmane.emacs.dvc.devel/2890</link>
    <description>&lt;pre&gt;

Try:

(require 'ffap)

in your .emacs, it should solve the problem.

&lt;/pre&gt;</description>
    <dc:creator>Thierry Volpiatto</dc:creator>
    <dc:date>2011-12-13T06:36:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.dvc.devel/2890">
    <title>Re: [Bug 902513] [NEW] dvc-clone: Symbol's function definition isvoid: ffap-url-at-point</title>
    <link>http://permalink.gmane.org/gmane.emacs.dvc.devel/2890</link>
    <description>&lt;pre&gt;

Try:

(require 'ffap)

in your .emacs, it should solve the problem.

&lt;/pre&gt;</description>
    <dc:creator>Thierry Volpiatto</dc:creator>
    <dc:date>2011-12-13T06:36:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.dvc.devel/2889">
    <title>Re: [Bug 902513] [NEW] dvc-clone: Symbol's function definition isvoid: ffap-url-at-point</title>
    <link>http://permalink.gmane.org/gmane.emacs.dvc.devel/2889</link>
    <description>&lt;pre&gt;

I have pushed the change - see my commit email.


Stefan.
&lt;/pre&gt;</description>
    <dc:creator>Stefan Reichör</dc:creator>
    <dc:date>2011-12-15T21:42:01</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.dvc.devel/2888">
    <title>[commit] rev 586: dvc-unified.el: Require ffap</title>
    <link>http://permalink.gmane.org/gmane.emacs.dvc.devel/2888</link>
    <description>&lt;pre&gt;Committed revision 586 to http://bzr.xsteve.at/dvc/

dvc-unified.el: Require ffap
&lt;/pre&gt;</description>
    <dc:creator>Stefan Reichör</dc:creator>
    <dc:date>2011-12-15T21:40:48</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.dvc.devel/2887">
    <title>Re: [Bug 902513] [NEW] dvc-clone: Symbol's function definition isvoid: ffap-url-at-point</title>
    <link>http://permalink.gmane.org/gmane.emacs.dvc.devel/2887</link>
    <description>&lt;pre&gt;

When can we pull from you?  (what's the usual protocol?)

Joel

&lt;/pre&gt;</description>
    <dc:creator>Joel J. Adamson</dc:creator>
    <dc:date>2011-12-13T19:43:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.dvc.devel/2886">
    <title>Re: [Bug 902513] [NEW] dvc-clone: Symbol's function definition isvoid: ffap-url-at-point</title>
    <link>http://permalink.gmane.org/gmane.emacs.dvc.devel/2886</link>
    <description>&lt;pre&gt;

There is just a "(require 'ffap)" missing.
You can add it as workaround to your .emacs.

I will add it to dvc-unified.el.


Stefan.
&lt;/pre&gt;</description>
    <dc:creator>Stefan Reichör</dc:creator>
    <dc:date>2011-12-13T16:11:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.dvc.devel/2885">
    <title>Re: [Bug 902513] [NEW] dvc-clone: Symbol's function definition isvoid: ffap-url-at-point</title>
    <link>http://permalink.gmane.org/gmane.emacs.dvc.devel/2885</link>
    <description>&lt;pre&gt;

I confirm this on Fedora 16 i686 with GNU Emacs 23.3.1
(i386-redhat-linux-gnu, GTK+ Version 2.24.7) of 2011-11-23 on
x86-12.phx2.fedoraproject.org with revision number 584.

Joel
&lt;/pre&gt;</description>
    <dc:creator>Joel J. Adamson</dc:creator>
    <dc:date>2011-12-13T15:55:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.dvc.devel/2884">
    <title>Re: [Bug 902513] [NEW] dvc-clone: Symbol's function definition isvoid: ffap-url-at-point</title>
    <link>http://permalink.gmane.org/gmane.emacs.dvc.devel/2884</link>
    <description>&lt;pre&gt;
Straight away. Try:

emacs -f dvc-clone

to reproduce. I think it depends on whether you have run another dvc
command previously, because I have gotten dvc-clone to not display this
error message in the past.

&lt;/pre&gt;</description>
    <dc:creator>Robin Green</dc:creator>
    <dc:date>2011-12-13T05:53:30</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.dvc.devel/2883">
    <title>Re: [Bug 902513] [NEW] dvc-clone: Symbol's function definition isvoid: ffap-url-at-point</title>
    <link>http://permalink.gmane.org/gmane.emacs.dvc.devel/2883</link>
    <description>&lt;pre&gt;

At what point in the process?  Using which backend?  I did not get the
same behavior using xgit on a similar system (same Emacs, same Fedora).

Joel

&lt;/pre&gt;</description>
    <dc:creator>Joel J. Adamson</dc:creator>
    <dc:date>2011-12-12T15:12:58</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.dvc.devel/2882">
    <title>[Bug 902513] [NEW] dvc-clone: Symbol's function definition is void:ffap-url-at-point</title>
    <link>http://permalink.gmane.org/gmane.emacs.dvc.devel/2882</link>
    <description>&lt;pre&gt;Public bug reported:

When I do M-x dvc-clone, I get Symbol's function definition is void:
ffap-url-at-point

This is with emacs 23.3.1 on Fedora 16.

** Affects: dvc
     Importance: Undecided
         Status: New

&lt;/pre&gt;</description>
    <dc:creator>Robin Green</dc:creator>
    <dc:date>2011-12-10T13:08:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.dvc.devel/2881">
    <title>[Bug 901221] [NEW] dvc-revlist-diff fails with hg: parse error at 0:syntax error</title>
    <link>http://permalink.gmane.org/gmane.emacs.dvc.devel/2881</link>
    <description>&lt;pre&gt;Public bug reported:

I have a hgsubversion repository (hg with the hgsubversion plugin) with
2 revisions, 0 and 1. I viewed the revlist and pressed = on the first
character of revision 1. I got:

hg: parse error at 0: syntax error

and in *Messages*:

dvc-default-error-function: `hg diff -r /home/robin/hg/scales-
xml-0.2.1/:-1 -r /home/robin/hg/scales-xml-0.2.1/' failed with code 255

** Affects: dvc
     Importance: Undecided
         Status: New

&lt;/pre&gt;</description>
    <dc:creator>Robin Green</dc:creator>
    <dc:date>2011-12-07T13:26:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.dvc.devel/2880">
    <title>[Bug 901221] Re: dvc-revlist-diff fails with hg: parse error at 0:syntax error</title>
    <link>http://permalink.gmane.org/gmane.emacs.dvc.devel/2880</link>
    <description>&lt;pre&gt;Workaround:

M-x xhg-log-toggle-diff-for-changeset displays the diff inline in the
revlist.

&lt;/pre&gt;</description>
    <dc:creator>Robin Green</dc:creator>
    <dc:date>2011-12-07T13:27:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.dvc.devel/2879">
    <title>Re: [BUG/FEATURE] dvc-find-file-hook is slow!</title>
    <link>http://permalink.gmane.org/gmane.emacs.dvc.devel/2879</link>
    <description>&lt;pre&gt;

Please re-read the last line above.


What back-ends do you have configured in dvc-registered-backends?

dvc-find-file-hook calls dvc-current-active-dvc, which will search thru
backends in dvc-registered-backends until it finds the one for the
current file.

What OS are you on?

Where is dvc-core on the disk?

All of the above can heavily influence speed.


Looking inside dvc-find-file-hook:

Is dvc-current-active-dvc slow, or just dvc-file-has-conflict-p?

&lt;/pre&gt;</description>
    <dc:creator>Stephen Leake</dc:creator>
    <dc:date>2011-10-12T09:57:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.dvc.devel/2878">
    <title>[BUG/FEATURE] dvc-find-file-hook is slow!</title>
    <link>http://permalink.gmane.org/gmane.emacs.dvc.devel/2878</link>
    <description>&lt;pre&gt;

Please change the Subject header to a concise bug description or feature request.
In this report, remember to cover the basics, that is, what you 
expected to happen and what in fact did happen.
Please remove these instructions from your message.

Title says all.  It takes me 4 seconds just to do (find-library 'dvc-core)

Emacs  : GNU Emacs 23.3.1 (x86_64-apple-darwin10.8.0, Carbon Version 1.6.0 AppKit 1038.36)
 of 2011-09-04 on pluto.local
Package: Dvc 0

current state:
==============
(setq
 emacs-version "23.3.1"
 dvc-version "0"
 dvc-command-version "git version 1.7.6.1"
 baz-executable "baz"
 tla-apply-patch-mapping nil
 tla-arch-branch 'none
 tla-archive-list-mode-hook nil
 tla-bookmarks-cleanup-dont-prompt nil
 tla-bookmarks-file-name "bookmarks.el"
 tla-bookmarks-mode-hook nil
 tla-branch-list-mode-hook nil
 tla-button-revision-fn 'tla-revlog-any
 tla-category-list-mode-hook nil
 tla-changes-recursive t
 tla-commit-check-log-buffer-functions '(tla-commit-check-empty-headers tla-commit-check-empty-line
                                         tla-commit-check-missing-space)
 tla-commit-done-hook nil
 tla-commit-fix-missing-space t
 tla-commit-headers-allowed-to-be-empty "^\\(Keywords\\)$"
 tla-description-format '(patch-id "\n  " summary "\n  Located at: " location "\n")
 tla-dont-hyperlink-changelog nil
 tla-executable "tla"
 tla-follow-symlinks 'tree
 tla-follow-symlinks-mode 'follow
 tla-format-line-function nil
 tla-generate-line-function nil
 tla-install-command-help-system t
 tla-inventory-display-backup t
 tla-inventory-display-junk t
 tla-inventory-display-precious t
 tla-inventory-display-source t
 tla-inventory-display-tree t
 tla-inventory-display-unrecognized t
 tla-inventory-file-mode-hook nil
 tla-inventory-mode-hook nil
 tla-log-edit-keywords '("bugfix" "docfix" "warnfix" "linting" "newfeature" "merge" "update" "rename" "delete"
                         "newfile")
 tla-log-edit-mode-hook nil
 tla-log-library "~/.arch-log-library/"
 tla-log-library-greedy t
 tla-logs-mode-hook nil
 tla-mail-notification-destination nil
 tla-make-archive-hook nil
 tla-make-branch-hook nil
 tla-make-category-hook nil
 tla-make-log-function 'tla-default-make-log-function
 tla-make-version-hook nil
 tla-name-read-error-hook '(tla--name-read-insert-info-at-point-final)
 tla-name-read-final-hook '(tla--name-read-insert-info-at-point-final)
 tla-name-read-init-hook '(tla--name-read-insert-bookmark-init tla--name-read-insert-partner-init
                           tla--name-read-insert-info-at-point-init)
 tla-non-recursive-inventory t
 tla-patch-sent-action 'keep-tarball
 tla-revision-list-mode-hook nil
 tla-revisions-shows-library t
 tla-revisions-shows-merged-by t
 tla-revisions-shows-merges nil
 tla-revlog-mode-hook nil
 tla-send-comments-format "Your patch %c--%b--%v--%r (%t)"
 tla-send-comments-width 25
 tla-show-ancestor nil
 tla-strict-commits nil
 tla-submit-patch-mapping '(((nil "xtla" nil nil nil) ("xtla-el-dev&amp;lt; at &amp;gt;gna.org" "xtla")))
 tla-switch-to-changes-buffer nil
 tla-tag-does-cacherev 'ask
 tla-tag-function 'tla-tag-uuid
 tla-three-way-merge t
 tla-update-recursive t
 tla-update-strategy 'merge
 tla-use-arrow-keys-for-navigation nil
 tla-use-skip-present-option nil
 tla-version-list-mode-hook nil
 tla-version-to-name-function nil
 xgit-executable "git"
 xgit-git-dir-mapping nil
 xgit-log-max-count 400
 xgit-log-since nil
 xgit-show-filter-filename-func nil
 xgit-use-index 'ask
 features '(gnus-util compile+ compile comint compile- message format-spec rfc822 mml mml-sec mm-decode mm-bodies
            mm-encode mail-parse rfc2231 rfc2047 rfc2045 ietf-drums mm-util mail-prsvr mailabbrev mail-utils
            gmm-utils mailheader reporter dvc-bug debug git-modeline git-emacs cus-edit rect tla smerge-mode
            time-date diff sendmail uniquify bzr-core tla-core pp add-log diff-mode xdarcs-core xgit-core xhg-core
            xmtn-minimal gnus-dired pp-c-l zenburn page-ext disp-table ffap system-type-darwin-theme xml
            dot-passwd-el \.loaddefs ewoc ring gnus-load time-stamp vc-git vc vc-dispatcher ediff-merg ediff-diff
            ediff-wind ediff-help ediff-util ediff-mult ediff-init ediff edmacro kmacro assoc thingatpt noutline
            outline company-autoloads weblogger-autoloads xml-rpc-autoloads color-theme wid-edit byte-code-cache
            byte-opt warnings info initsplit advice advice-preload find-func el-get help-mode easymenu view
            autoload help-fns bytecomp byte-compile cl cl-19 dired-x dired-aux dired regexp-opt paren server ido
            easy-mmode autorevert time delsel cus-start cus-load elhome tooltip ediff-hook vc-hooks lisp-float-type
            mwheel mac-win tool-bar dnd fontset image fringe lisp-mode register page menu-bar rfn-eshadow timer
            select scroll-bar mldrag mouse jit-lock font-lock syntax facemenu font-core frame cham georgian
            utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese hebrew greek romanian slovak
            czech european ethiopic indian cyrillic chinese case-table epa-hook jka-cmpr-hook help simple abbrev
            loaddefs button minibuffer faces cus-face files text-properties overlay md5 base64 format env
            code-pages mule custom widget hashtable-print-readable backquote mac multi-tty make-network-process
            emacs)
 )
&lt;/pre&gt;</description>
    <dc:creator>Dave Abrahams</dc:creator>
    <dc:date>2011-09-11T19:24:52</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.emacs.dvc.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.emacs.dvc.devel</link>
  </textinput>
</rdf:RDF>

