Re: [Orgmode] POLL: Removing obsolete variables and features

2007-02-21 Thread Carsten Dominik

OK, I'll leave that one in.

- Carsten

On Feb 22, 2007, at 0:05, Piotr Zielinski wrote:

On 21/02/07, Egli Christian (KIRO 43) 
<[EMAIL PROTECTED]> wrote:

> ;; FIXME: This variable could be removed, default nil
> (defcustom org-agenda-include-all-todo nil

I am using this to see all the todos that I have not scheduled in my
agenda.


I'd also vote for keeping this variable.

Piotr


___
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] Buglet with scheduled in TODO lists

2007-02-21 Thread Carsten Dominik


On Feb 21, 2007, at 21:04, Jason F. McBrayer wrote:


I have org-agenda-todo-ignore-scheduled set to t.  One behaviour I have
noticed is that scheduled TODO items will still show up in TODO-type
agenda buffers if there is something in between the headline and the
SCHEDULED line.


There are really two bugs here.  The first is that the clocking info
get between the headline and the scheduling line - this should not
happen.  Here is the patch - if you apply it,
also go through the file and push the SCHEDULED/DEADLINE stuff back
to right after the headline.

--- org.el.orig Thu Feb 22 08:15:21 2007
+++ org.el  Thu Feb 22 08:15:32 2007
@@ -12459,7 +12459,9 @@
   (beginning-of-line 2)
   (when (and (looking-at (concat "[ \t]*" org-keyword-time-regexp))
 (not (equal (match-string 1) org-clock-string)))
-   (beginning-of-line 1))
+   ;; First line hast scheduling info, move one further
+   (beginning-of-line 2)
+   (or (bolp) (newline)))
   (insert "\n") (backward-char 1)
   (indent-relative)
   (insert org-clock-string " ")



The second bug is that yes, indeed, the scheduling line could/should 
also

be found further down.  I can fix that too, but there are also other
places where the code assumes (I believe) that this info is always in
the second line.  I am not yet sure if I will change this.

- Carsten




  This can happen very easily if one is using time
tracking.

Example:

 NEXTACTION Weekly Review REPEAT(+1w)
 CLOCK: [2007-02-20 Tue 08:30]--[2007-02-20 Tue 08:50] =>  0:20
 CLOCK: [2007-02-13 Tue 08:30]--[2007-02-13 Tue 09:03] =>  0:33
 CLOCK: [2007-02-05 Mon 13:30]--[2007-02-05 Mon 14:29] =>  0:59
 SCHEDULED: <2007-02-26 Mon 08:30>

Weekly review appears in my list of Next Actions, and I expect that it
shouldn't.  If I move the SCHEDULED line to right below the headline, 
it

doesn't appear in my list, which I believe is the correct behaviour.

--
+---+
| Jason F. McBrayer[EMAIL PROTECTED]  |
| If someone conquers a thousand times a thousand others in |
| battle, and someone else conquers himself, the latter one |
| is the greatest of all conquerors.  --- The Dhammapada|


___
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] POLL: Removing obsolete variables and features

2007-02-21 Thread Piotr Zielinski

On 21/02/07, Egli Christian (KIRO 43) <[EMAIL PROTECTED]> wrote:

> ;; FIXME: This variable could be removed, default nil
> (defcustom org-agenda-include-all-todo nil

I am using this to see all the todos that I have not scheduled in my
agenda.


I'd also vote for keeping this variable.

Piotr


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


[Orgmode] Buglet with scheduled in TODO lists

2007-02-21 Thread Jason F. McBrayer
I have org-agenda-todo-ignore-scheduled set to t.  One behaviour I have
noticed is that scheduled TODO items will still show up in TODO-type
agenda buffers if there is something in between the headline and the
SCHEDULED line.  This can happen very easily if one is using time
tracking.

Example:

 NEXTACTION Weekly Review REPEAT(+1w)
 CLOCK: [2007-02-20 Tue 08:30]--[2007-02-20 Tue 08:50] =>  0:20
 CLOCK: [2007-02-13 Tue 08:30]--[2007-02-13 Tue 09:03] =>  0:33
 CLOCK: [2007-02-05 Mon 13:30]--[2007-02-05 Mon 14:29] =>  0:59
 SCHEDULED: <2007-02-26 Mon 08:30> 

Weekly review appears in my list of Next Actions, and I expect that it
shouldn't.  If I move the SCHEDULED line to right below the headline, it
doesn't appear in my list, which I believe is the correct behaviour.

-- 
+---+
| Jason F. McBrayer[EMAIL PROTECTED]  |
| If someone conquers a thousand times a thousand others in |
| battle, and someone else conquers himself, the latter one |
| is the greatest of all conquerors.  --- The Dhammapada|


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


[Orgmode] Linking Headlines across several files

2007-02-21 Thread Aditya Siram
Is there a way to link headlines across several files?

For example, I have a Projects.org and Contacts.org

Projects.org*

* Mow the lawn
# << Chem Lawn >>

End**

***Contacts.org**
* Chem Lawn
555-555-

***End***

When I click on the Chem Lawn link in Projects.org, can I have it the headline
in Contacts.org?

Thanks..
Deech



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


Re: [Orgmode] setting time for agenda items

2007-02-21 Thread Scott Jaderholm

On 2/20/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:


 How do I include the 2:15pm on the calendar- not just the date?



Bastre,

My favorite way is to add the time while typing to event name and then add
the date.

So I type:
* Audit meeting 3pm C-c C-s

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


Re: [Orgmode] setting time for agenda items

2007-02-21 Thread Carsten Dominik


On Feb 20, 2007, at 15:22, [EMAIL PROTECTED] wrote:


org-mode users:

I have recently started using org-mode instead of MS Outlook.  I like 
what I see.  I have a question that I cannot seem to find the answer 
to: For scheduled events (org-schedule function), how do I set the 
appointment time?  For example, I have a doctors appointment on 
02/23/2007 at 2:15pm. How do I include the 2:15pm on the calendar- not 
just the date?  I verified the org-agenda-include-diary is set to "t".


This is an appointment, so I would suggest to not "schedule" this, but
simply add a plain time stamp in the way jason suggests.

- Carsten



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


Re: [Orgmode] setting time for agenda items

2007-02-21 Thread Carsten Dominik


On Feb 21, 2007, at 14:49, Bastien wrote:


[EMAIL PROTECTED] writes:


For example, I have a doctors appointment on 02/23/2007 at
2:15pm. How do I include the 2:15pm on the calendar- not just the
date?


* Doctor appointment
  SCHEDULED: <2007-02-23 Fri 14:15>


It is not yet convenient to enter a time when setting a deadline or a 
schedule.
I'll change this in 4.66, so that you can simply type a time at the 
prompt

during C-c C-d and C-c C-s.

Thanks.

- Carsten



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


Re: [Orgmode] setting time for agenda items

2007-02-21 Thread Bastien
[EMAIL PROTECTED] writes:

> For example, I have a doctors appointment on 02/23/2007 at
> 2:15pm. How do I include the 2:15pm on the calendar- not just the
> date?

* Doctor appointment 
  SCHEDULED: <2007-02-23 Fri 14:15>

?

-- 
Bastien


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


Re: [Orgmode] setting time for agenda items

2007-02-21 Thread Jason F. McBrayer
On Tue, 2007-02-20 at 07:22 -0700, [EMAIL PROTECTED] wrote:
> For scheduled events (org-schedule function), how do I set the appointment 
> time?  

Instead of typing C-c C-z to insert a scheduled item, type C-u C-c C-z,
and it will include a time stamp instead of just a date stamp.  The time
will be the current time, so you'll have to edit it.  Hope this helps.

-- 
+---+
| Jason F. McBrayer[EMAIL PROTECTED]  |
| If someone conquers a thousand times a thousand others in |
| battle, and someone else conquers himself, the latter one |
| is the greatest of all conquerors.  --- The Dhammapada|


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


[Orgmode] setting time for agenda items

2007-02-21 Thread bastre
org-mode users:

I have recently started using org-mode instead of MS Outlook.  I like what I 
see.  I have a question that I cannot seem to find the answer to: For scheduled 
events (org-schedule function), how do I set the appointment time?  For 
example, I have a doctors appointment on 02/23/2007 at 2:15pm. How do I include 
the 2:15pm on the calendar- not just the date?  I verified the 
org-agenda-include-diary is set to "t".

Thanks so much in advance!

--Bastre


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


Re: [Orgmode] POLL: Removing obsolete variables and features

2007-02-21 Thread Carsten Dominik


On Feb 21, 2007, at 9:11, Egli Christian ((KIRO 43)) wrote:



;; FIXME: This variable could be removed, default nil
(defcustom org-agenda-include-all-todo nil


I am using this to see all the todos that I have not scheduled in my
agenda. Why would you want to remove it? What would the alternative be
if this variable was no longer? Always pressing C-u M-x org-agenda?


Alternatives are:

1. C-u C-c a  (as you mention above)

2. Call C-c a t whenever you want to look at your TODO entries.

3. Making a custom agenda command that includes both the TODO list
   and the agenda as two separate blocks.  You may even redefine
   the "a" key, so that you get this still with `C-c a a':

 (setq org-agenda-custom-commands
 '(("a" "todo and agenda"
((alltodo) (agenda)) nil)))


And of course I can leave that variable in - the simplification is
minimal in this case.

- Carsten



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


RE: [Orgmode] POLL: Removing obsolete variables and features

2007-02-21 Thread Egli Christian (KIRO 43)
Hi Carsten 

> I am doing some cleaning up, and would like to remove from org-mode
> 11 customization variables (which I think nobody will ever use).

I'm all for simplifying org-mode and making maintenance of the code
easier by removing dead and unused code but please leave my little pet
feature in :-)

> ;; FIXME: This variable could be removed, default nil
> (defcustom org-agenda-include-all-todo nil

I am using this to see all the todos that I have not scheduled in my
agenda. Why would you want to remove it? What would the alternative be
if this variable was no longer? Always pressing C-u M-x org-agenda?

Maybe I could agree to the removal if I had another easy way to see my
unscheduled todos (that is as much in your face as the agenda-view).

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


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