<?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://permalink.gmane.org/gmane.emacs.ebib.user">
    <title>gmane.emacs.ebib.user</title>
    <link>http://permalink.gmane.org/gmane.emacs.ebib.user</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.ebib.user/229"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.ebib.user/228"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.ebib.user/227"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.ebib.user/226"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.ebib.user/225"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.ebib.user/224"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.ebib.user/223"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.ebib.user/222"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.ebib.user/221"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.ebib.user/220"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.ebib.user/219"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.ebib.user/218"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.ebib.user/217"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.ebib.user/216"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.ebib.user/215"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.ebib.user/214"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.ebib.user/213"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.ebib.user/212"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.ebib.user/211"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.ebib.user/210"/>
      </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.ebib.user/229">
    <title>(no subject)</title>
    <link>http://permalink.gmane.org/gmane.emacs.ebib.user/229</link>
    <description>&lt;pre&gt; http://offshoreonly.org/wp-content/themes/twentyeleven/ugoogle.html

------------------------------------------------------------------------------
Monitor your physical, virtual and cloud infrastructure from a single
web console. Get in-depth insight into apps, servers, databases, vmware,
SAP, cloud infrastructure, etc. Download 30-day Free Trial.
Pricing starts from $795 for 25 servers or applications!
http://p.sf.net/sfu/zoho_dev2dev_nov
&lt;/pre&gt;</description>
    <dc:creator>Jeffrey Spencer</dc:creator>
    <dc:date>2012-11-12T23:06:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.ebib.user/228">
    <title>Re: feature request: searching online databases</title>
    <link>http://permalink.gmane.org/gmane.emacs.ebib.user/228</link>
    <description>&lt;pre&gt;Hi Petro,

On Sat, Oct 06 2012, Petro &amp;lt;x.piter-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

I vaguely remember coming across it before... Thanks for pointing it
out.

I'll have to file it away for future reference, because I don't have too
much time to work on Ebib right now...

BTW, Petro, I think your last message to the list may have been rejected
by Sourceforge's spam filter. Might want to try resending it...

Best,

Joost



&lt;/pre&gt;</description>
    <dc:creator>Joost Kremers</dc:creator>
    <dc:date>2012-10-09T13:23:34</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.ebib.user/227">
    <title>Re: external search in ebib?</title>
    <link>http://permalink.gmane.org/gmane.emacs.ebib.user/227</link>
    <description>&lt;pre&gt;Hi Petro,
On Sat, Oct 06 2012, Petro Khoroshyy &amp;lt;x.piter-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

I think this function *should* do what you want:

====================

(defun pk-ebib-search-for-field-value (field search-string)
  "Search the Ebib databases for SEARCH-STRING.
Return the entry key of the first entry found to contain SEARCH-STRING in FIELD."
  (catch 'found
    (mapc #'(lambda (db)
              (maphash #'(lambda (key val)
                           (let ((field-value (gethash field val)))
                             (if (and field-value
                                      (string-match search-string field-value))
                                 (throw 'found key))))
                       (edb-database db)))
          ebib-databases)))

====================

Note that the first argument, FIELD, should be a symbol, so in your
case, you want to call the function in this way:

(pk-ebib-search-for-field-value 'file "Some_File.pdf")

Let me know if you run into any problems.

J.


&lt;/pre&gt;</description>
    <dc:creator>Joost Kremers</dc:creator>
    <dc:date>2012-10-08T12:55:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.ebib.user/226">
    <title>Re: feature request: searching online databases</title>
    <link>http://permalink.gmane.org/gmane.emacs.ebib.user/226</link>
    <description>&lt;pre&gt;There is a nice emacs interface for pubmed
http://pubmode.sourceforge.net/. 
I don't remember if it was mentioned before
Best.
Petro.


------------------------------------------------------------------------------
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
&lt;/pre&gt;</description>
    <dc:creator>Petro</dc:creator>
    <dc:date>2012-10-06T15:31:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.ebib.user/225">
    <title>external search in ebib?</title>
    <link>http://permalink.gmane.org/gmane.emacs.ebib.user/225</link>
    <description>&lt;pre&gt;Hi ebib list.
I try to develop a way to annotate my articles using doc-view, ebib and
org-mode  capture templates. I have little experience in elisp and 
shamelessly ask if someone can develop a function (of show the way for
it). The function should run from emacs search in a pre-loaded  ebib
database by one bibtex field (file in my case ) and return bibkey (or
other field) of corresponding record.  I hope it is not complex thing to
do.
Thanks.
Petro


------------------------------------------------------------------------------
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
&lt;/pre&gt;</description>
    <dc:creator>Petro Khoroshyy</dc:creator>
    <dc:date>2012-10-06T15:03:28</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.ebib.user/224">
    <title>Re: how to edit the key?</title>
    <link>http://permalink.gmane.org/gmane.emacs.ebib.user/224</link>
    <description>&lt;pre&gt;
Hello Joost, Mandar

------------------------------------------------------------
To:          "Discussion of issues relating to Ebib."
&amp;lt;ebib-users-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
Subject:      Re: [Ebib-users] how to edit the key?
Message-ID:  &amp;lt;87txvhjrqc.fsf-97jfqw80gc6171pxa8y+qA&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
From:         Joost Kremers &amp;lt;joostkremers-97jfqw80gc6171pxa8y+qA&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
Date:         Sun, 02 Sep 2012 00:36:11 +0200
------------------------------------------------------------


The reload command should report whether any databases
have changed or not.  That would be useful to know and
easy to compute.  It should also warn if recent user
edits will be overwritten and seek confirmation to
proceed.

---

The code to track the underlying BibTeX files is much
more complicated.  It will need:

  * to be multi-platform
  * deal with simultaneous editing and with conflicts
  * run periodically, say every minute

Even if 'ebib' offered this functionality, your
colleagues could well be &lt;/pre&gt;</description>
    <dc:creator>Robbie Morrison</dc:creator>
    <dc:date>2012-09-02T20:46:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.ebib.user/223">
    <title>Re: how to edit the key?</title>
    <link>http://permalink.gmane.org/gmane.emacs.ebib.user/223</link>
    <description>&lt;pre&gt;
Actually, with git, branching is cheap and easy. So the "normal" thing
to do is to just set up a new branch, work on whatever feature one wants
to implement, test it, and if it's finished, merge it into master.

BTW, with git, the usual way to contribute code is to clone the repo,
set up a new topic branch, make the change/addition, and then send the
maintainer a pull request. S/he can then pull in your topic branch and
examine the code.

Github makes this process a bit easier even, because you can simply fork
someone else's repository and create new branches in the forked repo.
And when you're ready to send a pull request, you just click a button on
the website.

If you have a github account, that would be my preferred way of
collaboration. Otherwise, you can send your patches to me, of course. :-)

J.


&lt;/pre&gt;</description>
    <dc:creator>Joost Kremers</dc:creator>
    <dc:date>2012-09-01T23:21:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.ebib.user/222">
    <title>Re: feature request: searching online databases</title>
    <link>http://permalink.gmane.org/gmane.emacs.ebib.user/222</link>
    <description>&lt;pre&gt;[database connectivity]

Yes, that's one reason why I was thinking about Zotero. Zotero actually
encourages external projects connecting to its server. There's an
official, published API: &amp;lt;http://www.zotero.org/support/dev/server_api&amp;gt;.

Furthermore, it's a well-established, open-source reference management
system, that connects to various online databases, so Ebib wouldn't have
to track all of those.

The main disadvantage is that I currently don't really have the time to
delve into all of that. Zotero is (unfortunately ;-) not written in
Elisp, nor is its API, so it would definitely require a bit of time to
get into it and to learn how it all works...

J.


&lt;/pre&gt;</description>
    <dc:creator>Joost Kremers</dc:creator>
    <dc:date>2012-09-01T23:09:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.ebib.user/221">
    <title>Re: how to edit the key?</title>
    <link>http://permalink.gmane.org/gmane.emacs.ebib.user/221</link>
    <description>&lt;pre&gt;
Mandar Mitra &amp;lt;mandar.mitra-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; writes:

Ah, that already goes a step further. ;-) Not just the ability to reload
the file, but also a warning when it has changed...

Reloading the file is easy to implement, that's just another command.

Checking for a file change would require keeping track of the file's
state when it's opened, or at least the time when it's opened and then
comparing that with the latest modification time when the user edits the
file.

It's doable, of course, but I'd have to think about the best way to
implement it. Actually, it would be very easy if Ebib would just load
the .bib file in a buffer and operate on that. Then Emacs would keep
track of changes. The thing is that Ebib doesn't do that... It opens the
.bib file, reads its contents and stores in in a hash table, and then
closes the buffer again.


If you come up with something, please share. :-)

Best,

Joost


&lt;/pre&gt;</description>
    <dc:creator>Joost Kremers</dc:creator>
    <dc:date>2012-09-01T22:36:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.ebib.user/220">
    <title>Re: feature request: searching online databases</title>
    <link>http://permalink.gmane.org/gmane.emacs.ebib.user/220</link>
    <description>&lt;pre&gt;
Hi Mandar

------------------------------------------------------------
To:          "Discussion of issues relating to Ebib."
&amp;lt;ebib-users-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
Subject:      Re: [Ebib-users] feature request: searching online databases
Message-ID:  &amp;lt;20120901124151.GC22243-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
From:         Mandar Mitra &amp;lt;mandar.mitra-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
Date:         Sat, 1 Sep 2012 18:11:51 +0530
------------------------------------------------------------


[snip]


I'm always happy to comment on code.

I'm also getting used to using 'git'.  You
need to be disciplined, else chaos rapidly
sets in.

Just for your info, I have some patches lined
up with Joost.

  http://sourceforge.net/mailarchive/forum.php?thread_name=aab361bcb113a2cdfd03237d0d840032.squirrel%40my.actrix.co.nz&amp;amp;forum_name=ebib-users

After that I was going to work on the union
database concept over the next weeks.

Robbie
---
Robbie Morrison
PhD student -- policy-oriented en&lt;/pre&gt;</description>
    <dc:creator>Robbie Morrison</dc:creator>
    <dc:date>2012-09-01T13:00:12</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.ebib.user/219">
    <title>Re: feature request: searching online databases</title>
    <link>http://permalink.gmane.org/gmane.emacs.ebib.user/219</link>
    <description>&lt;pre&gt;Robbie Morrison wrote (Sat, Sep 01, 2012 at 11:27:32PM +1200):


I've just cloned the git repository. Will get back with more questions
when I know my way around a little better.

Sadly, I'm tight on time too. I'll see what I can manage.

Best,
Mandar.

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
&lt;/pre&gt;</description>
    <dc:creator>Mandar Mitra</dc:creator>
    <dc:date>2012-09-01T12:41:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.ebib.user/218">
    <title>Re: feature request: searching online databases</title>
    <link>http://permalink.gmane.org/gmane.emacs.ebib.user/218</link>
    <description>&lt;pre&gt;
Hi Mandar

------------------------------------------------------------
To:           ebib users &amp;lt;ebib-users-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
Subject:      Re: [Ebib-users] feature request: searching online databases
Message-ID:  &amp;lt;20120901111652.GB22243-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
From:         Mandar Mitra &amp;lt;mandar.mitra-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
Date:         Sat, 1 Sep 2012 16:46:52 +0530
------------------------------------------------------------


---

Here is that conversation, starting with my original
comments (at &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;).  I trust Joost does not mind his
offline text being copied to a public forum.  Actually,
going offline was an accident -- I much prefer to
keep the list in the loop for these kind of discussions.

One other suggestion too: if you want to develop this
line, perhaps create a new file: 'ebib-harvest.el' or
'ebib-net.el' or some such.

cheers, Robbie


I note Zotero "ingests content".  :)

Okay, I can see how a bridge between Zotero and 'eb&lt;/pre&gt;</description>
    <dc:creator>Robbie Morrison</dc:creator>
    <dc:date>2012-09-01T11:27:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.ebib.user/217">
    <title>Re: feature request: searching online databases</title>
    <link>http://permalink.gmane.org/gmane.emacs.ebib.user/217</link>
    <description>&lt;pre&gt;

So I guess the upshot of your earlier discussion was that it would be
preferable to leverage Zotero? If their API remains stable, then ebib
would not have to worry about the various individual interfaces.

mandar.

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
&lt;/pre&gt;</description>
    <dc:creator>Mandar Mitra</dc:creator>
    <dc:date>2012-09-01T11:16:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.ebib.user/216">
    <title>Re: how to edit the key?</title>
    <link>http://permalink.gmane.org/gmane.emacs.ebib.user/216</link>
    <description>&lt;pre&gt;
Hi Mandar, Joost, and all

------------------------------------------------------------
To:          "Discussion of issues relating to Ebib."
&amp;lt;ebib-users-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
Subject:      Re: [Ebib-users] how to edit the key?
Message-ID:  &amp;lt;20120901102613.GJ9256-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
From:         Mandar Mitra &amp;lt;mandar.mitra-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
Date:         Sat, 1 Sep 2012 15:56:13 +0530
------------------------------------------------------------


Would having two 'git' branches help here: master
and dev (or development or alpha or unstable).


I am also interested in contributing.  I've used
many reference management systems over the years:
custom FoxPro, custom Access, EndNote,
bibtex-mode, bibtool, custom Awk (really!).  And
I find 'ebib' offers a nice mix of simplicity,
usability, and extensibility.  Full marks to
Joost.

Robbie
---
Robbie Morrison
PhD student -- policy-oriented energy system simulation
Technical University of Berli&lt;/pre&gt;</description>
    <dc:creator>Robbie Morrison</dc:creator>
    <dc:date>2012-09-01T10:42:07</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.ebib.user/215">
    <title>Re: how to edit the key?</title>
    <link>http://permalink.gmane.org/gmane.emacs.ebib.user/215</link>
    <description>&lt;pre&gt;Hi Joost,


Indeed it is. I should have looked more carefully. Section "Editing the
Database", subsection "Adding and Deleting Entries", para 3.



One use case where this might be useful is if I'm working with a
collaborator on a paper, and the files are shared (e.g. through
Dropbox). If a co-author changes a bib file, it would be nice to
be able to reload quickly. For ordinary tex files, emacs prompts me
whether I should revert-buffer. Something similar for ebib...

If I can put something quick and dirty together, will circulate for
feedback.

Looking forward to a long and fruitful relationship with ebib :),
mandar.

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
&lt;/pre&gt;</description>
    <dc:creator>Mandar Mitra</dc:creator>
    <dc:date>2012-09-01T10:26:13</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.ebib.user/214">
    <title>Re: feature request: searching online databases</title>
    <link>http://permalink.gmane.org/gmane.emacs.ebib.user/214</link>
    <description>&lt;pre&gt;
Hi all

------------------------------------------------------------
To:          "Discussion of issues relating to Ebib."
&amp;lt;ebib-users-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
Subject:      Re: [Ebib-users] feature request: searching online databases
Message-ID:  &amp;lt;874nnjcm0w.fsf-97jfqw80gc6171pxa8y+qA&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
From:         Joost Kremers &amp;lt;joostkremers-97jfqw80gc6171pxa8y+qA&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
Date:         Fri, 31 Aug 2012 13:56:47 +0200
------------------------------------------------------------


Actually I was involved in those recent discussions.

Two approaches were traversed:

 * interoperability with Zotero -- through their public
   APIs (what ever they are)

 * more-or-less what was indicated by Mandar --
   moreover, pybliographer (sourceforge.net), now
   inactive, had code to do this:

   http://pybliographer.org

  "search external databases like PubMed, Web of
   Science, Citeseer, and more"

   I never used pybliographer, although I registered
   for their mailing list five&lt;/pre&gt;</description>
    <dc:creator>Robbie Morrison</dc:creator>
    <dc:date>2012-08-31T12:32:13</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.ebib.user/213">
    <title>Re: feature request: searching online databases</title>
    <link>http://permalink.gmane.org/gmane.emacs.ebib.user/213</link>
    <description>&lt;pre&gt;Hi again, :-)

On Fri, Aug 31 2012, Mandar Mitra &amp;lt;mandar.mitra-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

Yes, I've been discussing this with someone else on the list... There
are no real plans to add such functionality, mainly because I don't have
much time to work on Ebib ATM. But it would definitely be a good thing
to have, so you do come up with some code, I'd probably add it to Ebib.


Well, Elisp is very well documented, so it shouldn't be too hard to
figure out. :-)


No problem, I feel the same way.

Best,

Joost


&lt;/pre&gt;</description>
    <dc:creator>Joost Kremers</dc:creator>
    <dc:date>2012-08-31T11:56:47</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.ebib.user/212">
    <title>Re: how to edit the key?</title>
    <link>http://permalink.gmane.org/gmane.emacs.ebib.user/212</link>
    <description>&lt;pre&gt;Hi Mandar,

On Fri, Aug 31 2012, Mandar Mitra &amp;lt;mandar.mitra-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

Thanks. :-)


`E' does this. I'm not sure if it's mentioned anywhere in the manual,
though, except in the list of available keys.


There's no automatic way. Quitting and restarting should be the quickest
way if you've set ebib-preload-bib-files, otherwise you can close the
database with `c' and open it again with `o'. You'll have to specify the
full path then, though, so that's not necessarily quicker.

Might be a good idea though, to add some way to reload a .bib file...

HTH

Joost


&lt;/pre&gt;</description>
    <dc:creator>Joost Kremers</dc:creator>
    <dc:date>2012-08-31T11:50:48</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.ebib.user/211">
    <title>feature request: searching online databases</title>
    <link>http://permalink.gmane.org/gmane.emacs.ebib.user/211</link>
    <description>&lt;pre&gt;Certain bibliography managers e.g. jabref (which I couldn't get to work)
promise a capability to search through online sources e.g. ACM Digital
Library, Citeseer, Google Scholar, etc. for bibliographic information.

Is there any plan to implement a similar feature in ebib? If not, do you
think it would be worth trying? I know some Emacs Lisp, but nothing
about its network programming aspect.

Thanks,
Mandar.

ps: Sorry for back-to-back messages from a new user. I thought it best
    not to mix topics.

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
&lt;/pre&gt;</description>
    <dc:creator>Mandar Mitra</dc:creator>
    <dc:date>2012-08-31T11:54:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.ebib.user/210">
    <title>how to edit the key?</title>
    <link>http://permalink.gmane.org/gmane.emacs.ebib.user/210</link>
    <description>&lt;pre&gt;Hi,

Recently discovered ebib, and it looks great! Since I'm a new user, I'm
still using a mix of ebib and editing the raw bib file. I'm wondering if
there's any way to edit the key itself via ebib. A quick look in the
manual didn't yield anything.

This leads me to the next question. Suppose I change the key (or make
some other edit) directly in the .bib file. Can I get ebib to reload 
the data without quitting and restarting?

Thanks,
mandar.

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
&lt;/pre&gt;</description>
    <dc:creator>Mandar Mitra</dc:creator>
    <dc:date>2012-08-31T11:45:18</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.ebib.user/209">
    <title>eight patches: UI, keywords, help, DOI open</title>
    <link>http://permalink.gmane.org/gmane.emacs.ebib.user/209</link>
    <description>&lt;pre&gt;
Hello Joost

Eight patches follow, youngest first.  It might be
easiest if I was able to push my local 'git' branch
onto the sourceforge repository??

  7783f3d Open DOI functionality.
  bde7600 Improved info quit behavior.
  bca334b Dedicated INFOPATH envar setting.
  e6210c3 Ebib help mapped to '?' key.
  ead611b Add user-specified default keywords text file.
  7c477a2 Add user-specified default keywords.
  45d03fb Fewer blank lines in log buffer.
  2554f4e Cleaner index buffer display.

Note also the TOFIX comments.

Robbie
---

commit 7783f3d3096f315e7a6d7113bddf2a3834e545fa
Author: Robbie Morrison &amp;lt;robbie-ETX6BUSDKN9IJsTUW+i+0g&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
Date:   Mon Aug 27 13:55:13 2012 +0200

    Open DOI functionality.

    DOI = digital object identifier.

    This commit allows users to browse DOI's directly.

    Add variables 'ebib-standard-doi-field' and
    'ebib-doi-url'.  Add function 'ebib-browse-doi'.
    Add menu entry and index buffer key map to "i".

    Much of the code mirrors 'ebib-browse-url'&lt;/pre&gt;</description>
    <dc:creator>Robbie Morrison</dc:creator>
    <dc:date>2012-08-27T12:22:32</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.emacs.ebib.user">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.emacs.ebib.user</link>
  </textinput>
</rdf:RDF>
