[Orgmode] Re: minor option conflict

2009-02-12 Thread Carsten Dominik
On Feb 11, 2009, at 6:46 PM, Samuel Wales wrote: Hi Carsten, To reiterate (since the thread is long): Bug: blank line inserted after log item even without body. This inserts blank line in collapsed view requiring manual deletion. Carsten and Bernt could not reproduce. I provided test case a

[Orgmode] Re: Feature improvement request: state change logging

2009-02-12 Thread Ulf Stegemann
Wanrong Lin wrote: > The state change logging is great, but I wonder whether we can further > improve it: > > 1. Can we also include the original state in the log message? > i.e.: instead of having - State "DEFERRED" [2009-02-11 Wed 11:38] > we can have > - State "DEFERRED" from "HOLD" [2

Re: [Orgmode] Bug in clocking in: the list becomes corrupted by the CLOCK drawer

2009-02-12 Thread Daniel Clemente
Carsten Dominik writes: > > While I think it is not too much to ask to set the clock > drawer variable I mentioned earlier in order to get reliable > behavior for your application, I guess it does not hurt to > check for smaller indentation than the clock line itself. OK. > Thanks, this makes

Re: [Orgmode] Docs submitted (Was Re: Advice sought on managing decision alternatives.)

2009-02-12 Thread Manish
On Wed, Feb 11, 2009 at 4:18 AM, Tom Breton (Tehom) wrote: >> With three choices for choosenness, it works as I expected (only one >> item in CHOSEN state at a time) but for more choices like: >> >> #+CHOOSE_TODO: REJECTED(r) NOT_CHOSEN(n,-) MAYBE(,0) >> LEANING_TOWARDS(l) CHOSEN(c,+) >> >> it allo

Re: [Orgmode] Re: org-mode and remind integration

2009-02-12 Thread Sharad Pratap
Hi Daniel, Actually I have used your proposed _regular expression_ only, and little rearrangement. > Since my child was born last month I did not have much time. Therefore, I > did not test org2rem. Many congratulations to you on your sweet little bundle of joy!! I did not tested the last sugge

[Orgmode] New :base-extension parameter: :none

2009-02-12 Thread Richard KLINDA
Hello, I don't use filename extensions for my org files and I could not publish my files that way because you have to give a string parameter to :base-extension. I modified the org-publish-get-base-files function to support a :none keyword, that means that every file gets exported (except those th

Re: [Orgmode] Call for documentation of contributed packages

2009-02-12 Thread Manish
On Tue, Feb 10, 2009 at 1:25 PM, Carsten Dominik wrote: [...] > To start up this process, I am looking for a volunteer, with > the following task: > Go through thefile commentaries of stuff in Org's contrib directory > and extract information from the file commentaries to create a page > for each

[Orgmode] Patch: new org-publish-project-alist property: :body-only

2009-02-12 Thread Richard KLINDA
I defined a new org-publish-project-alist property: :body-only, the functionality was already in Org. ,[ example ] |'("test" . (:base-directory "/tmp/" |:base-extension "org" |:publishing-directory "/tmp/1/" |:body-only t ;; <

Re: [Orgmode] Docs submitted (Was Re: Advice sought on managing decision alternatives.)

2009-02-12 Thread Nick Dokos
Tom Breton (Tehom) wrote: > > >>> On Feb 11, 2009, at 2:08 AM, Tom Breton (Tehom) wrote: > >>> > >> > >> (let* > >> ((x 1)) > >> (eval-after-load 'simple (setq x 2)) > >> x) > >> > >> =3D> 2 > >> > >> > >> > >> (let* > >> ((x 1)) > >> (eval-after-load 'simple '(setq x 2)) > >> x) > >

[Orgmode] two new functions: org-move-thing-up org-move-thing-down

2009-02-12 Thread Richard KLINDA
Here are two functions for moving things around. Useful to bind them to keys. Carsten, please include these functions in org if you think it's ok. ,[ for me it is ] | (define-key org-mode-map [(alt ?N)] 'org-move-thing-up) | (define-key org-mode-map [(alt ?T)] 'org-move-thing-down) ` ,-

[Orgmode] Re: two new functions: org-move-thing-up org-move-thing-down

2009-02-12 Thread Bernt Hansen
How are these functions different from org-metaup and org-metadown which are bound to M-up arrow and M-down arrow on my system? -Bernt Richard KLINDA writes: > Here are two functions for moving things around. Useful to bind them to > keys. > > Carsten, please include these functions in org if

[Orgmode] Re: two new functions: org-move-thing-up org-move-thing-down

2009-02-12 Thread Richard KLINDA
> Regarding 'Re: two new functions: org-move-thing-up org-move-thing-down'; > Bernt Hansen adds: > How are these functions different from org-metaup and org-metadown > which are bound to M-up arrow and M-down arrow on my system? I did not know about them, I was looking for "org.*move

Re: [Orgmode] New :base-extension parameter: :none

2009-02-12 Thread Daniel Clemente
Daniel Clemente writes: > Shouldn't that be > :base-extension 'none > with a symbol instead of a keyword? I think : is for KEYwords, symbols that > are going to be used as keys in a hash table. > Actually... don't we have nil for that? ___ Emac

Re: [Orgmode] New :base-extension parameter: :none

2009-02-12 Thread Daniel Clemente
Richard KLINDA writes: > , > |'("test" . (:base-directory "~/test/" > |:base-extension :none ;; < new :none keyword Shouldn't that be :base-extension 'none with a symbol instead of a keyword? I think : is for KEYwords, symbols that are going to be used a

[Orgmode] Feature request: save ID locations in org-save-all-org-buffers

2009-02-12 Thread Peter Westlake
Carsten, Thank you for adding org-revert-all-org-buffers. It's very helpful with syncing. I would like to ask for another change to help with syncing: please have org-save-all-org-buffers call org-id-locations-save, and load the locations in org-revert-all-org-buffers. Then ID values will be synce

Re: [Orgmode] New :base-extension parameter: :none

2009-02-12 Thread Richard KLINDA
> Regarding 'Re: [Orgmode] New :base-extension parameter: :none'; Daniel > Clemente adds: > Richard KLINDA writes: >> , | '("test" . (:base-directory "~/test/" :base-extension :none >> | ;; < new :none keyword > Shouldn't that be :base-extension 'none with a symbol inst

Re: [Orgmode] New :base-extension parameter: :none

2009-02-12 Thread Richard KLINDA
> Regarding 'Re: [Orgmode] New :base-extension parameter: :none'; Daniel > Clemente adds: > Daniel Clemente writes: >> Shouldn't that be :base-extension 'none with a symbol instead of a >> keyword? I think : is for KEYwords, symbols that are going to be >> used as keys in a hash

[Orgmode] Re: Feature improvement request: state change logging

2009-02-12 Thread Peter Jones
Wanrong Lin writes: > 2. Can we put all of those state change history logging messages into > a drawer like "STATE-HIST" (when the drawer is defined in > org-drawers), so it is less intrusive in the file? I also second this. I've been meaning to look into the code and figure out how difficult it

[Orgmode] Re: Bug and feature request in HTML export

2009-02-12 Thread Rasmus Pank Roulund
Hello Sebastian, > M-x customize-variable RET org-empty-line-terminates-plain-lists > will do what you need. Thank you so much. It worked like a charm. Have a nice weekend. Cheers, Rasmus ___ Emacs-orgmode mailing list Remember: use `Reply All' to se

[Orgmode] Re: LaTeX Export

2009-02-12 Thread Rasmus Pank Roulund
Carsten Dominik writes: > Some time ago I added a new matcher "$1" for single > charactersbetween dollars like in this case. People who > havecustomized this option unfortunately do not get to see it. That was probably the problem. It works a lot better now! Thanks. > That said, Giovanni's pr

[Orgmode] Re: minor option conflict

2009-02-12 Thread Samuel Wales
On Thu, Feb 12, 2009 at 01:53, Carsten Dominik wrote: > Why don't you simply set the variable `org-cycle-separator-lines' > to its default value 2? That works OK, and so does 0 (although ISTR for some reason that when I first wrote the bug it didn't, although I don't know why that would be as the

[Orgmode] Re: minor option conflict

2009-02-12 Thread Samuel Wales
Please ignore my previous post. Point was, this is not a major issue for me ATM, so I'm OK with 0 or 2 if 1 doesn't bother anybody else. Editing in gmail entry box is hazardous. ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies

Re: [Orgmode] Docs submitted (Was Re: Advice sought on managing decision alternatives.)

2009-02-12 Thread Tom Breton (Tehom)
> On Wed, Feb 11, 2009 at 4:18 AM, Tom Breton (Tehom) wrote: >> [...] >> I couldn't reproduce this. Is this on the same test file as before? > > Sorry for the delay in reply, Tom. I reproduce the situation below: > > First the test file. > > --8<---cut here---start-

Re: [Orgmode] Docs submitted (Was Re: Advice sought on managing decision alternatives.)

2009-02-12 Thread Tom Breton (Tehom)
> Tom Breton (Tehom) wrote: > >> >> >>> On Feb 11, 2009, at 2:08 AM, Tom Breton (Tehom) wrote: >> >>> >> >> >> >> (let* >> >> ((x 1)) >> >> (eval-after-load 'simple (setq x 2)) >> >> x) >> >> >> >> =3D> 2 >> >> >> >> >> >> >> >> (let* >> >> ((x 1)) >> >> (eval-after-load 'simple '(setq x

Patch Re: [Orgmode] Docs submitted (Was Re: Advice sought on managing decision alternatives.)

2009-02-12 Thread Tom Breton (Tehom)
Here is a patch that I hope will solve the problems people are having with org-choose.el. It contains two intended fixes: * `eval-after-load' gets a string argument. Apparently some emacsen can accept a symbol, but older ones can't. * "org-agenda" is required before `org-map-entries' is called

Re: [Orgmode] Docs submitted (Was Re: Advice sought on managing decision alternatives.)

2009-02-12 Thread Nick Dokos
Tom Breton (Tehom) wrote: > What version is this? Because that's clearly not what it does on emacs > 21.3.1. Here simple.el does not have (provide 'simple) in it. > > I see no provision for accepting a symbol in eval-after-load. The test it > uses is just: > > (assoc file load-history

[Orgmode] newbie's one-week report

2009-02-12 Thread Bill White
I've been immersed in org-mode for a week now and I'm deeply impressed. - I *feel* more in charge of my todo list - I'm making better progress on projects and tracking that progress better - org-mode actively helps me organize my thoughts and notes into orderly brain dumps and data piles that

[Orgmode] sorting and merging files

2009-02-12 Thread Alan E. Davis
I've gotten into a bit of a bind on sorting. A little explanation: I've been working at keeping the ~/org directory of three machines syncronized through a master repo on a USB flash drive. I've made a bit of progress, and for simple updates, it is basically working. I still don't grok merging

Re: [Orgmode] Docs submitted (Was Re: Advice sought on managing decision alternatives.)

2009-02-12 Thread Manish
On Fri, Feb 13, 2009 at 1:43 AM, Tom Breton (Tehom) wrote: >> On Wed, Feb 11, 2009 at 4:18 AM, Tom Breton (Tehom) wrote: >>> [...] >>> I couldn't reproduce this. Is this on the same test file as before? >> >> Sorry for the delay in reply, Tom. I reproduce the situation below: >> >> First the test f

Re: Patch Re: [Orgmode] Docs submitted (Was Re: Advice sought on managing decision alternatives.)

2009-02-12 Thread Manish
On Fri, Feb 13, 2009 at 2:25 AM, Tom Breton (Tehom) wrote: > Here is a patch that I hope will solve the problems people are having with > org-choose.el. It contains two intended fixes: > > * `eval-after-load' gets a string argument. Apparently some emacsen can > accept a symbol, but older ones can'

Re: [Orgmode] Feature request: save ID locations in org-save-all-org-buffers

2009-02-12 Thread Carsten Dominik
On Feb 12, 2009, at 6:31 PM, Peter Westlake wrote: Carsten, Thank you for adding org-revert-all-org-buffers. It's very helpful with syncing. I would like to ask for another change to help with syncing: please have org-save-all-org-buffers call org-id-locations-save, and load the locations i

Re: [Orgmode] Feature improvement request: state change logging

2009-02-12 Thread Carsten Dominik
On Feb 11, 2009, at 5:52 PM, Wanrong Lin wrote: Hi, My TODO sequence is set up as following: (setq org-todo-keywords '((sequence "TODO(t)" "STARTED(s!)" "WAITING(w@/!)" "MAYBE(m/!)" "DELEGATED(g@/!)" "DEFERRED(d!/!)" "HOLD(h!/!)" "|" "DONE(x)" "CANCELED(c)"))) The state change logging i

Re: [Orgmode] Feature request: HTML export, TODO keyword face

2009-02-12 Thread Carsten Dominik
Hi Wanrong, On Feb 11, 2009, at 6:00 PM, Wanrong Lin wrote: Hi, Right now in the HTML export the TODO keywords have either class="todo", or class="done". That loses all the face properties in the original TODO keywords. I think the TODO keywords faces are important visual aids to differ