Send Ebib-users mailing list submissions to
[email protected]
To subscribe or unsubscribe via the World Wide Web, visit
https://lists.sourceforge.net/lists/listinfo/ebib-users
or, via email, send a message with subject or body 'help' to
[email protected]
You can reach the person managing the list at
[email protected]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Ebib-users digest..."
Today's Topics:
1. external search in ebib? (Petro Khoroshyy)
2. Re: feature request: searching online databases (Petro)
3. Re: external search in ebib? (Joost Kremers)
4. Re: feature request: searching online databases (Joost Kremers)
5. (no subject) (Jeffrey Spencer)
6. feature request: speedbar support (Suraev)
7. Re: feature request: speedbar support (Joost Kremers)
8. Re: feature request: speedbar support (Suraev)
----------------------------------------------------------------------
Message: 1
Date: Sat, 06 Oct 2012 17:03:28 +0200
From: Petro Khoroshyy <[email protected]>
Subject: [Ebib-users] external search in ebib?
To: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset=us-ascii
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
------------------------------
Message: 2
Date: Sat, 06 Oct 2012 17:31:26 +0200
From: Petro <[email protected]>
Subject: Re: [Ebib-users] feature request: searching online databases
To: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset=us-ascii
There is a nice emacs interface for pubmed
http://pubmode.sourceforge.net/.
I don't remember if it was mentioned before
Best.
Petro.
------------------------------
Message: 3
Date: Mon, 08 Oct 2012 14:55:11 +0200
From: Joost Kremers <[email protected]>
Subject: Re: [Ebib-users] external search in ebib?
To: "Discussion of issues relating to Ebib."
<[email protected]>
Message-ID: <[email protected]>
Content-Type: text/plain
Hi Petro,
On Sat, Oct 06 2012, Petro Khoroshyy <[email protected]> wrote:
> 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
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.
--
Joost Kremers
Life has its moments
------------------------------
Message: 4
Date: Tue, 09 Oct 2012 15:23:34 +0200
From: Joost Kremers <[email protected]>
Subject: Re: [Ebib-users] feature request: searching online databases
To: "Discussion of issues relating to Ebib."
<[email protected]>
Message-ID: <[email protected]>
Content-Type: text/plain
Hi Petro,
On Sat, Oct 06 2012, Petro <[email protected]> wrote:
> There is a nice emacs interface for pubmed
> http://pubmode.sourceforge.net/.
> I don't remember if it was mentioned before
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
--
Joost Kremers
Life has its moments
------------------------------
Message: 5
Date: Tue, 13 Nov 2012 10:06:00 +1100
From: Jeffrey Spencer <[email protected]>
Subject: [Ebib-users] (no subject)
To: [email protected], [email protected],
[email protected], [email protected],
[email protected]
Message-ID:
<CALmFPZ2rdL3qnLS=aqdwicxf_ppvmj6swbngynq+oyx6otx...@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1
http://offshoreonly.org/wp-content/themes/twentyeleven/ugoogle.html
------------------------------
Message: 6
Date: Wed, 17 Jul 2013 19:10:00 +0200
From: Suraev <[email protected]>
Subject: [Ebib-users] feature request: speedbar support
To: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset=UTF-8
Hi all.
The very first thing I did after trying ebib is changing to vertical split.
With such
layout it's pretty natural to think about speedbar support - hence this feature
request :)
Would be great if ebib could be configured via customize to place list of bib
entries
into speedbar while having selected entry in the main frame.
If there is a way to integrate it with latex editing i. e. bib entries in
speedbar
and .tex in main frame it would be great too.
cheers,
Max.
------------------------------
Message: 7
Date: Wed, 17 Jul 2013 21:47:34 +0200
From: Joost Kremers <[email protected]>
Subject: Re: [Ebib-users] feature request: speedbar support
To: "Discussion of issues relating to Ebib."
<[email protected]>
Message-ID: <[email protected]>
Content-Type: text/plain
Hi,
Since I don't use speedbar myself, I'd have to have a better description
of what you'd expect/want in speedbar support for Ebib. IIUC a speedbar
frame is somehow linked to the current buffer, so I guess Ebib should
specify what appears in the speedbar frame when any of the various Ebib
buffers (index, entry, strings, multiline) is active.
As for speedbar + .tex files, it would have to be done in such a way as
not to interfere with whatever speedbar support Emacs' (la)tex mode and
AUCTeX provide (if any). This of course can all be done, but it'll take
some work, especially given the fact that I don't use speedbar... :-)
I won't have any time for this the next few weeks, and only little time
in the months after that, so I'll look into it but I can't promise
anything. Of course, I'd be happy to accept patches. :-)
Best,
Joost
On Wed, Jul 17 2013, [email protected] wrote:
> Hi all.
>
> The very first thing I did after trying ebib is changing to vertical split.
> With such
> layout it's pretty natural to think about speedbar support - hence this
> feature
> request :)
>
> Would be great if ebib could be configured via customize to place list of bib
> entries
> into speedbar while having selected entry in the main frame.
>
> If there is a way to integrate it with latex editing i. e. bib entries in
> speedbar
> and .tex in main frame it would be great too.
>
> cheers,
> Max.
>
> ------------------------------------------------------------------------------
> See everything from the browser to the database with AppDynamics
> Get end-to-end visibility with application monitoring from AppDynamics
> Isolate bottlenecks and diagnose root cause in seconds.
> Start your free trial of AppDynamics Pro today!
> http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk
> _______________________________________________
> Ebib-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/ebib-users
--
Joost Kremers
Life has its moments
------------------------------
Message: 8
Date: Thu, 18 Jul 2013 16:41:03 +0200
From: Suraev <[email protected]>
Subject: Re: [Ebib-users] feature request: speedbar support
To: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset=UTF-8
17.07.2013 21:47, Joost Kremers ?????:
> Hi,
>
> Since I don't use speedbar myself, I'd have to have a better description
> of what you'd expect/want in speedbar support for Ebib. IIUC a speedbar
> frame is somehow linked to the current buffer, so I guess Ebib should
> specify what appears in the speedbar frame when any of the various Ebib
> buffers (index, entry, strings, multiline) is active.
>
It think speedbar can replace index window (the one with list of all bib
entries)
entirely and used to quickly navigate between entries regardless of what is in
the
main window.
> As for speedbar + .tex files, it would have to be done in such a way as
> not to interfere with whatever speedbar support Emacs' (la)tex mode and
> AUCTeX provide (if any). This of course can all be done, but it'll take
> some work, especially given the fact that I don't use speedbar... :-)
>
Give it a try - you might get used to it ;-)
> I won't have any time for this the next few weeks, and only little time
> in the months after that, so I'll look into it but I can't promise
> anything. Of course, I'd be happy to accept patches. :-)
>
Well, my lisp skills are pretty-much nonexistent hence the feature request :)
cheers,
Max.
------------------------------
------------------------------------------------------------------------------
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk
------------------------------
_______________________________________________
Ebib-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ebib-users
End of Ebib-users Digest, Vol 20, Issue 1
*****************************************