Charles Cave | 1 Jan 2008 11:08
Picon

Remember string prompt won't accept spaces %^{Prompt text}

I have set up Remember with org-mode and found that the prompt
directive doesn't allow spaces in the input.

This is the directive (to capture Internet banking
receipts)  .....

  '(("Receipt"   ?r "** %^{BriefDesc} %U %^g\n%?" "~/GTD/GTD/finances.org")

After I issue the command C-c r  and choose r (for Receipt)
I see the new window for Remember filled in like this:

**  [2008-01-01 Tue 21:02] %^g
%?

And in the minibuffer, a prompt:

BriefDesc:
As soon as I type a space I get a message [No Match].

Why can't I enter a space?   I am running org-mode 5.17a
on GNU Emacs 22.1.1 on Windows XP.

Thanks
Charles

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode <at> gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
(Continue reading)

Adam Spiers | 1 Jan 2008 15:18
Favicon

lognotestate for some keywords when set globally not per-buffer?

Happy New Year everyone!  Hope you had fun celebrating and are ready
for another 12 months of org-fuelled efficiency ;-)

I just switched from per-buffer settings:

#+SEQ_TODO: NEXT(n) STARTED(>) | DONE(d)
#+SEQ_TODO: PROJECT(p) | PROJDONE(P)
#+SEQ_TODO: WAITING(w <at> ) CHASE(C <at> ) |
#+SEQ_TODO: SOMEDAY(s) MAYBE(m) | CANCELLED(c <at> )

to a global setting in org-todo-keywords:

((sequence "NEXT(n)" "STARTED(>)" "|" "DONE(d)")
 (sequence "PROJECT(p)" "PROJDONE(P)")
 (sequence "WAITING(w <at> )" "CHASE(C <at> )" "|")
 (sequence "SOMEDAY(s)" "MAYBE(m)" "|" "CANCELLED(c <at> )"))

However it now seems to ignore the  <at>  symbols and never prompts for a
note on state change.  Is that a bug, or am I configuring it wrong?

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode <at> gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Adam Spiers | 1 Jan 2008 16:33
Favicon

Re: Remember string prompt won't accept spaces %^{Prompt text}

On Tue, Jan 01, 2008 at 09:08:06PM +1100, Charles Cave wrote:
> I have set up Remember with org-mode and found that the prompt
> directive doesn't allow spaces in the input.

[snipped]

> Why can't I enter a space?   I am running org-mode 5.17a
> on GNU Emacs 22.1.1 on Windows XP.

It's a bug.  I mentioned it on Sunday but buried it in a hard-to-spot
place at the bottom of an old thread ;-)

  http://thread.gmane.org/gmane.emacs.orgmode/4804/focus=4805

I think this is the correct fix:

http://www.adamspiers.org/cgi-bin/hg.cgi/org-atlantic/rev/99efde5d3130

# HG changeset patch
# User Adam Spiers <orgmode <at> adamspiers.org>
# Date 1199201427 0
# Node ID 99efde5d31300b5e21ef901af84d6b9441b3c3ff
# Parent  eeeab6022608fcb4348ddadcd595b20b3a524ecc
SPC should self-insert in remember template prompts

diff -r eeeab6022608 -r 99efde5d3130 org.el
--- a/org.el	Mon Dec 31 13:51:24 2007 +0000
+++ b/org.el	Tue Jan 01 15:30:27 2008 +0000
 <at>  <at>  -13385,7 +13385,7  <at>  <at>  to be run from that hook to function pro
 				   (member char '("u" "U"))
(Continue reading)

Harald Weis | 1 Jan 2008 18:32
Picon
Favicon

Sorting problem

Happy New Year All,

Sorting does not seem to work. It worked once when I tested it in the
past. I don't remember the exact circumstances.

Now it doesn't work with org-5.16b or org-5.17a, at least not with
emacs21 which I use because of the remember.el port of FreeBSD.

The error message is invariably the following:

Wrong number of arguments: etc

Do I need emacs22 ?

BTW, when running the upgrade-org script, make produces error messages
(about 80 lines).

Apart from this org mode works fine.

Harald
--

-- 
FreeBSD 6.2-RELEASE-p2 #0: Tue Feb 27 22:56:09 UTC 2007

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode <at> gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

(Continue reading)

William Case | 1 Jan 2008 19:45
Favicon

FUD on my part re: downloading revisions?

Hi;

I have tried to amend Pete Phillips' download script so that it works
for me but I have some Fears, Uncertainties and Doubts about whether I
got it right or not.  Here are my changes and notes:

#!/bin/bash

# script to automate pulling the latest org from Carsten's site
# PJP pete <at> smtl.co.uk
# $Revision: 1.1 $
# $Log: update-org.sh,v $
# Revision 1.1  2007/04/26 05:53:54  pete
# Initial revision

#####
# emacs 22.1 on Fedora 8
#####

# directory where the org directory is located
DIR=$HOME/Docs/Work/emacs
ORGDIR=$DIR/org
TMP=/tmp
TMPTAR=$TMP/org.tar.gz

# This is where I my copy of the emacs exicutable is kept/installed. 
EMACSBIN=/usr/bin/emacs

#####
#  The only place I have a lisp file 
(Continue reading)

Pete Phillips | 1 Jan 2008 19:56
Picon
Gravatar

Re: FUD on my part re: downloading revisions?

Hi William

try my updated version at:

http://www.philfam.co.uk/pete/GTD/org-mode/update-org.sh

Pete

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode <at> gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

William Case | 1 Jan 2008 23:12
Favicon

Re: FUD on my part re: downloading revisions?

Hi;

You are not going to believe this; at least I don't believe it.

On Tue, 2008-01-01 at 18:56 +0000, Pete Phillips wrote:
> Hi William
> 
> try my updated version at:
> 
> http://www.philfam.co.uk/pete/GTD/org-mode/update-org.sh
> 

I tried it with the following adjustments:

#!/bin/bash

# script to automate pulling the latest org from Carsten's site
# PJP pete <at> smtl.co.uk
# $Revision: 1.2 $
# $Log: update-org.sh,v $
# Revision 1.2  2007/12/12 18:56:40  pete
# added changes due to change of location of the archive, and some other
# changes suggested by Harald Weis <hawei <at> free.fr>
#
# Revision 1.1  2007/04/26 05:53:54  pete
# Initial revision
#

# set up some variables
# EDIT THESE.!!!
(Continue reading)

William Case | 1 Jan 2008 23:34
Favicon

Re: [Bulk] Re: FUD on my part re: downloading revisions?

Hi -- typo correction;

On Tue, 2008-01-01 at 17:12 -0500, William Case wrote:

> 
> I have tried using the script to install from both 'bill' (single 'l')
                                                             ^^^^^^^^^^
                                                             double 'l'
> and 'root' with the same result.

--

-- 
Regards Bill

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode <at> gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Pete Phillips | 2 Jan 2008 00:13
Picon
Gravatar

Re: FUD on my part re: downloading revisions?

Hi Bill

>>>>> "William" == William Case <billlinux <at> rogers.com> writes:

    William> The script downloaded things successfully and opened all??
    William> files in /home/bill/emacs/lisp/org with a link to org-5.17a

    William> I would just install from a tarball, but I am still
    William> uncertain exactly which directory I want to copy to, unzip
    William> and make from.  The only 'org' file I have is
    William> /usr/share/emacs/22.1/lisp/textmodes/org.elc

I'm confused.

How can the script have worked and compiled but not left an org.elc in
/home/bill/emacs/lisp/org  ?

Can you tell me whether the compile worked ? has it left an org.elc in 
/home/bill/emacs/lisp/org  ?

Also, have you added a line to your .emacs along the lines of

	(add-to-list 'load-path "/home/bill/emacs/lisp/org/")

If not, that would explain why it is not loading up.

For the permissions stuff, I'm guessing here, but if you untarred it as
root, root will restore the files with the original permissions, not
yours. 

(Continue reading)

Adam Spiers | 2 Jan 2008 00:26
Favicon

Re: FUD on my part re: downloading revisions?

On Tue, Jan 01, 2008 at 05:12:23PM -0500, William Case wrote:
> You are not going to believe this; at least I don't believe it.

"When you have eliminated the impossible, whatever remains, however
improbable, must be the truth." -- Sir Arthur Conan Doyle ;-)

> On Tue, 2008-01-01 at 18:56 +0000, Pete Phillips wrote:
> > Hi William
> > 
> > try my updated version at:
> > 
> > http://www.philfam.co.uk/pete/GTD/org-mode/update-org.sh
> 
> I tried it with the following adjustments:

[snipped]

> The script downloaded things successfully and opened all?? files
> in /home/bill/emacs/lisp/org with a link to org-5.17a
> 
> BUT ... the permissions on the newly created org and org-5.17a
> directories and files where owner = billl and group = games.  'billl' is
> a seldom used extra user account I have added to my system for
> experimenting and playing around with things Linux.  I was most
> definitely not in the 'billl' user account when I used the script.  I
> have no idea how the 'games' group got into the mix.

It's because tar tries to honour the uid/gid metadata when extracting,
but it's done numerically:

(Continue reading)


Gmane