[Orgmode] Re: Feature request: Selective encryption

2007-08-31 Thread Austin Frank
On Sat, Sep 01 2007, Anupam Sengupta wrote:

> I use epg to encrypt the org-mode files. EPG expects the files to have
> a suffix of .gpg, which conflicts with the .org suffix - however, I
> circumvent this with a file local mode setting as the first line in my
> org files:
>
> # -*- mode: org; epa-file-encrypt-to: (""); 
> coding: utf-8-unix; -*-
>
> This allows the file's major mode to be Org-mode.
>
> In addition, the archive files are also encrypted, and hence an
> over-ride is needed for the file name (otherwise the defaults will
> conflict):
>
> I have ...
>
> #+ARCHIVE: ~/org/.org_archive.gpg::
>
> In my active Org files - which works fine for the archival process,
> and ensures that the archives are also encrypted.

A few other options:

- EPG also has the function epa-encrypt-region.  It asks for a
  recipient's key to use for encrypting, and does symmetric
  encryption if none is selected.  This could be used to selectively
  encrypt certain subtrees.  Especially given that...

- message-mode has functions like mml-secure-encrypt (there are lots
  of others in the mml-secure-* family).  These functions use the
  strategy of inserting tags around the region to be encrypted.  I
  haven't actually read the functions, but from the outside it looks
  like the tags are used to set the region, the region is
  encrypted/signed, and then the tags are removed from the outgoing
  copy of the message.  FWIW, the tags look like (the leading # was
  added by me to keep the tag from actually doing anything in this
  message):

#<#secure method=pgpmime mode=sign>
 

For interactive encrypting, I think epa-encrypt-region is probably
already good enough to do what folks have asked for.  For permanently
marking a subtree for encryption, maybe we could set a property like
ENCRYPT_CHILDREN, or set pairs of properties like ENCRYPT_BEGIN and
ENCRYPT_END.  The presence of these properties would cause the
appropriate region to be selected and passed to epa-encrypt-region when
org-encrypt-subtrees or org-encrypt-buffer is called (just speculating
about some possible function names).  Maybe on org-encrypt-buffer the
default is to call epa-encrypt-file unless some portion of the file is
marked for encryption, in which case it calls epa-encrypt-region on the
appropriate text.

The values of the ENCRYPT_* properties could be the key to use, or just
t.  If the value is t, either the key will be pulled from a file-level
variable, or the user will be prompted for which key to use (as
epa-encrypt-region normally does).

Thanks,
/au

-- 
Austin Frank
http://aufrank.net
GPG Public Key (D7398C2F): http://aufrank.net/personal.asc



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: Feature request: Selective encryption

2007-08-31 Thread Anupam Sengupta
> "Austin" == Austin Frank <[EMAIL PROTECTED]> writes:

Austin> If you're interested in using GPG to accomplish these goals, I 
highly
Austin> recommend the EasyPG (EPG) package created by Daiki Ueno.  At this
Austin> point I believe it's mostly used for Gnus, but it's intended to be a
Austin> general-purpose GPG interface for Emacs.

Austin> http://www.easypg.orghttp://sourceforge.jp/projects/epg

I use epg to encrypt the org-mode files. EPG expects the files to have a suffix
of .gpg, which conflicts with the .org suffix - however, I circumvent this with
a file local mode setting as the first line in my org files:

# -*- mode: org; epa-file-encrypt-to: (""); 
coding: utf-8-unix; -*-

This allows the file's major mode to be Org-mode.

In addition, the archive files are also encrypted, and hence an over-ride is
needed for the file name (otherwise the defaults will conflict):

I have ...

#+ARCHIVE: ~/org/.org_archive.gpg::

In my active Org files - which works fine for the archival process, and ensures
that the archives are also encrypted.

The other epg settings you need are:

 (require 'epa-setup) ;; In your .emacs file

and of course the correct SSH settings and the key setup externally.

This configuration works great on both OS X and Windows XP (Home and work for
me).

For Windows, I had to override the epa-gpg-program name to point to the cygwin 
version:

 (setq epg-gpg-program "/cygwin/bin/gpg.exe") ;; For Windows.


HTH,
-- 
Anupam



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] feature request: additional org/remember template escapes:

2007-08-31 Thread T. V. Raman
I've been using org with remember as my "Web Notebook" for the
last 18 months.

I browse exclusively from Emacs as an emacspeak user (w3 and W3M)
and this is an incredibly useful thing to have.

The one thing that prevents me from completely satisfied is the
set of available template escapes -- 
based on what  is possible, entries end up looking like:

** [[URL]] note

where "note" is what I typed in the remember buffer.

Ideally I'd like the above to be :

** [[URL][Note]]

or even better, have the entry go in as a bullet rather than a
section header.

Finally, I have never understood what the "inserted at level n
shifted by m" message means, could we come up with better
wording? I feel uneasy criticizing without a better suggestion,
but I dont understand what it means fully, and am consequently
reluctant to hazard at a better phrase. 

-- 
Best Regards,
--raman

  
Email:  [EMAIL PROTECTED]
WWW:http://emacspeak.sf.net/raman/
AIM:emacspeak   GTalk: [EMAIL PROTECTED]
PGP:http://emacspeak.sf.net/raman/raman-almaden.asc
Google: tv+raman 
IRC:irc://irc.freenode.net/#emacs


___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] org-mode and outline: Signalling "at top level"

2007-08-31 Thread T. V. Raman
So following the excellent article on GTD, I decided to start
using org for keeping my day planner.

I discovered an immediate irritant (only Emacspeak users will hit
this)--
when you create the agenda view  Emacs signals "Already at top "
multiple times.

This is not coming from org-mode, but from outline-up-heading ---
which has the unfortunate habit of raising a signal that is
caught elsewhere.

Emacspeak notices this because it has to provide speec/auditory
output on signal --- there are too many emacs packages that use
signal to indicate user-visible error conditions, e.g. VM at
end-of-folder.

For now, I defined an around advice on outline-up-heading to
silence the output in case of a signal, but I think it would be
useful for org-mode to protect itself from calling
outline-up-heading unnecessarily -- purely from a software hygene
point of view.

To observe the problem, try invoke org-agenda with
debug-on-signal set to T--
alternatively, just look at the messages buffer.

-- 
Best Regards,
--raman

  
Email:  [EMAIL PROTECTED]
WWW:http://emacspeak.sf.net/raman/
AIM:emacspeak   GTalk: [EMAIL PROTECTED]
PGP:http://emacspeak.sf.net/raman/raman-almaden.asc
Google: tv+raman 
IRC:irc://irc.freenode.net/#emacs


___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Bug with Unicode text on properties

2007-08-31 Thread Daniel Clemente
Hi, I attach a test file for some problems in org-5.07 when using
property names with characters like á é í...

Greetings,
Daniel


bug-properties.org
Description: Binary data
___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: Feature request: Selective encryption

2007-08-31 Thread Austin Frank
On Fri, Aug 31 2007, Carsten Dominik wrote:

> I do think this would be a useful feature.  Some properties I'd find
> useful:
>
> ...
>

If you're interested in using GPG to accomplish these goals, I highly
recommend the EasyPG (EPG) package created by Daiki Ueno.  At this
point I believe it's mostly used for Gnus, but it's intended to be a
general-purpose GPG interface for Emacs.

http://www.easypg.org
http://sourceforge.jp/projects/epg

HTH,
/au

-- 
Austin Frank
http://aufrank.net
GPG Public Key (D7398C2F): http://aufrank.net/personal.asc



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Feature request: Selective encryption

2007-08-31 Thread John Wiegley
Carsten Dominik <[EMAIL PROTECTED]> writes:

> I do think this would be a useful feature.  Some properties I'd find useful:
>
> - Use symmetric encryption
>
> - Be able to recognize if an entry is encrypted
>
> - Leave the headline of the entry alone and only encrypt the text below it
> and the subtree, if present
>
> - Support something like a CRYPT tag, leading to automatic encryption when
> the file is saved, to make sure encrypted entries are never saved in clear
> text.
>
> - Use only a single password per file, so once one entry is decrypted,
>   others will open without an additional password prompt.
>
> Something like this.

Yes, this is just what I'm thinking too, though I'd like the option of binding
different CRYPT tags to different keys or passwords.  So, I could have
WORK_CRYPT, HOME_CRYPT, etc., and each would have its own separate protection.
This would allow multiple people to have their own private regions within the
same org-mode file.

allout.el goes a long way toward providing all of the above, I just wasn't
fond of the mechanism (I tried porting it straight to org-mode one day, then
stopped).  For one thing, I want to use my GnuPG public key for encryption,
not a symmetric cipher.  That needs to be configurable.

I should be able to create an external module for this that does not affect
org.el at all, but just adds keybindings to org-mode-map and after-save-hook.

John


___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: deadlines with special option for warning days.

2007-08-31 Thread Rainer Stengele
Carsten Dominik schrieb:
> 
> On Aug 31, 2007, at 13:24, Rainer Stengele wrote:
> 
>> Deadlines with speciual option like this:
>>
>>  DEADLINE: <2007-09-04 Di -5d>
>>
>> seem to overide custom agenda view parameter org-deadline-warning-days.
>> Is this entended? If I define a custom view with
>> (org-deadline-warning-days 0) I'd like to not
>> appear any dealine which is due later.
>>
>> Maybe an option?
> 
> How about the following solution.
> 
> If you bind org-deadline-warning-days to 0 or a negative number,
> this value (the absolute value of that number) will be enforced
> no matter what.  If it is a positive number, individual lead
> times will overrule it.
> 
> - Carsten

OK - so how would I bind the value for different custom agenda views to 
different values?

Rainer



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: Org-mode Version 5.07

2007-08-31 Thread Carsten Dominik


On Aug 31, 2007, at 12:53, Tassilo Horn wrote:


But I've discovered another minor glitch.  When I toggle from CANCELLED
to TODO the CLOSED timestamp gets removed, which is a good thing.  When
I use C-c C-c T RET to do the same the timestamp persists.


Fixed, thanks.

- Carsten



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] deadlines with special option for warning days.

2007-08-31 Thread Carsten Dominik


On Aug 31, 2007, at 13:24, Rainer Stengele wrote:


Deadlines with speciual option like this:

 DEADLINE: <2007-09-04 Di -5d>

seem to overide custom agenda view parameter org-deadline-warning-days.
Is this entended? If I define a custom view with 
(org-deadline-warning-days 0) I'd like to not

appear any dealine which is due later.

Maybe an option?


How about the following solution.

If you bind org-deadline-warning-days to 0 or a negative number,
this value (the absolute value of that number) will be enforced
no matter what.  If it is a positive number, individual lead
times will overrule it.

- Carsten



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Feature request: Selective encryption

2007-08-31 Thread John Rakestraw
> > I'm not sure if anyone has mentioned this, but one feature I'd like
> > to see is
> > the ability to hit a keystroke and have the current outline entry 
> > encrypted or
> > decrypted.  allout.el does this now (although I find the
> > implementation somewhat horrendous).
> >
> > Would others like to see this?  How would you like it to work?
> 
> I do think this would be a useful feature.  Some properties I'd find 
> useful:



I should read more carefully. This proposal is far more sophisticated
than what I'm doing -- I'd like to see this as a feature with
properties like Carsten proposes within org mode.

-- 
John Rakestraw


signature.asc
Description: PGP signature
___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Feature request: Selective encryption

2007-08-31 Thread Scott Jaderholm
On 8/30/07, John Wiegley <[EMAIL PROTECTED]> wrote:
>
> I'm not sure if anyone has mentioned this, but one feature I'd like to see
> is
> the ability to hit a keystroke and have the current outline entry
> encrypted or
> decrypted.  allout.el does this now (although I find the implementation
> somewhat horrendous).
>
> Would others like to see this?  How would you like it to work?


I currently encrypt a lot of my org files with gpg symmetric encryption
using http://www.easypg.org/. I open the file as if it were a normal file
and emacs asks me the password. With a mode line at the start of the file
org mode comes up fine.

I think it would be useful to be able to encrypt individual sections of an
org file, but I wonder how easily I would be able to unencrypt those
sections if org-mode weren't available. Right now I can easily unencrypt the
org files just using gpg, but if only a section is encrypted, am I going to
have to do some hacking to get that section unencrypted without org-mode?

Good idea,
Scott
___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Feature request: Selective encryption

2007-08-31 Thread Bastien
John Wiegley <[EMAIL PROTECTED]> writes:

> I'm not sure if anyone has mentioned this, but one feature I'd like to
> see is the ability to hit a keystroke and have the current outline
> entry encrypted or decrypted. allout.el does this now (although I find
> the implementation somewhat horrendous).
>
> Would others like to see this?  How would you like it to work?

This would be great. I guess it would allow several people work together
on a single Org file while each being able to preserve a private space.

-- 
Bastien


___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: error: "End of file during parsing." when using option "timestamp"

2007-08-31 Thread Rainer Stengele
Carsten Dominik schrieb:
> 
> On Aug 31, 2007, at 13:52, Rainer Stengele wrote:
>>
>>
>> I have one more thing to ask:
>>
>> having meeting notes in my org structure like this:
>>
>> * meetings and notes and customer 0815
>> ** <2007-08-27 Mo>
>> ** <2007-08-28 Di>
>> ** <2007-08-29 Mi>
>>
>> an html export deletes the time stamps and gives me empty headlines
>> which lead to missing headlines
>> in the contents of the html export.
>> I'd like to have my meetings planned like this and the notes in an
>> html export with headlines that
>> make sense.
>> Maybe an option to delete timestamps in the contents of the html export?
> 
> How about `org-export-remove-timestamps-from-toc' ???
> 
> Org-mode has so many variables, chances are the one you need is already
> there.
> 
> The way to find such variables is
> 
> M-x org-customize
> 
> Open "Org Export" group
> Open "Org Export General" group
> 
> 
> Find the right variable.
> 
> Hope this helps.
> 
> - Carsten

Wow, a dream...

Again - thank you so much.

Rainer



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Feature request: Selective encryption

2007-08-31 Thread Carsten Dominik


On Aug 31, 2007, at 5:10, John Wiegley wrote:

I'm not sure if anyone has mentioned this, but one feature I'd like to 
see is
the ability to hit a keystroke and have the current outline entry 
encrypted or

decrypted.  allout.el does this now (although I find the implementation
somewhat horrendous).

Would others like to see this?  How would you like it to work?


I do think this would be a useful feature.  Some properties I'd find 
useful:


- Use symmetric encryption

- Be able to recognize if an entry is encrypted

- Leave the headline of the entry alone and only encrypt
  the text below it and the subtree, if present

- Support something like a CRYPT tag, leading to automatic
  encryption when the file is saved, to make sure
  encrypted entries are never saved in clear text.

- Use only a single password per file, so once one entry is decrypted,
  others will open without an additional password prompt.

Something like this.

- Carsten



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: error: "End of file during parsing." when using option "timestamp"

2007-08-31 Thread Carsten Dominik


On Aug 31, 2007, at 13:52, Rainer Stengele wrote:



I have one more thing to ask:

having meeting notes in my org structure like this:

* meetings and notes and customer 0815
** <2007-08-27 Mo>
** <2007-08-28 Di>
** <2007-08-29 Mi>

an html export deletes the time stamps and gives me empty headlines 
which lead to missing headlines

in the contents of the html export.
I'd like to have my meetings planned like this and the notes in an 
html export with headlines that

make sense.
Maybe an option to delete timestamps in the contents of the html 
export?


How about `org-export-remove-timestamps-from-toc' ???

Org-mode has so many variables, chances are the one you need is already 
there.


The way to find such variables is

M-x org-customize

Open "Org Export" group
Open "Org Export General" group


Find the right variable.

Hope this helps.

- Carsten



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Feature request: Selective encryption

2007-08-31 Thread John Rakestraw
Hi --

On Thu, 30 Aug 2007 23:10:55 -0400
John Wiegley <[EMAIL PROTECTED]> wrote:

> I'm not sure if anyone has mentioned this, but one feature I'd like
> to see is the ability to hit a keystroke and have the current outline
> entry encrypted or decrypted.  allout.el does this now (although I
> find the implementation somewhat horrendous).
> 
> Would others like to see this?  How would you like it to work?

I'd like to see this. Right now I'm using ccrypt
(http://ccrypt.sourceforge.net/) with the accompanying emacs package
jka-compr-ccrypt. My set-up is definitely workable, but it would be
nice to have something integrated within emacs.

As for how I'd like it to work, I'd like more or less what John W
describes -- encryption and decryption by a keystroke or short series
of keystrokes. I'd like to be prompted twice for a password or pass
phrase the first time I encrypt a file, and then to be asked for a
password or pass phrase when I open an encrypted file. I'd like it
to remember that password (assuming it's encrypted) so that I don't
have to re-enter it when I re-save an encrypted file. Of course, I'm
largely ignorant of how encryption works -- the FAQ on the ccrypt page
addresses some of the concerns knowledgeable people have. So I don't
know how easy/hard it is to do these things.

-- 
John Rakestraw


signature.asc
Description: PGP signature
___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: http://orgmode.org

2007-08-31 Thread Dan Griswold
Dan Griswold <[EMAIL PROTECTED]> writes:

> I'm curious: why the redirect to the old site? Things appear to be
> present on the new site.

Oops, never mind. I see what you're doing.

Again, thanks for all you've done on this great tool. It's been a
terrific help to me.

Dan


-- 
--
Dan Griswold
Rochester, NY
--



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] error when M-x org-publish RET blog RET

2007-08-31 Thread David O'Toole

When I attempt to publish my blog I get the backtrace below. Sometimes
it happens, sometimes it doesn't. As far as I can tell, org-blog is
working ok, and I haven't made changes to it recently.

I'm on org 5.05 and you can find org-blog at
http://dto.freeshell.org/e/org-blog.el 

---
  byte-code("ÆÇ\n\"fȃÉÈ\"\fƒÊËÌ\"(͔O
=   ͔OPÍÆO‚ ͔OȅOÎÏÉÈ\"\"ÎÐÑÉÒ\"!ÈÓO\"RÍÆO‚   n€ 
PÇÔP\"  ÕP  *" [b r org-maybe-keyword-time-regexp s 
org-clock-string org-export-with-timestamps nil string-match 1 match-string 
throw exit "" 0 format "@%s @" " @%s@" org-translate-time 3 -1 "\\S-" "@"] 9)
  org-html-handle-time-stamps("")
  byte-code("ÆÇ   \"ÈcÉ Ê   !˱ˆÌÍÉ\"\nTÆÎ  \"T4ÏÐcÊÑÒ 
\"[EMAIL PROTECTED]"OÉÈcÌÍÉ\"ÔÕÖ#›É×Ø`ÙZÏ#pÑÒ!ÚÛ!   [EMAIL 
PROTECTED]@˱ˆu
•Üc)ÌÍÉ\"ÆÝ \"ªÞcÌÍÉ\"Æß\"ýàƒÈÚáâÑÒ \"!ãQÏ  [EMAIL PROTECTED]   
!åƒåÚæÑÒ\"çQÏ   $‚ªÚáâÑÒ\"!èÑÒ  \"é°Ï   $‚ªê!ë  !ÕAÆB   
A#WÕAàƒ\"Ñà\"#ìCÑí \"Dî…4Ñî\"EàƒDCïDQFDFESEF?GE\\FHGˆðH!ˆñ 
IòÆóH\"€HÕÉOH*ôHõQHC샪öâñ 
I÷øD!*J\"ùHú°KDCûƒíLÏ=ÂL×G×ðD!×ôCïDõ°KDCïDQMüMùHú°KDCýƒ\nCïDQMüMùHú°KDCþƒ!DNÿN!OÉPQÉRñ
 
IrŽÆsN\"HÑÒN\"RÚtÏÉN$NuS![SNT\"\\ÏUðN!QOrvN!tNPVêÆwP\"êPՔOxPPRÂÆyR\"ÂÆzR\"ÂÆ{R\"ÂP|âøR!!QPÆóH\"êÚtÏH$HÆwH\"êÚtÏH$H*Q
   LÏ=L G  ôPõQüPùHú°KUHK-DC}D~Cïñ IŽøD!*€°KÚKÏ  
$AKG\\AÆW \"àƒ  ÕàOÑà  \"Xƒ|ùÑà   \"„ àÉO°Y¼Æ…  \"¼Ñà   
\"ZچÑÒ   \"Z‰%Ï  $)”ƈ   \"\\ÒÒZ![Ñà   
\"\\Æ]\\\"êÚtÏ\\$\\[^_]Xú`T`a+b% [EMAIL PROTECTED]@[EMAIL PROTECTED]   
\"RcςRf²Æ  \"²gxÏgÉhi[EMAIL PROTECTED]"RÉghhii 
hi\"c‚RÆkÏ=Àåk“Uρåk•Uށ偘!  \"ô   !lš”mà…Ñà  \"՛On  
îÉOƜ   \")oÕ'c@&[EMAIL PROTECTED]@WyÏpŠ [EMAIL PROTECTED]@[EMAIL 
PROTECTED]@Vµ mœŸcmbBblcBcÏaÑnǁ c‚Ñpс  Æ¡   \"ôÚÑÒ  \"¢šì£‚ï¤Ï 
   $Æ¥ \"  Y-Ʀ \"- ÑÒ\"Zچ§Z‰$Ï$)ƨ\"BÚ©Ï  
$‚MqM  ©P  ˱ˆÉ" [inquote line org-export-with-fixed-width infixed lines 
par string-match "^\\*+ " "\n" nil org-html-protect "\n" throw nextline 
"^[ ]*:\\(.*\\)" t "\n" match-string 1 "^[ ]*\\(:.*\\)" 
get-text-property 0 org-protected re-search-backward "\\(\\)\\([
\n]*\\)\\=" 100 replace-match "\\2\n" "\n" "^[   ]*-\\{5,\\}[]*$" 
"\n\n" "<<]*\\)>>>?\\((INVISIBLE)\\)?[   ]*\n?" 2 "@\\nbsp@" string-to-char 42 "@" "@ " "\" class=\"target\">" "@ " 
org-html-handle-time-stamps org-html-expand "internal" 3 5 ":" org-file-image-p 
match-data ...] 10)
  org-export-as-html(nil nil nil string :body-only)
  org-export-region-as-html(1 4562 :body-only string)
  (save-current-buffer (set-buffer temp-buffer) (insert description) 
(org-export-region-as-html (point-min) (point-max) :body-only (quote string)))
  (with-current-buffer temp-buffer (insert description) 
(org-export-region-as-html (point-min) (point-max) :body-only (quote string)))
  (unwind-protect (with-current-buffer temp-buffer (insert description) 
(org-export-region-as-html ... ... :body-only ...)) (and (buffer-name 
temp-buffer) (kill-buffer temp-buffer)))
  (let ((temp-buffer ...)) (unwind-protect (with-current-buffer temp-buffer ... 
...) (and ... ...)))
  (with-temp-buffer (insert description) (org-export-region-as-html (point-min) 
(point-max) :body-only (quote string)))
  (let ((description-html ...)) (format " \n %s\n 
%s\n %s\n %s\n \n" title description-html pubdate 
permalink))
  org-blog-rss-item("deep into the zone" 
"http://dto.freeshell.org/blog/blog-2007-08-31-0328.html"; "\n\nI've been coding 
a bit this evening, and making a few\nmuch-needed changes to my setup.\n\nFor 
example, I will stop using the arrow keys. This will be a\nchallenge because I 
have been trained to use the arrow keys basically\nsince birth. I'm using them 
right now, and I hate how tiny they are on\nthis machine. But I've heard that 
switching to the \"real\" cursor\nmotion keys Emacs provides, however painful 
the process, is much\nbetter for a user's long-term agility and joint 
health.\n\nI'm also going to make capslock into an extra control key. I hear 
it's\na good thing, and closer to the spirit of Emacs because of\nthose 
[[http://en.wikipedia.org/wiki/Space-cadet_keyboard][old-fashioned keyboards.]] 
While my new \"thin client\" laptop\n(i.e. cheap X terminal) is the best 
computer input/output device I\nhave ever used, its keyboard layout does have a 
few cramped\nareas---especially in the corners. (Besides, capslock-as-control 
is\nthe only way I can actually imagine myself using the standard 
cursor\nmotion keys.)\n\nNext, I would like to learn about the various 
structural movement and\nmanipulation facilities of Emacs. After almost four 
years as a gung-ho\nemacs-for-everything student at Emacs University, I still 
navigate\naround mostly with just C-a, C-e, and the arrow keys.  So I took 
a\nlook at what's out there and found a project called 
[[http://emac

[Orgmode] Feature request: Selective encryption

2007-08-31 Thread John Wiegley
I'm not sure if anyone has mentioned this, but one feature I'd like to see is
the ability to hit a keystroke and have the current outline entry encrypted or
decrypted.  allout.el does this now (although I find the implementation
somewhat horrendous).

Would others like to see this?  How would you like it to work?

John


___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: http://orgmode.org

2007-08-31 Thread Dan Griswold
Carsten,


A great step. The easier-to-remember address should prove to be a
great help.

I'm curious: why the redirect to the old site? Things appear to be
present on the new site.

Thanks for this wonderful tool!

Dan

-- 
--
Dan Griswold
Rochester, NY
--



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: error: "End of file during parsing." when using option "timestamp"

2007-08-31 Thread Rainer Stengele
Carsten Dominik schrieb:
> No space before the nil, you have it right in all the other options!
> 
> 
> - Carsten
> 
> On Aug 31, 2007, at 13:28, Rainer Stengele wrote:
> 
>> Using the option "timestamp" true or nil I get this error in "C-c C-e b":
>>
>> End of file during parsing.
>>
>> #+OPTIONS:   H:2 num:nil toc:t \n:t @:t ::t |:t ^:t f:t *:t TeX:t
>> LaTeX:nil skip:t p:nil timestamp: nil
>>
>>
>> Rainer
>>
>>
>>
>> ___
>> Emacs-orgmode mailing list
>> Emacs-orgmode@gnu.org
>> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>>
>>
> 
> -- 
> Carsten Dominik
> Sterrenkundig Instituut "Anton Pannekoek"
> Universiteit van Amsterdam
> Kruislaan 403
> NL-1098SJ Amsterdam
> phone: +31 20 525 7477


perfect - thank you - works.


I have one more thing to ask:

having meeting notes in my org structure like this:

* meetings and notes and customer 0815
** <2007-08-27 Mo>
** <2007-08-28 Di>
** <2007-08-29 Mi>

an html export deletes the time stamps and gives me empty headlines which lead 
to missing headlines
in the contents of the html export.
I'd like to have my meetings planned like this and the notes in an html export 
with headlines that
make sense.
Maybe an option to delete timestamps in the contents of the html export?


Rainer




___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] error: "End of file during parsing." when using option "timestamp"

2007-08-31 Thread Carsten Dominik

No space before the nil, you have it right in all the other options!


- Carsten

On Aug 31, 2007, at 13:28, Rainer Stengele wrote:

Using the option "timestamp" true or nil I get this error in "C-c C-e 
b":


End of file during parsing.

#+OPTIONS:   H:2 num:nil toc:t \n:t @:t ::t |:t ^:t f:t *:t TeX:t 
LaTeX:nil skip:t p:nil timestamp: nil



Rainer



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode




--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] http://orgmode.org

2007-08-31 Thread Carsten Dominik


Hi,

the official website for org-mode is now

   http://orgmode.org

If you have webpages with links pointing to the Org-mode homepage,

please update those links.

Email to me (personally) about org-mode can be adressed to

 [EMAIL PROTECTED]

- Carsten



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] error: "End of file during parsing." when using option "timestamp"

2007-08-31 Thread Rainer Stengele
Using the option "timestamp" true or nil I get this error in "C-c C-e b":

End of file during parsing.

#+OPTIONS:   H:2 num:nil toc:t \n:t @:t ::t |:t ^:t f:t *:t TeX:t LaTeX:nil 
skip:t p:nil timestamp: nil


Rainer



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] deadlines with special option for warning days.

2007-08-31 Thread Rainer Stengele
Deadlines with speciual option like this:

 DEADLINE: <2007-09-04 Di -5d>

seem to overide custom agenda view parameter org-deadline-warning-days.
Is this entended? If I define a custom view with (org-deadline-warning-days 0) 
I'd like to not
appear any dealine which is due later.

Maybe an option?

Rainer



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] color for TODO's

2007-08-31 Thread Carsten Dominik

In version 5.07 there is, check the release notes.

- Carsten

On Aug 31, 2007, at 12:35, Cezar wrote:



Hello,

  Is there a way to set a different color for WAITING ?
  And what do you guys thing about that !?

Regards,
Cezar



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode




--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: Org-mode Version 5.07

2007-08-31 Thread Carsten Dominik


On Aug 31, 2007, at 12:53, Tassilo Horn wrote:


Carsten Dominik <[EMAIL PROTECTED]> writes:

Hi Carsten,


This looks very odd, as if your setup of org-tags-list is the wrong
way round.


Hm, I use a CVS emacs 3 hours old, but org-tags-list is not known
there.  I guess you mean org-tag-alist, right?


My typo, should be `org-tag-alist'.


Yes, that's it.  But then the docs are wrong, too.  See


Yes, you are right, `car' needs to be `cdr'.  One letter :-)


But I've discovered another minor glitch.  When I toggle from CANCELLED
to TODO the CLOSED timestamp gets removed, which is a good thing.  When
I use C-c C-c T RET to do the same the timestamp persists.


Yes, this need to be fixed, thanks.

- Carsten



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: remember

2007-08-31 Thread Tassilo Horn
Cezar <[EMAIL PROTECTED]> writes:

Hi Cezar,

>   I want to start using remember to record todos like this wonderfull 
> paper shows:
>
>   http://johnwiegley.com/org.mode.day.planner.html

Wise decision.

>   My problem is that is also inserts some comments. The recorded entry
> looks like this:
>
> ** Fri Aug 31 13:19:12 2007 (## `C-u C-c C-c' to file directly, 
> `C-c C-c' to file interac)
>
> ## `C-u C-c C-c' to file directly, `C-c C-c' to file interactively.
> ## Target file "~/Organiser/Notes.org", headline "Tasks"
> ## To switch templates, use `M-x org-remember'.
>
> * TODO test
>   [2007-08-31 Fri]

That comment will be removed when you file it with C-c C-c.

>   Also I would like to know how to link from files/mails (I am using
> Gnus).

,[ C-h k C-c o l ]
| C-c o l runs the command org-store-link
|   which is an interactive compiled Lisp function in `org.el'.
| It is bound to C-c o l.
| (org-store-link ARG)
| 
| Store an org-link to the current location.
| This link can later be inserted into an org-buffer with
| C-c C-l.
| For some link types, a prefix arg is interpreted:
| For links to usenet articles, arg negates `org-usenet-links-prefer-google'.
| For file links, arg negates `org-context-in-file-links'.
`

As you can see, I bound that function to `C-c o l' because I use `C-c o'
as prefix key for org-mode related things.  Such a binding can be
created with

(global-set-key (kbd "C-c o l") 'org-store-link)

in your ~/.emacs.

Bye,
Tassilo
-- 
* delYsid has mortgage, opportunity and penis in his score file.
 thats pretty effective against spam
 aren't you worried about missing opportunities to mortgage
   your penis?



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: Org-mode Version 5.07

2007-08-31 Thread Tassilo Horn
Carsten Dominik <[EMAIL PROTECTED]> writes:

Hi Carsten,

> This looks very odd, as if your setup of org-tags-list is the wrong
> way round.

Hm, I use a CVS emacs 3 hours old, but org-tags-list is not known
there.  I guess you mean org-tag-alist, right?

> I should be
>
> (setq org-tags-list
>  '(("APPT" . ?a) ("CALL" . ?c) .))
>
> But yours seems to be
> (setq org-tags-list
>  '((?a . "APPT") (?c . "CALL") .))

Yes, that's it.  But then the docs are wrong, too.  See

,[ C-h v org-tag-alist RET ]
| org-tag-alist is a variable defined in `org.el'.
| Its value is shown below.
| 
| Documentation:
| List of tags allowed in Org-mode files.
| When this list is nil, Org-mode will base TAG input on what is already
| in the buffer.

| The value of this variable is an alist, the car may be (and should) be
| ^^
| a character that is used to select that tag through the
| ^^^
| fast-tag-selection interface.  See the manual for details.
| 
| You can customize this variable.
| 
| Value: 
| ((#("APPT" 0 4
| (face nil))
|   . 97)
|  (#("CALL" 0 4
| (face nil))
|   . 99)
|  (#("PURCHASE" 0 8
| (face nil))
|   . 101))
`

Now I've set org-todo-keywords to

'((sequence "TODO(T)" "STARTED(S)" "WAITING(W)"
"|" "DONE(D)" "DEFERRED(F)" "CANCELLED(C)"))

which works, too.

But I've discovered another minor glitch.  When I toggle from CANCELLED
to TODO the CLOSED timestamp gets removed, which is a good thing.  When
I use C-c C-c T RET to do the same the timestamp persists.

Bye,
Tassilo
-- 
No person,  no idea, and no  religion deserves to be  illegal to insult,
not even the Church of Emacs. (Richard M. Stallman)



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] color for TODO's

2007-08-31 Thread Cezar

Hello,

  Is there a way to set a different color for WAITING ?
  And what do you guys thing about that !?

Regards,
Cezar



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] remember

2007-08-31 Thread Cezar


Hello,

  I want to start using remember to record todos like this wonderfull 
paper shows:

  http://johnwiegley.com/org.mode.day.planner.html

  My problem is that is also inserts some comments. The recorded entry 
looks like this:

** Fri Aug 31 13:19:12 2007 (## `C-u C-c C-c' to file directly, 
`C-c C-c' to file interac)

## `C-u C-c C-c' to file directly, `C-c C-c' to file interactively.
## Target file "~/Organiser/Notes.org", headline "Tasks"
## To switch templates, use `M-x org-remember'.

* TODO test
  [2007-08-31 Fri]

  Also I would like to know how to link from files/mails (I am using
Gnus).

Thanks,
Cezar



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: Org-mode Version 5.07

2007-08-31 Thread Carsten Dominik


On Aug 31, 2007, at 11:36, Tassilo Horn wrote:

Debugger entered--Lisp error: (wrong-type-argument sequencep 97)
  org-add-props(97 nil face nil)
  byte-code("\fÆÇ!q‚È É ÊÆÇ!!Ë  
ÌÍ	\nÎ$ÌÏ\fÐ$Ñ!Ò/ 
\"[EMAIL PROTECTED]@7Ö84A–4A9æÛ7Û7! 
ÜU¦Ý§ÔÖO!:Þ:;\"¿Þ:<\"ÙÞ2;\"ÑÞ2<\"Ý2T2¿:[EMAIL PROTECTED]	 
ƒ\nÖ$73ÔU#6#ácâ9ã7ä=7GZåZæ\"±ˆ79B;B;3T3>U=Îc6XácÔ3=;;Îcebvçè! 
vè [EMAIL PROTECTED]" [expert inherited i-face current c-face  
exit-after-next get-buffer-create " *Org tags*" delete-other-windows  
split-window-vertically org-switch-to-buffer-other-window erase-buffer  
org-fast-tag-insert "Inherited" "\n" "Current" "\n\n"  
org-fast-tag-show-exit org-set-current-tags-overlay 97 0 (:startgroup)  
nil t "{ " (:endgroup) "}\n" string-to-char 64 1 rassoc org-add-props  
face "  " "[" "] " make-string 4 32 fboundp fit-window-to-buffer exit  
(byte-code "ÆÇ\nÈÉ	Ê\nËÌ#ÍÎ  
)ÏU2ÐÑÍ\"‚a\fÒUM?ebÓÔÕÍ#aÖ×!‚>\fØUy	aÙ\n?!‚aÕÚ Û ÜÝ!Þß!aß  
‚a\fàUŒ\fáU—â\f\"—ã>!Í? 
[EMAIL PROTECTED]"ÝëìAC\"[EMAIL PROTECTED]@\"@[EMAIL PROTECTED]@\naå‚aâ\fB\"[EMAIL PROTECTED] 
rDqŠîA!*\naå‚aâ\f\"[EMAIL PROTECTED]@[EMAIL PROTECTED]"@[EÕFE: 
[EMAIL PROTECTED]"[EMAIL PROTECTED]@[EMAIL PROTECTED]"@\nå=sÐÑÍ\"ebóô!`õ  
|[EMAIL PROTECTED]@H\"[EMAIL PROTECTED]" [groups expert  
exit-after-next inhibit-quit c ntable message "[a-z..]:Toggle  
[SPC]:clear [RET]:accept [TAB]:free%s%s" " [!] no groups" " [!]groups"  
" [C-c]:window" " [C-c]:single" " [C-c]:multi" t read-char-exclusive  
13 throw exit 33 re-search-forward "[{}]" nil replace-match " " 3  
org-fast-tag-show-exit delete-other-windows split-window-vertically  
org-switch-to-buffer-other-window " *Org tags*" fboundp  
fit-window-to-buffer 7 113 rassoc org-detach-overlay 32 now 9 ... ...  
string-match "\\S-" add-to-list buffer-tags delete org-todo mapcar  
#[... "Â	\"" [x current delete] 3] sort ...] 7) org-detach-overlay  
mapconcat identity ":" ov-prefix fulltable tbl ...] 7)
  org-fast-tag-selection(nil nil ((97 . "APPT") (99 . "CALL") (101 .  
"PURCHASE")) ((:startgroup) ("CANCELLED" . 99) ("DEFERRED" . 68)  
("DONE" . 100) ("WAITING" . 119) ("STARTED" . 115) ("TODO" . 116)  
(:endgroup)))


This looks very odd, as if your setup of org-tags-list is the wrong way  
round.


I should be

(setq org-tags-list
 '(("APPT" . ?a) ("CALL" . ?c) .))

But yours seems to be
(setq org-tags-list
 '((?a . "APPT") (?c . "CALL") .))

Please check.

- Carsten



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: Org-mode Version 5.07

2007-08-31 Thread Tassilo Horn
Carsten Dominik <[EMAIL PROTECTED]> writes:

Hi Carsten,

>>>  #+SEQ_TODO: TODO(t) WAITING(w) | CANCELED(c) DONE(d)
>>
>> Is it possible to set those globally via `org-todo-keywords', too?
>> If yes, what's the syntax?
>
> You can just write the keywords like "TODO(t)" in the global list,
> that should work.  I am not happy about it because this is different
> from the tags setting.  So I might modify the "official" syntax at
> some point - that is why the syntax above is not documented.  However,
> I expect that writing it like this will continue to work - so go ahead
> and use it.

I tried it and it gave an error.  Then I tried the SEQ_TODO version with

#+SEQ_TODO: TODO(t) STARTED(s) WAITING(w) | DONE(d) DEFERRED(D) CANCELLED(c)

and got the same error when I do C-c C-c on a TODO.

Debugger entered--Lisp error: (wrong-type-argument sequencep 97)
  org-add-props(97 nil face nil)
  byte-code("\fÆÇ!q‚È É ÊÆÇ!!Ë ÌÍ \nÎ$ÌÏ\fÐ$Ñ!Ò/\"[EMAIL 
PROTECTED]@7Ö84A–4A9æÛ7Û7!ÜU¦Ý§ÔÖO!:Þ:;\"¿Þ:<\"ÙÞ2;\"ÑÞ2<\"Ý2T2¿:[EMAIL 
PROTECTED]  
ƒ\nÖ$73ÔU#6#ácâ9ã7ä=7GZåZæ\"±ˆ79B;B;3T3>U=Îc6XácÔ3=;;Îcebvçè!vè [EMAIL 
PROTECTED]" [expert inherited i-face current c-face exit-after-next 
get-buffer-create " *Org tags*" delete-other-windows split-window-vertically 
org-switch-to-buffer-other-window erase-buffer org-fast-tag-insert "Inherited" 
"\n" "Current" "\n\n" org-fast-tag-show-exit org-set-current-tags-overlay 97 0 
(:startgroup) nil t "{ " (:endgroup) "}\n" string-to-char 64 1 rassoc 
org-add-props face "  " "[" "] " make-string 4 32 fboundp fit-window-to-buffer 
exit (byte-code "ÆÇ\nÈÉÊ\nËÌ#ÍÎ )ÏU2ÐÑÍ\"‚a\fÒUM?ebÓÔÕÍ#aÖ×!‚>\fØUy 
 aÙ\n?!‚aÕÚ Û ÜÝ!Þß!aß ‚a\fàUŒ\fáU—â\f\"—ã>[EMAIL PROTECTED]"ÝëìAC\"[EMAIL 
PROTECTED]@\"@[EMAIL PROTECTED]@\naå‚aâ\fB\"[EMAIL PROTECTED]"[EMAIL 
PROTECTED]@[EMAIL PROTECTED]"@[EÕFE:[EMAIL PROTECTED]"[EMAIL PROTECTED]@[EMAIL 
PROTECTED]"@\nå=sÐÑÍ\"ebóô!`õ |[EMAIL PROTECTED]@H\"[EMAIL PROTECTED]" [groups 
expert exit-after-next inhibit-quit c ntable message "[a-z..]:Toggle 
[SPC]:clear [RET]:accept [TAB]:free%s%s" " [!] no groups" " [!]groups" " 
[C-c]:window" " [C-c]:single" " [C-c]:multi" t read-char-exclusive 13 throw 
exit 33 re-search-forward "[{}]" nil replace-match " " 3 org-fast-tag-show-exit 
delete-other-windows split-window-vertically org-switch-to-buffer-other-window 
" *Org tags*" fboundp fit-window-to-buffer 7 113 rassoc org-detach-overlay 32 
now 9 ... ... string-match "\\S-" add-to-list buffer-tags delete org-todo 
mapcar #[... "Â\"" [x current delete] 3] sort ...] 7) 
org-detach-overlay mapconcat identity ":" ov-prefix fulltable tbl ...] 7)
  org-fast-tag-selection(nil nil ((97 . "APPT") (99 . "CALL") (101 . 
"PURCHASE")) ((:startgroup) ("CANCELLED" . 99) ("DEFERRED" . 68) ("DONE" . 100) 
("WAITING" . 119) ("STARTED" . 115) ("TODO" . 116) (:endgroup)))
  org-set-tags(nil)
  call-interactively(org-set-tags)
  org-ctrl-c-ctrl-c(nil)
  call-interactively(org-ctrl-c-ctrl-c)

`org-todo-keywords' has its default value.

Bye,
Tassilo
___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: problem with LaTeX exporter

2007-08-31 Thread Bastien
Leo <[EMAIL PROTECTED]> writes:

> Some warnings:
>
> ,
> | In org-export-latex-cleaned-string:
> | org-export-latex.el:1155:25:Warning: reference to free variable `latexp'
> | org-export-latex.el:1182:33:Warning: reference to free variable `re-quote'
> | org-export-latex.el:1193:9:Warning: reference to free variable `commentsp'
> `

Yes, that's a shame.  Please ignore them for now.

-- 
Bastien


___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: Org-mode Version 5.07

2007-08-31 Thread Carsten Dominik


On Aug 30, 2007, at 17:10, Tassilo Horn wrote:


Carsten Dominik <[EMAIL PROTECTED]> writes:

Hi Carsten,


 #+SEQ_TODO: TODO(t) WAITING(w) | CANCELED(c) DONE(d)


Is it possible to set those globally via `org-todo-keywords', too?  If
yes, what's the syntax?


You can just write the keywords like "TODO(t)" in the global list, that 
should
work.  I am not happy about it because this is different from the tags 
setting.

So I might modify the "official" syntax at some point - that is why the
syntax above is not documented.  However, I expect that writing it like 
this

will continue to work - so go ahead and use it.

- Carsten



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode