Re: [Orgmode] org-agenda-files variable

2010-01-17 Thread Carsten Dominik

Hi Andrea,

On Jan 17, 2010, at 12:00 PM, andrea wrote:



I've set up in before-hook a function to append to org-agenda-files
every org file.
Now the problem is that sometimes it adds the file in form
~/path and sometimes in form /Users/user/path
It's annoying because on different machines I have different homes.

What could be the reason?
I always visit those files in the "relative" way, so using the ~...


This post is really incomplete, and it is impossible for anyone to give
a good answer - which means that everyone has to read my answer and then
your second attempt.  Things that could help are:

- What does your hook look like?
- There is no hook called `before-hook'
- Are you using a recent version of Org-mode?
- Are the "different machines" different operating systems?

Please, before you send an email to more than 700 people, stop
for a second and check if you have supplied all the information
that could possibly be useful.

Thanks.

- Carsten






___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


- Carsten





___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: Bug: Getting property ALLTAGS always returns nil [6.33trans (release_6.33f.130.gb8e0)]

2010-01-17 Thread Carsten Dominik


On Jan 17, 2010, at 11:03 PM, David Maus wrote:


And replying to myself:

The problem seems to be that some if-clauses in `org-entry-properties'
are not right:

- when requesting the ALLTAGS property, the code that adds its value
  to the alist did not check if the variable `specific' is  
"ALLTAGS", but "TAGS"


- when requesting the BLOCKED property, the code that adds its value
  to the alist did not check if the variable `specific' is  
"BLOCKED", but "TAGS"


So requesting one of those properties explicitly didn't work.

I attached three patches for org.el. Patch 0001 fixes a type in the
docstring of `org-entry-properties', patch 0002 modifies the if-clause
for the ALLTAGS property to check if `special' is "ALLTAGS" and patch
0003 modifies the if-clause for the BLOCKED property and adds BLOCKED
to the list of properties that are excluded if user requests all or
standard properties.

Hope I got it right and understood the logic in this function.


Yes you did.  There were really important fixes for quite
stupid bugs, thanks a lot!

- Carsten



___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Putting in bold some letters of a word

2010-01-17 Thread Carsten Dominik


On Jan 18, 2010, at 12:05 AM, Sébastien Vauban wrote:


Hi all,

I'm trying to Orgify a Word document of my beloved, whose writing a  
manual for
learning Spanish. In the first chapter (the one I'm converting),  
there are

some groups of letters that have to be in bold or underlined.

I've tried the following:

--8<---cut here---start->8---
Es *A*\~lfonso.
Es *B*\,enito.
Es *C*\{\}armen.
Es *C*hago.
--8<---cut here---end--->8---

But this gives:

--8<---cut here---start->8---
Es \textbf{A}\~lfonso.
Es \textbf{B}\,enito.
Es \textbf{C}\{\}armen.
Es *C*hago.
--8<---cut here---end--->8---

Which is not that good.


If LaTeX is the only tqarget you have, writing directly

Es \textbf{A}lfonso.
Es \textbf{B}enito.
Es \textbf{C}armen.
Es \textbf{C}hago.

is you best bet.

HTH

- Carsten



___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Fwd: Re: [Orgmode] Re: Repeater Options

2010-01-17 Thread John Rakestraw

neglected to cc the list .

--- Begin Message ---
> Ben Finney writes:

> How does one make these into a date+time specification, so they will
> show up at the correct place in the agenda?

* 12:00-13:00 This meets from noon to 1 on the 3d monday
  <%%(diary-float t 1 3)>

-- 
John Rakestraw
--- End Message ---
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Putting in bold some letters of a word

2010-01-17 Thread Jan Böcker
On 18.01.2010 00:05, Sébastien Vauban wrote:

> I've tried the following:
> 
> --8<---cut here---start->8---
>  Es *A*\~lfonso.
>  Es *B*\,enito.
>  Es *C*\{\}armen.
>  Es *C*hago.
> --8<---cut here---end--->8---
> [snip]
> 
> I guess it's possible to change some variable in order to let Org recognize
> the bold parametrization. 

Play around with the variable org-emphasis-regex-components.
For example, try changing "Allowed chars in post" from "-   .,:!?;'\")}\\"
to "a-z-.,:!?;'\")}\\".

If you want to know the regex Org constructs from this variable and
org-emphasis-alist:

M-: org-emph-re RET

> Is it bad doing so?

I don't know, but I guess if there is a customization option, it is
intended to be customizable :)

> If yes, I guess I can BIND the var just to do that in *that* document?

There seems to be a general feature of Emacs that lets you do that:

http://www.gnu.org/software/emacs/manual/html_node/emacs/Specifying-File-Variables.html


HTH, Jan


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: Repeater Options

2010-01-17 Thread Ben Finney
Jan Böcker  writes:

> On 17.01.2010 21:31, Nick Parker wrote:
> > Is there a way to specify a todo item that is scheduled to repeat on
> > the 3rd Thursday of the month? I tried to use +1m, however that does
> > not work the same way. Any suggestions?
>
> For more complex repeaters like that, you need to use a diary sexp
> like this:
>
> <%%(diary-float t 4 3>

How does one make these into a date+time specification, so they will
show up at the correct place in the agenda?

> This is adapted from an example in the Org documentation; refer to
> "Diary-style sexp entries" under "8.1 Timestamps, deadlines and
> scheduling".

Can someone who knows how this is supposed to be done please add it to
the “Repeating” part of the documentation? That's where many people
evidently expect to find how to do this.

-- 
 \“All opinions are not equal. Some are a very great deal more |
  `\robust, sophisticated and well supported in logic and argument |
_o__) than others.” —Douglas Adams |
Ben Finney



___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Putting in bold some letters of a word

2010-01-17 Thread Sébastien Vauban
Hi all,

I'm trying to Orgify a Word document of my beloved, whose writing a manual for
learning Spanish. In the first chapter (the one I'm converting), there are
some groups of letters that have to be in bold or underlined.

I've tried the following:

--8<---cut here---start->8---
 Es *A*\~lfonso.
 Es *B*\,enito.
 Es *C*\{\}armen.
 Es *C*hago.
--8<---cut here---end--->8---

But this gives:

--8<---cut here---start->8---
 Es \textbf{A}\~lfonso.
 Es \textbf{B}\,enito.
 Es \textbf{C}\{\}armen.
 Es *C*hago.
--8<---cut here---end--->8---

Which is not that good.

I guess it's possible to change some variable in order to let Org recognize
the bold parametrization. Can one give me a hint on this?  Is it bad doing so?

If yes, I guess I can BIND the var just to do that in *that* document?

Best regards,
  Seb

-- 
Sébastien Vauban



___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] enhance suggestion - clock mode line

2010-01-17 Thread Richard Riley

Is it possible for org-mode to display the clock mode status element when
you start up org-mode (by creating an agenda) and it discovers a hanging
"clocked in" clock? Should it even do this? 

-- 
Google Talk : rileyrg...@googlemail.com  http://www.google.com/talk



___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Repeater Options

2010-01-17 Thread Nick Parker
Jan,

That is exactly what I was looking for, thank you!

Nick Parker
www.developernotes.com


On Sun, Jan 17, 2010 at 3:39 PM, Jan Böcker  wrote:

> On 17.01.2010 21:31, Nick Parker wrote:
> > Is there a way to specify a todo item that is scheduled to repeat on the
> > 3rd Thursday of the month?  I tried to use +1m, however that does not
> > work the same way.  Any suggestions?
>
> For more complex repeaters like that, you need to use a diary sexp like
> this:
>
> <%%(diary-float t 4 3>
>
> The 4 specifies the 4th day of the week
> (0 = Sunday through 6 = Saturday).
>
> The 3 specifies the first Thursday.
>
> This is adapted from an example in the Org documentation; refer to
> "Diary-style sexp entries" under "8.1 Timestamps, deadlines and
> scheduling".
>
>
> I have an entry in my Org files which has two of these, to show up on
> both the second and the fourth Tuesday of every month.
>
> HTH, Jan
>
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: Bug: Getting property ALLTAGS always returns nil [6.33trans (release_6.33f.130.gb8e0)]

2010-01-17 Thread David Maus
And replying to myself:

The problem seems to be that some if-clauses in `org-entry-properties'
are not right:

 - when requesting the ALLTAGS property, the code that adds its value
   to the alist did not check if the variable `specific' is "ALLTAGS", but 
"TAGS"

 - when requesting the BLOCKED property, the code that adds its value
   to the alist did not check if the variable `specific' is "BLOCKED", but 
"TAGS"

So requesting one of those properties explicitly didn't work.

I attached three patches for org.el. Patch 0001 fixes a type in the
docstring of `org-entry-properties', patch 0002 modifies the if-clause
for the ALLTAGS property to check if `special' is "ALLTAGS" and patch
0003 modifies the if-clause for the BLOCKED property and adds BLOCKED
to the list of properties that are excluded if user requests all or
standard properties.

Hope I got it right and understood the logic in this function.

 -- David

--
OpenPGP... 0x99ADB83B5A4478E6
Jabber dmj...@jabber.org
Email. maus.da...@gmail.com



0001-fix-typo-in-docstring-of-org-entry-properties.patch
Description: Binary data


0002-return-special-property-ALLTAGS-if-requested-so.patch
Description: Binary data


0003-return-special-property-BLOCKED-if-requested-so.patch
Description: Binary data


pgpVldfFBuRNI.pgp
Description: PGP signature
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Repeater Options

2010-01-17 Thread Jan Böcker
On 17.01.2010 22:39, Jan Böcker wrote:

> <%%(diary-float t 4 3>
  ^ oops, missed a paren there.

This should be <%%(diary-float t 4 3)>



___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Repeater Options

2010-01-17 Thread Jan Böcker
On 17.01.2010 21:31, Nick Parker wrote:
> Is there a way to specify a todo item that is scheduled to repeat on the
> 3rd Thursday of the month?  I tried to use +1m, however that does not
> work the same way.  Any suggestions?

For more complex repeaters like that, you need to use a diary sexp like
this:

<%%(diary-float t 4 3>

The 4 specifies the 4th day of the week
(0 = Sunday through 6 = Saturday).

The 3 specifies the first Thursday.

This is adapted from an example in the Org documentation; refer to
"Diary-style sexp entries" under "8.1 Timestamps, deadlines and scheduling".


I have an entry in my Org files which has two of these, to show up on
both the second and the fourth Tuesday of every month.

HTH, Jan


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Bug: Getting property ALLTAGS always returns nil [6.33trans (release_6.33f.130.gb8e0)]

2010-01-17 Thread David Maus

Remember to cover the basics, that is, what you expected to happen and
what in fact did happen.  You don't know how to make a good report?  See

 http://orgmode.org/manual/Feedback.html#Feedback

Your bug report will be posted to the Org-mode mailing list.


If I try to get the property ALLTAGS of a headline using
`org-entry-get' the result is always nil.

Using git bisect with this simple elisp script:

,
| ;; bisect orgmode bug: (org-entry-get (point) "ALLTAGS") always
| ;; returns nil
|
| ;;; Load orgmode
| (add-to-list 'load-path "~/code/remote/org-mode/lisp")
| (require 'org-install)
| (require 'org)
|
| (with-temp-buffer
|   (org-mode)
|   (insert "* Headline :tag:")
|   (let ((tags
|  (org-entry-get (point-min) "ALLTAGS")))
| (if (null tags)
| (kill-emacs 1)
|   (kill-emacs 0
`

Shows that commit b8e0d6fdb41f2165d675e89fcb54b741c971f6f4 is the
first one where getting ALLTAGS for a headline with a tag return nil.

Bisect log:

,
| git bisect start
| # bad: [0e370d498b34469a025cdce864fd5c5987bf8050] Fix typo
| git bisect bad 0e370d498b34469a025cdce864fd5c5987bf8050
| # good: [2b528343557b4ff08af8efb283f01b5d231a7fc4] Release 6.33
| git bisect good 2b528343557b4ff08af8efb283f01b5d231a7fc4
| # good: [e8ec6d6d115cbaf09cffd54f4634789cb2081187] Allow unrestricted 
completion on properties
| git bisect good e8ec6d6d115cbaf09cffd54f4634789cb2081187
| # bad: [70d6341f2e4cec845d6ff2925f8b6c73dfddffa7] Improve future detection 
when reading dates
| git bisect bad 70d6341f2e4cec845d6ff2925f8b6c73dfddffa7
| # bad: [e690ae7eb016f5635d706a681d158e4d2d1bc3c7] Merge branch 
'blocked-as-special-property'
| git bisect bad e690ae7eb016f5635d706a681d158e4d2d1bc3c7
| # good: [1bd88b0394503d55be0bacf6927d0f22e708d7c1] Document that one should 
not change the `state' entry in `org-log-note-headings'
| git bisect good 1bd88b0394503d55be0bacf6927d0f22e708d7c1
| # good: [f444c8cd679dc488b1016074f1eb25c7c1b6f1af] Export: Do not check for 
protectedness at the end of a line
| git bisect good f444c8cd679dc488b1016074f1eb25c7c1b6f1af
| # good: [30d179c85e98d2e3176bd8dd0b489d9ac32979dc] LaTeX export: Fix line end 
after caption command for longtable environments
| git bisect good 30d179c85e98d2e3176bd8dd0b489d9ac32979dc
| # good: [1886c46d9d7b68559b0ba142c828d2c054bf6321] Merge branch 'master' of 
git+ssh://repo.or.cz/srv/git/org-mode
| git bisect good 1886c46d9d7b68559b0ba142c828d2c054bf6321
| # bad: [b8e0d6fdb41f2165d675e89fcb54b741c971f6f4] Make a new special property 
BLOCKED, indicating if entry is blocked
| git bisect bad b8e0d6fdb41f2165d675e89fcb54b741c971f6f4
`

 -- David

Emacs  : GNU Emacs 23.1.91.1 (i486-pc-linux-gnu, GTK+ Version 2.18.5)
 of 2010-01-11 on elegiac, modified by Debian
Package: Org-mode version 6.33trans (release_6.33f.130.gb8e0)

current state:
==
(setq
 org-wl-link-shimbun-to-xref t
 org-log-done 'note
 org-export-latex-after-initial-vars-hook '(org-beamer-after-initial-vars)
 org-todo-keyword-faces '(("TODO" :foreground "red" :weight bold) ("WAIT" 
:foreground "firebrick" :weight bold)
  ("DONE" :foreground "green") ("IDEA" :foreground 
"gold" :weight bold)
  ("CANC" :foreground "LightSlateGrey") ("PROJ" 
:foreground "DeepSkyBlue" :weight bold))
 org-agenda-custom-commands '(("R" "Refile new tasks and notes" tags 
"LEVEL=2+REFILE"))
 org-agenda-files '("/home/david/org/priv/priv.org" 
"/home/david/org/work/work.org" "/home/david/org/pg/pg.org"
"/home/david/org/bucket.org" "/home/david/org/tec/tec.org")
 org-blocker-hook '(org-block-todo-from-children-or-siblings-or-parent)
 org-agenda-tags-column -120
 org-metaup-hook '(org-babel-load-in-session-maybe)
 org-after-todo-state-change-hook '(org-clock-out-if-current)
 org-id-method 'uuidgen
 org-agenda-todo-ignore-scheduled t
 org-babel-interpreters '("js" "ditaa" "latex" "ruby" "sh" "emacs-lisp")
 org-export-latex-format-toc-function 'org-export-latex-format-toc-default
 org-log-redeadline 'time
 org-export-preprocess-hook '(org-export-blocks-preprocess)
 org-tab-first-hook '(org-babel-hide-result-toggle-maybe 
org-hide-block-toggle-maybe)
 org-src-mode-hook '(org-src-mode-configure-edit-buffer)
 org-confirm-shell-link-function 'yes-or-no-p
 org-export-first-hook '(org-beamer-initialize-open-trackers)
 org-wl-link-remove-filter t
 org-todo-keywords '((sequence "TODO(t)" "WAIT(w@/!)" "|" "DONE(D)") (type 
"PROJ(p)" "IDEA(i)" "|" "CANC(C)"))
 org-agenda-before-write-hook '(org-agenda-add-entry-text)
 org-default-notes-file "~/org/bucket.org"
 org-log-reschedule 'time
 org-cycle-hook '(org-cycle-hide-archived-subtrees org-cycle-hide-drawers 
org-cycle-show-empty-lines
  org-optimize-window-after-visibility-change)
 org-export-preprocess-before-normalizing-links-hook 
'(org-remove-file-link-modifiers)
 org-mode-hook '((lambda nil

[Orgmode] Repeater Options

2010-01-17 Thread Nick Parker
Is there a way to specify a todo item that is scheduled to repeat on the 3rd
Thursday of the month?  I tried to use +1m, however that does not work the
same way.  Any suggestions?

Nick Parker
www.developernotes.com
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: [Fwd: Orgmode] Proposal: Enhanced link capabilites to Wanderlust messages

2010-01-17 Thread David Maus
Hi Tokuya,

At Wed, 13 Jan 2010 01:35:59 +0900,
Tokuya Kameshima wrote:
>
> Hi David,
>
> Thank you for the mail.  I missed your proposal on the mailing list.
>
> As for "1.3 Link to thread", I think we can avoid the global level
> implementation by the following modification:
>
> In the WL summary mode, you can toggle the thread open/close
> status by pressing '/' key.  If `org-wl-link-to-thread' is set to
> t and the thread is *closed*, `org-wl-store-link' stores a link to
> the thread.  Otherwise, it stores a link to the message.
>
> The patch is below.
>
> [snip]
>
> I am not sure this is a good solution since this behavior seems a
> little bit tricky for the users.  But at least it avoids the global
> setting problem.

I'm not quite sure, either. My main concern is that under some
circumstances Orgmode will store a link to a 'thread' filter folder
even if the user does not intend to. And if I am the user I expect to
have complete control over my computer.

Using the 'folded' state of a thread gives control when storing a link
to a message that is part of a thread but not if the message is *not*
(yet) part of one. That is: A single message is a message in a threat
that has exactly one message.

Currently I am not sure anymore if storing a link to a thread is that
important. Storing a regular link to a message that is part of the
threat would be sufficient as opening the message in it's folder will
also show the threat the message is part of.

 -- David

--
OpenPGP... 0x99ADB83B5A4478E6
Jabber dmj...@jabber.org
Email. maus.da...@gmail.com


pgpgBc7MSjcLf.pgp
Description: PGP signature
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Bug: org-habit and headlines with links

2010-01-17 Thread Luke Amdor
When I have a headline with a link on it and I have that headline's habit
property set to true, org-habit will barf all over my link when presenting
the agenda. This will only happen when org-habit-graph-column is set
something shorter than the full raw text of the link (which is about all of
them).

I ran git bisect on org-mode and found the bad commit to be:

commit 2f5f6e401f187c2db8131cdbc4355b688ce4c55a
Author: Carsten Dominik 
Date:   Mon Jan 4 09:58:53 2010 +0100

Turn off invisibility while constructing habit graphs

Bernt Hansen reported strange things happening to the display when
graph tasks are hidden while updating a task in the agenda.

Here's my bisect log:

# bad: [0e370d498b34469a025cdce864fd5c5987bf8050] Fix typo
# good: [a7fb89e9edf59f50294199046e570b4b11bb13b1] Merge branch 'master' of
git+ssh://repo.or.cz/srv/git/org-mode
git bisect start 'origin/master' 'HEAD'
# good: [21ad7f0bef20addfe15fbe3e95d65e6c810d68f1] Fix typo
git bisect good 21ad7f0bef20addfe15fbe3e95d65e6c810d68f1
# good: [0b5d9bf1c62454523b275dd6a6b95bf881580eb1] Merge branch 'org-ctags'
git bisect good 0b5d9bf1c62454523b275dd6a6b95bf881580eb1
# bad: [588a42d4fd2e59e3f69d5a3f9ea00ff3a64f5df9] org-exp-generic.el: Fix
bug with closing bodies
git bisect bad 588a42d4fd2e59e3f69d5a3f9ea00ff3a64f5df9
# bad: [32441cd15150f541d3ba50633cfb9fffc8d3d11a] Fix agenda link opening
bug
git bisect bad 32441cd15150f541d3ba50633cfb9fffc8d3d11a
# bad: [ddcb2be1c8920fabfbca3777cc774ed1ac653a6e] Work-around for formatting
bug with email subject line from wanderlust
git bisect bad ddcb2be1c8920fabfbca3777cc774ed1ac653a6e
# good: [c23ade5d8e4b3cd4f0c4dbe5260cad1f227d2710] Make C-c r C customize
remember templates
git bisect good c23ade5d8e4b3cd4f0c4dbe5260cad1f227d2710
# good: [f266ee62bb8282cc883adea9f26362b2d3b1ab7d] Fix typo
git bisect good f266ee62bb8282cc883adea9f26362b2d3b1ab7d
# bad: [2f5f6e401f187c2db8131cdbc4355b688ce4c55a] Turn off invisibility
while constructing habit graphs
git bisect bad 2f5f6e401f187c2db8131cdbc4355b688ce4c55a

Luke
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] How to "snooze" a repeating item

2010-01-17 Thread Luke Amdor
i've been using the org-agenda-date-later function to schedule things later.
I think it's what you're looking for. It's not bound to anything, but I bind
it to ")" via

(org-defkey org-agenda-mode-map ")" 'org-agenda-date-later)

Luke


On Tue, Dec 1, 2009 at 4:34 PM, Andrew M. Nuxoll  wrote:

> I've been using org-mode for four months now and I just love it.  So I
> think I'm post-newb but still very amateur.
>
> Anyway, my to-do list has several repeating scheduled items like this
> contrived example:
>
> * TODO [#B] Lunch date with Sarah at 12pm
> SCHEDULED: <2009-12-08 Tue +1w>
>
> Or, in English, I meet with Sarah for lunch once a week on Tuesdays.
>
> Now, let's say that Sarah calls on Monday afternoon and says, "Can we do
> lunch on Wednesday this week?" and I say "Sure thing."
>
> Now I have a problem.  I could shift the date to Wednesday like this:
>
> * TODO [#B] Lunch date with Sarah at 12pm
> SCHEDULED: <2009-12-09 Wed +1w>
>
> But that will mean that the following week it will *still* be scheduled for
> Wednesdays (specifically Dec 16 instead of Dec 15).  I miss my regular lunch
> date with Sarah and catch ire for standing her up.
>
> How do I handle situations like this?
> It seems like I either need a time stamp "stack" or I need a temporary flag
> that "self destructs" after a prescribed time.
>
> :AMN:
>
>
>
> ___
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Fwd: Editing body text in MobileOrg

2010-01-17 Thread Cameron Horsburgh
Sorry folks,

It turns out I wasn't replying to the list. Here's the thread for posterity.

-- Forwarded message --
From: Cameron Horsburgh 
Date: 2010/1/18
Subject: Re: Editing body text in MobileOrg
To: Richard Moreland 


Hi Richard,

I've found the problem. It turns out that my file didn't have a .org
extension. Once I added that, everything worked fine. I knew it was
something simple...!

Thanks for your help and such a useful application.

2010/1/17 Richard Moreland 

Hmm, I just tried this as test.org and it worked:
>
> * Test
> | a | b | c |
> | d | e | f |
>
> Is your's different?  Can you send me a small sample that causes it to
> fail?
>
> On Jan 17, 2010, at 7:04 AM, Cameron Horsburgh wrote:
>
> > Thanks for your reply.
> >
> > I have tried preceding the table with a line:
> >
> > * table
> >
> > but this doesn't get me very far. The node shows up everywhere it is
> > supposed to, but the table is still missing.
> >
> > Strange!
> >
> > On Sunday, January 17, 2010, Richard Moreland  wrote:
> >> Do you have any * Node entries at all in that file?  If it is just an
> .org file with a table in it, you'll probably see nothing.
> >>
> >> The plain text/tables before the first node are just eaten up in the
> current code.
> >>
> >> I never really considered that use case, and to be honest I'm not too
> sure how to support it!  I'll have to give it some more thought.
> >>
> >> -Richard
> >>
> >> On Jan 17, 2010, at 5:05 AM, Cameron Horsburgh wrote:
> >>
> >>> Hi folks,
> >>>
> >>> I'm missing something really simple here, but I just can't put my
> finger on it.
> >>>
> >>> I want to use MobileOrg to record data that I can eventually upload to
> emacs. The data file (in emacs) consists of a single table. However, when I
> sync it to MobileOrg the file appears to be empty. The details page contains
> no text, and viewing as a document produces a blank page.
> >>>
> >>> All of my other files in MobileOrg work as expected, although they are
> more 'traditional' tree style outlines.
> >>>
> >>> What am I missing here?
> >>>
> >>> --
> >>>
> >>>
> >>> Cameron Horsburgh
> >>> blog: http://spiritcry.wordpress.com
> >>> ___
> >>> Emacs-orgmode mailing list
> >>> Please use `Reply All' to send replies to the list.
> >>> Emacs-orgmode@gnu.org
> >>> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
> >>
> >>
> >
> > --
> >
> >
> > Cameron Horsburgh
> > blog: http://spiritcry.wordpress.com
>
>


-- 


Cameron Horsburgh
blog: http://spiritcry.wordpress.com



-- 


Cameron Horsburgh
blog: http://spiritcry.wordpress.com
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


RE: [Orgmode] How to "snooze" a repeating item

2010-01-17 Thread Nuxoll, Andrew
Thanks, Luke but I don't think that works.  I want a command that will move the 
event forward a day but still keep the repeat at a set interval from the 
original day.  It's still something I find I need to do frequently but have no 
way to do other than manually. =(

:AMN:


-Original Message-
From: Luke Amdor [mailto:luke.am...@gmail.com]
Sent: Sun 1/17/2010 7:26 AM
To: Nuxoll, Andrew
Cc: emacs-orgmode@gnu.org
Subject: Re: [Orgmode] How to "snooze" a repeating item
 
i've been using the org-agenda-date-later function to schedule things later.
I think it's what you're looking for. It's not bound to anything, but I bind
it to ")" via

(org-defkey org-agenda-mode-map ")" 'org-agenda-date-later)

Luke


On Tue, Dec 1, 2009 at 4:34 PM, Andrew M. Nuxoll  wrote:

> I've been using org-mode for four months now and I just love it.  So I
> think I'm post-newb but still very amateur.
>
> Anyway, my to-do list has several repeating scheduled items like this
> contrived example:
>
> * TODO [#B] Lunch date with Sarah at 12pm
> SCHEDULED: <2009-12-08 Tue +1w>
>
> Or, in English, I meet with Sarah for lunch once a week on Tuesdays.
>
> Now, let's say that Sarah calls on Monday afternoon and says, "Can we do
> lunch on Wednesday this week?" and I say "Sure thing."
>
> Now I have a problem.  I could shift the date to Wednesday like this:
>
> * TODO [#B] Lunch date with Sarah at 12pm
> SCHEDULED: <2009-12-09 Wed +1w>
>
> But that will mean that the following week it will *still* be scheduled for
> Wednesdays (specifically Dec 16 instead of Dec 15).  I miss my regular lunch
> date with Sarah and catch ire for standing her up.
>
> How do I handle situations like this?
> It seems like I either need a time stamp "stack" or I need a temporary flag
> that "self destructs" after a prescribed time.
>
> :AMN:
>
>
>
> ___
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: Repeating dates on named weekdays

2010-01-17 Thread Glauber Alex Dias Prado
William Halliburton  writes:

> Thanks much. That is exactly what I was wishing for.
sorry for overlooking your question, i didnt remembered how to do it either.
>
> On Fri, Jan 15, 2010 at 6:08 PM, John Rakestraw 
> wrote:
>
>>
>> > every third Monday of each month
>>
>> I'm by no means the org/emacs expert, but here's what I'd do:
>>
>> * Meeting on 3d Monday of each month
>>  <%%(diary-float t 1 3)>
>>
>> (see
>>
>> http://www.gnu.org/software/emacs/manual/html_node/emacs/Sexp-Diary-Entries.html
>> and http://orgmode.org/manual/Weekly_002fdaily-agenda.html)
>>
>> --
>> John Rakestraw
>>


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Bug: \log and friends are not recognized as math [6.34b]

2010-01-17 Thread Rasmus Pank Roulund

Remember to cover the basics, that is, what you expected to happen and
what in fact did happen.  You don't know how to make a good report?  See

 http://orgmode.org/manual/Feedback.html#Feedback

Your bug report will be posted to the Org-mode mailing list.


Hello,
It seems a bit extravagant to include all of the system-info so I removed
most of it . . .

Anyhow Org does not recognized \log and friends as math when using the 
latex-exporter.


Try the following minimal example

\log is math. so is \ln

The LaTeX result is:

\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{longtable}
\usepackage{float}
\usepackage{wrapfig}
\usepackage{soul}
\usepackage{amssymb}
\usepackage{hyperref}

% NOTICE THE TITLE.
\title{\log is math. so is \ln}
% It should have been $\log$ and $\ln$
\author{Rasmus}
\date{17 January 2010}

\begin{document}

\maketitle

\setcounter{tocdepth}{3}
\tableofcontents
\vspace*{1cm}

\end{document}

Would it be possible to adopt \log-like functions as math? \cos, \tan,
\sin are also affected.
It is so convenient to write \log-like but I have to fix the exported
latex file manually afterward.

BTW: I created a very complex econometric note in org. Once I had
squeezed the LaTeX-related bugs (math typos) the export was /perfect/!
(except for the \log's). Good work!

--Rasmus


Emacs  : GNU Emacs 23.1.91.1 (i686-pc-linux-gnu, GTK+ Version 2.18.5)
 of 2010-01-15 on pank
Package: Org-mode version 6.34b


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] org-agenda-files variable

2010-01-17 Thread andrea

I've set up in before-hook a function to append to org-agenda-files
every org file.
Now the problem is that sometimes it adds the file in form
~/path and sometimes in form /Users/user/path
It's annoying because on different machines I have different homes.

What could be the reason?
I always visit those files in the "relative" way, so using the ~...



___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Custom time display in mode-line

2010-01-17 Thread Daniel Clemente

Hi

  org-clock-modeline-total now accepts following values: current, today, 
repeat, all, auto.
  It would be useful to allow it to accept either a custom function or a format 
string which composes a text string like:
"0:10 (tot: 1:10/2:00)"
  meaning: „clocking 10 minutes in this session, but the total clocked time 
(including those 10min) is 1:10, and the effort estimate is 2:00“.

  Not all entries have a „total clocked time“ (: entries clocked for the first 
time) and not all entries have an estimate.
- Either many format strings must be given (_simple, _with_total, 
_with_estimate, _with_total_and_estimate), e.g. ("%current" "%current (tot: 
%total)" "%current/%estimate" "%current (tot:%total/%estimate)")
- … or we must cope with results like "0:10 (tot: /)"
- … or a custom function must be used to do those conditionals.

  Accepting a function would be like redefining org-clock-get-clock-string but 
without touching org's core.


  I tried to change the code but I'm confused as to why 
org-clock-modeline-total (a mere visualization/„view“ setting) is read in 
org-clock-get-sum-start (which is a „model“/core function and therefore not 
tied to any particular „view“). I think org-clock-modeline-total should be read 
just in org-clock-get-clock-string.
  Documentation of org-clock-get-clocked-time is also wrong („The time returned 
includes the time spent on this task in previous clocking intervals.“) since 
this depends on what org-clock-get-sum-start did.


--
Daniel


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Editing body text in MobileOrg

2010-01-17 Thread Cameron Horsburgh
Hi folks,

I'm missing something really simple here, but I just can't put my finger on
it.

I want to use MobileOrg to record data that I can eventually upload to
emacs. The data file (in emacs) consists of a single table. However, when I
sync it to MobileOrg the file appears to be empty. The details page contains
no text, and viewing as a document produces a blank page.

All of my other files in MobileOrg work as expected, although they are more
'traditional' tree style outlines.

What am I missing here?

-- 


Cameron Horsburgh
blog: http://spiritcry.wordpress.com
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode