emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Patrick Drechsler <patrick@pdrechsler.de>
To: emacs-orgmode@gnu.org
Subject: Re: customizing C-l (inserting link with file:) for dual-boot
Date: Thu, 28 Sep 2006 15:29:11 +0200	[thread overview]
Message-ID: <efginc$hud$1@sea.gmane.org> (raw)
In-Reply-To: <7c818b27c8a04db1cd28fb4a1532a534@science.uva.nl>

Hi Carsten,

Carsten Dominik wrote:
> If you store file names relative to your home directory, then org-mode 
> should be able to use ~/....   filenames which would be general.  Is F: 
> your home directory?

I do not have my org-files in my home directory (neither on GNU/Linux 
nor on Windows). That is why the expansion of "~" does not seem to help 
here.

Just to clear things up a bit: "F:\" is not my home directory. My home 
directory under Cygwin is "C:\cygwin\home\home\pduser". "F:\" is a fat32 
partition I use to share my data between Windows and GNU/Linux. From 
GNU/Linux this partition is called "~/data/".

Tim O Callaghan was so kind to give me a tip off-list using the setenv 
variable. Since the paths I'm using are not the same in relation to my 
different home directories this might be a feasible solution.

My approach so far doesn't work (probably just my bad lisp):


-------------------------
(cond
   ((file-directory-p "C:/Programme")
    ; do Windows stuff:
    (setenv "DATA_HOME" (expand-file-name "F:/"))
    )
   ((file-directory-p "/home/patrick/")
    ; do GNU/Linux stuff
    (setenv "DATA_HOME" (expand-file-name "~/data"))
    )
)
(setq org-directory (concat (getenv "DATA_HOME") "/org-stuff"))
(setq org-remember-templates
        '((?t "* TODO %?\n  %i\n  %a" (concat (getenv "DATA_HOME")
"/org-stuff/TODO.org")
	(?j "* %U %?\n\n  %i\n  %a" (concat (getenv "DATA_HOME")
"/org-stuff/JOURNAL.org")))))
(setq org-agenda-files (quote ((concat (getenv "DATA_HOME")
"/org-stuff/computerstuff.org")
  			       (concat (getenv "DATA_HOME") "/org-stuff/heinzerling.org" )
  			       (concat (getenv "DATA_HOME") "/org-stuff/THESIS.org" )
  			       (concat (getenv "DATA_HOME") "/org-stuff/privat.org" )
  			       (concat (getenv "DATA_HOME") "/org-stuff/TODO.org" )
  			       (concat (getenv "DATA_HOME") "/org-stuff/JOURNAL.org"))))
-------------------------

I receive following error message when trying to invoke the agenda from
an org file:
-------------------------
org-check-agenda-file: Wrong type argument: stringp, (concat (getenv
"DATA_HOME") "/org-stuff/computerstuff.org")
-------------------------

TIA

Patrick

  reply	other threads:[~2006-09-28 13:30 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-09-27 22:00 customizing C-l (inserting link with file:) for dual-boot Patrick Drechsler
2006-09-28 12:10 ` Carsten Dominik
2006-09-28 13:29   ` Patrick Drechsler [this message]
2006-09-28 17:33     ` Carsten Dominik

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='efginc$hud$1@sea.gmane.org' \
    --to=patrick@pdrechsler.de \
    --cc=emacs-orgmode@gnu.org \
    /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).