emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Andreas Kiermeier <andreas.kiermeier@gmail.com>
To: John Kitchin <jkitchin@andrew.cmu.edu>
Cc: "emacs-orgmode@gnu.org" <emacs-orgmode@gnu.org>
Subject: Re: Problem with org-ref
Date: Sat, 26 Dec 2015 15:22:05 +1030	[thread overview]
Message-ID: <CAN7vk5QoWRnd1k2+Ozquyx0GL=D15d8ng6kdM7OrLm9r8=_6tA@mail.gmail.com> (raw)
In-Reply-To: <CAJ51ETrKyxtqVCAQYJoCXKn8ic6ObTMLhSsbVDuchD2FFP0P9w@mail.gmail.com>

[-- Attachment #1: Type: text/plain, Size: 5979 bytes --]

Magic!
Thanks a lot, John.

On 26 December 2015 at 12:06, John Kitchin <jkitchin@andrew.cmu.edu> wrote:

> That sounds ok. I pushed a change that sort of does what you ask for. If
> the "calculated" pdf doesn't exist then you should get prompted for a pdf,
> and pressing enter for the default (no pdf) should not add a pdf link.
>
> John
>
> -----------------------------------
> Professor John Kitchin
> Doherty Hall A207F
> Department of Chemical Engineering
> Carnegie Mellon University
> Pittsburgh, PA 15213
> 412-268-7803
> @johnkitchin
> http://kitchingroup.cheme.cmu.edu
>
>
> On Fri, Dec 25, 2015 at 7:03 PM, Andreas Kiermeier <
> andreas.kiermeier@gmail.com> wrote:
>
>> Thanks John.
>>
>> Yes, that was the case, because I had no intention of downloading the
>> pdfs. So I had set
>>
>> (setq doi-utils-download-pdf nil)
>>
>> and left org-ref-pdf-directory nil. Setting it to a valid directory gets
>> rid of the error. Thanks.
>>
>> I would find it useful (given that I've disabled auto-download) if I was
>> prompted for the location of the pdf. That way I could either (a) provide a
>> link to the pdf wherever I've stored it, or (b) not provide a link (yet).
>> Just a thought.
>>
>> Thanks again for all your help.
>>
>> Andreas
>>
>> On 26 December 2015 at 00:37, John Kitchin <jkitchin@andrew.cmu.edu>
>> wrote:
>>
>>> What about the value of org-ref-pdf-directory. This seems to be where
>>> your error is coming from. Your debugger info suggests it is set to nil.
>>>
>>> Debugger entered--Lisp error: (wrong-type-argument stringp nil)
>>>   file-name-as-directory(nil)
>>>   org-ref-open-bibtex-notes()
>>>   doi-utils-insert-bibtex-entry-fr
>>>
>>> John
>>>
>>> -----------------------------------
>>> Professor John Kitchin
>>> Doherty Hall A207F
>>> Department of Chemical Engineering
>>> Carnegie Mellon University
>>> Pittsburgh, PA 15213
>>> 412-268-7803
>>> @johnkitchin
>>> http://kitchingroup.cheme.cmu.edu
>>>
>>>
>>> On Thu, Dec 24, 2015 at 10:16 PM, Andreas Kiermeier <
>>> andreas.kiermeier@gmail.com> wrote:
>>>
>>>> I've set the HOME environment variable to
>>>> "C:/Users/andre_000/Documents" and hence need the .. to get into the
>>>> Dropbox folder.
>>>>
>>>> Executing (find-file org-ref-bibliography-notes) does find and open
>>>> the correct notes file.
>>>>
>>>> Using an absolute path, as in:
>>>>
>>>> (setq org-ref-bibliography-notes
>>>> "C:/Users/andre_000/Dropbox/_biblio/org-ref/bibnotes.org"
>>>>       org-ref-default-bibliography
>>>> '("C:/Users/andre_000/Dropbox/_biblio/refs.bib"))
>>>>
>>>> results in the same error.
>>>>
>>>> After dropping a PDF file into the .bib file I end up with the
>>>> following additional entry (for example) in the bibnotes.org file. I
>>>> thought I'd include it just to ensure that nothing gets chopped of - this
>>>> entry correctly reflect the PDF.
>>>>
>>>> ** TODO 2007 - Taenia Saginata in Europe
>>>>  :PROPERTIES:
>>>>   :Custom_ID: dorny_2007
>>>>   :AUTHOR: Dorny \& Praet
>>>>   :JOURNAL: Veterinary Parasitology
>>>>   :YEAR: 2007
>>>>   :VOLUME: 149
>>>>   :PAGES: 22-24
>>>>   :DOI: 10.1016/j.vetpar.2007.07.004
>>>>   :URL: http://dx.doi.org/10.1016/j.vetpar.2007.07.004
>>>>  :END:
>>>>
>>>> Does the notes file need a specific set up in terms of headers etc?
>>>>
>>>>
>>>> --
>>>> Dr Andreas Kiermeier | Director
>>>> Statistical Process Improvement Consulting and Training Pty Ltd
>>>> Mbl: +61 (4)23 028 565 | Email: andreas.kiermeier@gmail.com
>>>> Australia
>>>>
>>>> On 25 December 2015 at 13:17, John Kitchin <jkitchin@andrew.cmu.edu>
>>>> wrote:
>>>>
>>>>> That is an odd looking path. On Mac that would expand to something like
>>>>>
>>>>> /Users/Dropbox/_biblio/org-ref/bibnotes.org
>>>>>
>>>>> and on linux
>>>>>
>>>>> /home/Dropbox/_biblio/org-ref/bibnotes.org
>>>>>
>>>>> usually you should not have permission for that, and neither make sense
>>>>> to me.
>>>>>
>>>>> Does (file-exists-p org-ref-bibliography-notes) return true?
>>>>>
>>>>> or alternatively does (find-file org-ref-bibliography-notes) actually
>>>>> open a writable file?
>>>>>
>>>>> I would think this is what you want (unless you have some unusual setup
>>>>> and permissions):
>>>>>
>>>>> (setq org-ref-bibliography-notes "~/Dropbox/_biblio/org-ref/
>>>>> bibnotes.org"
>>>>>        org-ref-default-bibliography '("~/Dropbox/_biblio/refs.bib"))
>>>>>
>>>>> i.e. no .. in the path.
>>>>>
>>>>> Andreas Kiermeier writes:
>>>>>
>>>>> > Hi John,
>>>>> >
>>>>> > I've set it at follows (based on your setup) in my init.el file:
>>>>> >
>>>>> > (setq org-ref-bibliography-notes "~/../Dropbox/_biblio/org-ref/
>>>>> bibnotes.org"
>>>>> >       org-ref-default-bibliography
>>>>> '("~/../Dropbox/_biblio/refs.bib"))
>>>>> >
>>>>> > So, non-nil.
>>>>> >
>>>>> > Andreas
>>>>> >
>>>>> > On 25 December 2015 at 00:45, John Kitchin <jkitchin@andrew.cmu.edu>
>>>>> wrote:
>>>>> >
>>>>> >>
>>>>> >> On Thu, Dec 24, 2015 at 1:04 AM, Andreas Kiermeier <
>>>>> >> andreas.kiermeier@gmail.com> wrote:
>>>>> >>
>>>>> >>> org-ref-open-bibtex-notes()
>>>>> >>
>>>>> >>
>>>>> >> That looks like a different error that occurs in
>>>>> org-ref-open-bibtex-notes().
>>>>> >> Up to that point everything looks normal.
>>>>> >>
>>>>> >> What do you have your org-ref-bibliography-notes variable set to?
>>>>> The
>>>>> >> default value is nil which would cause that error.
>>>>> >>
>>>>> >>
>>>>> >>
>>>>> >> John
>>>>> >>
>>>>> >> -----------------------------------
>>>>> >> Professor John Kitchin
>>>>> >> Doherty Hall A207F
>>>>> >> Department of Chemical Engineering
>>>>> >> Carnegie Mellon University
>>>>> >> Pittsburgh, PA 15213
>>>>> >> 412-268-7803
>>>>> >> @johnkitchin
>>>>> >> http://kitchingroup.cheme.cmu.edu
>>>>> >>
>>>>> >>
>>>>>
>>>>> --
>>>>> Professor John Kitchin
>>>>> Doherty Hall A207F
>>>>> Department of Chemical Engineering
>>>>> Carnegie Mellon University
>>>>> Pittsburgh, PA 15213
>>>>> 412-268-7803
>>>>> @johnkitchin
>>>>> http://kitchingroup.cheme.cmu.edu
>>>>>
>>>>
>>>>
>>>
>>
>

[-- Attachment #2: Type: text/html, Size: 11675 bytes --]

  reply	other threads:[~2015-12-26  4:52 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-12-23 21:22 Problem with org-ref marvin doyley
2015-12-23 21:30 ` John Kitchin
2015-12-23 21:44   ` marvin doyley
2015-12-23 22:16   ` marvin doyley
2015-12-23 23:56   ` Andreas Kiermeier
2015-12-24  1:33     ` John Kitchin
2015-12-24  6:04       ` Andreas Kiermeier
2015-12-24 14:15         ` John Kitchin
2015-12-25  1:17           ` Andreas Kiermeier
2015-12-25  2:47             ` John Kitchin
2015-12-25  3:16               ` Andreas Kiermeier
2015-12-25 14:07                 ` John Kitchin
2015-12-26  0:03                   ` Andreas Kiermeier
2015-12-26  1:36                     ` John Kitchin
2015-12-26  4:52                       ` Andreas Kiermeier [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-07-20 13:09 problem " Johannes Brauer
2020-07-20 13:49 ` John Kitchin
2021-03-08 15:20 Problem " Marvin M. Doyley
2021-03-10  4:49 ` Kyle Meyer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAN7vk5QoWRnd1k2+Ozquyx0GL=D15d8ng6kdM7OrLm9r8=_6tA@mail.gmail.com' \
    --to=andreas.kiermeier@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=jkitchin@andrew.cmu.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).