[Orgmode] Re: insert todo from agenda?

2008-06-16 Thread Paul R
Cezar Halmagean [EMAIL PROTECTED] writes:

 Richard G Riley [EMAIL PROTECTED] writes:


 I think that, if I understand the issue, from the agenda it would be
 nicer for a default action to insert with the scheduled date defaulted
 to the day which has focus.

 exactly...

I wonder where is the right place to implement this. I would tend to
think it is in remember. Has anyone checked if remember can already
match some context data around the point, and put it back in the
template ?

-- 
  Paul


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


[Orgmode] Re: agenda display of scheduled sub-tasks

2008-06-16 Thread knubee
 Try making Sub-tasks A and B TODO items. Doesn't that do more or less  
 what you want?

oh, that sounds promising -- if you mean create the sub-tasks as sub-TODO
items. (i do want the sub-tasks grouped as sub-tasks under the tasks).

if this is what you mean, how to accomplish this? my attempts to create TODO
items as sub-tasks under an existing task result in things like: changing state
of main task to done, etc.

 (It won't show the sub-tasks as [0/2], but then that  
 wouldn't be accurate---neither sub-task has 2 components.)

that's ok. i am actually not too concerned about whether the solution provides
an indicator of number/percentage of sub-tasks completed.

thanks.






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


Re: [Orgmode] Re: insert todo from agenda?

2008-06-16 Thread Carsten Dominik


On Jun 16, 2008, at 5:44 AM, Richard G Riley wrote:


Manish [EMAIL PROTECTED] writes:


May be I misunderstood but it seems following setup
does all that you want (and more).

Please see below.

,[ Relevant setup ]
| (defun my-start-clock-if-needed ()
|  (save-excursion
|(goto-char (point-min))
|(when (re-search-forward :CLOCK-IN: nil t)
|   (replace-match )
|   (org-clock-in
|
| (setq org-remember-templates
|   (quote
|(
| (Client1 Task ?g * NEWTASK %? %^g %\n  SCHEDULED: %t\n
:CLOCK-IN:\n  CREATED: %U\n  ~/org.git/client1.org Unprocessed
Tasks)
| (Client2 Task ?G * NEWTASK %? %^g % \n  SCHEDULED: %t\n
:CLOCK-IN:\n  CREATED: %U\n  ~/org.git/client2.org Unprocessed
Tasks)
| (Personal Tasks ?p * NEWTASK %? % \n  SCHEDULED: %t\n
:CLOCK-IN:\n  CREATED: %U\n  ~/org.git/personal.org Unprocessed
Tasks)
| (Appointment @ Client1 ?a * APPT %? % \n  SCHEDULED: %^{At:
}T\n  :CLOCK-IN:\n  CREATED: %U\n  ~/org.git/client1.org New
Appointments)
| (Appointment @ Client2 ?A * APPT %? % \n  SCHEDULED:  
%^T{At:

}\n  :CLOCK-IN:\n  CREATED: %U\n  ~/org.git/client2.org New
Appointments)
| (Notes ?n * %?\n  %a\n  CREATED: %U\n  ~/org.git/ 
notes.org Notes)

| (Journal 106 \n* JOURNAL Entry at %U\n  %?
~/org.git/journal.org Journal)
|   )))
`

This setup:

- schedules the task by default for today (%t)


The Agenda insert should set the date and time to the date and time
under the cursor so I dont think this is the same thing being  
requested.



I will have code for this in the next push, as soon as repo.or.cz is  
up again.


- Carsten



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


[Orgmode] Re: insert todo from agenda?

2008-06-16 Thread knubee
  The Agenda insert should set the date and time to the date and time
  under the cursor so I dont think this is the same thing being  
  requested.
 
 I will have code for this in the next push, as soon as repo.or.cz is  
 up again.

wonderful, thanks!

in its simplest version, what interests me is just a one or two letter command
that puts me into my task file. additional nice to have would be:

- two-letter combination distinguishes between insert deadline todo and insert
schedule todo
- it stores the current time/date under cursor when leaving agenda
- it allows me to quickly arrow/tab through the structure of my task file to
find the appropriate location for the new task
- i hit return and appropriate deadline/schedule info is place after point --
and i can start to type in the task/todo details.

but, as i say, even a simple quick way to get to task file will be great.

thanks.



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


Re: [Orgmode] Re: insert todo from agenda?

2008-06-16 Thread Carsten Dominik


On Jun 16, 2008, at 10:08 AM, knubee wrote:


The Agenda insert should set the date and time to the date and time
under the cursor so I dont think this is the same thing being
requested.


I will have code for this in the next push, as soon as repo.or.cz is
up again.


wonderful, thanks!

in its simplest version, what interests me is just a one or two  
letter command

that puts me into my task file. additional nice to have would be:

- two-letter combination distinguishes between insert deadline todo  
and insert

schedule todo
- it stores the current time/date under cursor when leaving agenda
- it allows me to quickly arrow/tab through the structure of my task  
file to

find the appropriate location for the new task
- i hit return and appropriate deadline/schedule info is place after  
point --

and i can start to type in the task/todo details.


You can do all this with appropriate remember templates.  All I will  
do it to make sure that the dates inserted into the remember template  
will reflect the agenda date.  How you further edit and file away the  
entry is a matter of your remember setup.  You can either have  
different templates for different tasks lists, or only a single  
template that will be filed interactively to the appropriate list.   
Check the remember template section of the manual for the (too) many  
options.


- Carsten


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


[Orgmode] Re: insert todo from agenda?

2008-06-16 Thread knubee
 You can do all this with appropriate remember templates.

good to know. i will look into it. thanks.



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


[Orgmode] icalender export: limited number of repeated events

2008-06-16 Thread knubee
I need to share some of my calendar data with co-workers. One of
the biggest limitations I encounter with emacs/icalender is that
it does not seem to support a limited number of repeated events.

As far as I can tell, the way to specify this is with regular
expressions. Example:

* TODO Something every Sunday, 10:00-12:00, for 2 months
  SCHEDULED: %%(and (= (calendar-day-of-week date) 7) 
(diary-block 1 6 200 31 7 2008)) 10:00-12:00

I have not been able to figure out how to export these to an .ics
file.

Google calendar, on the other hand, will export something like
the following:

BEGIN:VEVENT
DTSTART:20080601T10
DTEND:20080601T12
RRULE:FREQ=DAILY;UNTIL=20080731

Has anyone else managed to get a limited number of repeating
tasks/events to export correctly to .ics format?

thanks.






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


[Orgmode] show clock-out time in org-agenda-log-mode

2008-06-16 Thread iemacs
I'm not sure whether this has been proposed.

When I use org-agenda-mode with org-agenda-log-mode, the clock-out
time isn't shown after the clock-in time.  Is it possible to show the
clock-out time like 11:00-12:00?

-- 
Kind regards,

Tian Qiu


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


Re: [Orgmode] Re: agenda display of scheduled sub-tasks

2008-06-16 Thread broek



Try making Sub-tasks A and B TODO items. Doesn't that do more or less
what you want?


oh, that sounds promising -- if you mean create the sub-tasks as sub-TODO
items. (i do want the sub-tasks grouped as sub-tasks under the tasks).

if this is what you mean, how to accomplish this? my attempts to create TODO
items as sub-tasks under an existing task result in things like:   
changing state

of main task to done, etc.


(It won't show the sub-tasks as [0/2], but then that
wouldn't be accurate---neither sub-task has 2 components.)


that's ok. i am actually not too concerned about whether the   
solution provides

an indicator of number/percentage of sub-tasks completed.



Hi,

*Any* headline can become a TODO. Just put the point somewhere in the  
headline (actually, anywhere from the headline up to the next  
headline) and invoke C-c C-t.


What are you doing such that you end up ``changing state of main task''?

Best,

Brian vdB


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


[Orgmode] Re: show clock-out time in org-agenda-log-mode

2008-06-16 Thread Bernt Hansen
[EMAIL PROTECTED] writes:

 I'm not sure whether this has been proposed.

 When I use org-agenda-mode with org-agenda-log-mode, the clock-out
 time isn't shown after the clock-in time.  Is it possible to show the
 clock-out time like 11:00-12:00?

I also have this same wishlist item.

I looked into implementing this but as far as I could tell the org
agenda parsing code only gets the first datestamp currently when
building the view with clock data.  Ranges only show up if the first
timestamp is a range and clock values like

   CLOCK: [2008-06-09 Mon 10:19]--[2008-06-09 Mon 10:21] =  0:02

have only single times in the timestamps.  If we could change the
above clock entry to

   CLOCK: [2008-06-09 Mon 10:19-10:21]--[2008-06-09 Mon 10:21] =  0:02

for the agenda view to process then I think the agenda would display
what you want but that feels like a horrible hack to me and a better
solution would be to let the second clock time provide the second
timestamp range value when the first timestamp is not a range.

Unfortunately I haven't had time to pursue this.

-Bernt



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


Re: [Orgmode] icalender export: limited number of repeated events

2008-06-16 Thread Carsten Dominik

Hi,

On Jun 16, 2008, at 11:07 AM, knubee wrote:


I need to share some of my calendar data with co-workers. One of
the biggest limitations I encounter with emacs/icalender is that
it does not seem to support a limited number of repeated events.

As far as I can tell, the way to specify this is with regular
expressions. Example:

* TODO Something every Sunday, 10:00-12:00, for 2 months
SCHEDULED: %%(and (= (calendar-day-of-week date) 7)
  (diary-block 1 6 200 31 7 2008)) 10:00-12:00

I have not been able to figure out how to export these to an .ics
file.


Since iCal interpreters usually do not have access to Emacs lisp, it is
obviously impossible that the Emacs icalendar exporter could tranlate
sexp diary entries of arbitrary complexity.  We can be happy that it
does handle the most common ones.

However, I did not know that the icalendar format actually supported
something like UNTIL in the RRULE line.  So maybe we could teach the Org
exporter a syntax for this and export it properly.  However, I don't
have a good idea for a syntax, and not much time to implement it now.

One way to hack this yourself would be the following:

- Add some UNTIL:20080610 or smilar cookie to the entry, either
  to the headline or early in the body, so that it will end up
  in the summary field.  Make sure it does end up there, check the raw
  .ics file that Org is producing.

- Use the new org-before-save-iCalendar-file-hook to find these
  in the iCalendar file and turn them into an UNTIL field in
  the RRULE line of the entry.

- When you are done, share this with us!

HTH

- Carsten




Google calendar, on the other hand, will export something like
the following:

BEGIN:VEVENT
DTSTART:20080601T10
DTEND:20080601T12
RRULE:FREQ=DAILY;UNTIL=20080731

Has anyone else managed to get a limited number of repeating
tasks/events to export correctly to .ics format?

thanks.






___
Emacs-orgmode mailing list
Remember: 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
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Remember in Agenda buffers

2008-06-16 Thread Carsten Dominik

Hi Thomas, Manuel,

On Jun 1, 2008, at 11:38 AM, Thomas Baumann wrote:


Hi,

my workflow for new appointments is

1. check agenda for free dates
  (cursor will be on the day/time of the free time slot)
2, use remember to record the appointment
  (currently inserting the timestamp manually)

I know I can insert new entries into the diary with i. However, I do
not use the diary and keep all appointments in org.

Maybe someone has a remember template which automatically inserts the
timestamp from the cursor position (date in month and week modes, date
and time in day grid mode)



Hi Thomas,

have made changes that will allow to do this, and more.  Thanks for this
idea, I think it is good new stuff.

Please check the releas notes of 6.05 when it appears.

- Carsten


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


Re: [Orgmode] Obliterating schedule/deadline repeaters

2008-06-16 Thread Carsten Dominik

Hi Greg,

due to the way this is coded, it is not easy to fix it in a way that  
the repeater is kept.  Also, I think it is good if the user does such  
changes by hand, to be sure he/she notices that the repeating process  
not be correct after such a change.  So I am going with your proposal  
to issue a warning if org-schedule or org-deadline is called in an  
entry that has a repeater.


Personally, I normally would not change the scheduling time stamp at  
all in this case, but just add an extra timestamp for saturday to this  
entry.



Thanks.

- Carsten

On Jun 14, 2008, at 2:24 AM, Greg Novak wrote:


On the whole I'm happily using org-mode.  One thing that I'm unhappy
with is that when I'm looking at the agenda and decide to reschedule a
task that has a repeater, the repeater is obliterated.  That is, if
the task is:

* TODO Oil change
 SCHEDULED 2008-6-1 +3m

and I think to myself I'll do that on Saturday, not on Tuesday then
hit C-c C-s and put in the new date, the repeater is obliterated.
Ideally, the repeater would just be preserved as-is.  Almost as good
is if there's some clue in the minibuffer that the task has a repeater
and I should remember to include it in the new date.  As it stands, I
have this in my .emacs file to prevent manual changes to tasks with
repeaters---in that case I just look at the org file and change the
schedule date manually:

(defadvice org-schedule
 (around gsn/org-prevent-rescheduling-repeated-tasks activate)
 If the current task has a repeater, prevent rescheduling it to
avoid obliterating the repeater.
 (if (org-get-repeat)
 (message *** Can't reschedule this task without obliterating
repeater ***)
 ad-do-it))

I'm writing the list to see if there's a way to do this and I was just
dumb when I read the manual.  If not, I guess this is a feature
request.  I'm using v 6.04c.

Best,
Greg


___
Emacs-orgmode mailing list
Remember: 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
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] show clock-out time in org-agenda-log-mode

2008-06-16 Thread Carsten Dominik

Hi Tian,

On Jun 16, 2008, at 2:13 PM, [EMAIL PROTECTED] wrote:


I'm not sure whether this has been proposed.

When I use org-agenda-mode with org-agenda-log-mode, the clock-out
time isn't shown after the clock-in time.  Is it possible to show the
clock-out time like 11:00-12:00?


yes, I have wanted to do this for a long time, last time I tried I  
failed

to get this right.  Thanks for triggering me again, I believe this time
around it works.

- Carsten

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


[Orgmode] Re: agenda column view bug

2008-06-16 Thread Carsten Dominik

Fixed, thanks.

- Carsten

On Jun 16, 2008, at 4:39 PM, Bernt Hansen wrote:


Hi Carsten,

I'm using Org-mode version 6.04c from commit
4c0752c7004d76483bbf8557a9c3a4a9b7d4c3bb and can't update right now
because repo.or.cz is down so maybe this is fixed already.

In the agenda if you go to column view on an entry without an Effort:
value the S-left and S-right fail to change the data - the value just
stays blank.

If you edit it to a value in the list (using e 0) then the S-arrows  
work

again.

I'm using the following setup:

(setq org-global-properties '((Effort_ALL . 0 0:10 0:30 1:00 2:00  
3:00 4:00 5:00 6:00 7:00 8:00 16:00 24:00 32:00 40:00 60:00 80:00  
120:00)))
(setq org-columns-default-format %40ITEM(Task) %17Effort(Estimated  
Effort){:} %CLOCKSUM)


Keystrokes:

- C-c a a
- C-c C-x C-c
- right arrow to Estimated Effort column
- Move to a task with a blank entry
- Try S-left and S-right - it refreshes the display but the effort  
does

  not change

For an example task my Effort property looks like this:

  :PROPERTIES:
  :Effort:
  :END:

Let me know if you need for information to reproduce this.

Regards,
Bernt




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


[Orgmode] Org-mode release 6.05

2008-06-16 Thread Carsten Dominik

Hi,

Org-mode release 6.05 is available at http://orgmode.org

If I were to name my releases, this one would be called Adam.
Adam, you definitely owe me a beer :-).  And I owe you one, too -
thanks for all the great ideas.


Enjoy!

- Carsten


Changes in Version 6.05
===

Overview


   - Use cursor position in agenda for remember, scheduling and  
deadlines

   - New API for mapping a function over all or selected entries
   - Remember templates can be filed to beginning/end of a file
   - Visiting a filed remember buffer immediately
   - BBDB anniversaries are now links
   - Column view in the agenda now cleans the ITEM field
   - The format of section numbers in exported files is configurable
   - Direct, single key access to allowed values in column view
   - New hook to hack exported iCalendar files
   - Log mode in agenda now shows end time for CLOCK line

Incompatible changes


`C-c C-x C-k' now calls `org-mark-entry-for-agenda-action'
--
It used to call `org-cut-special', but that is also at bound
to the key `C-c C-x C-w'.

Details
===

Making use of the cursor position in the agenda
---

The date at the cursor in the agenda (and also in the
calendar) can now be used to schedule entries, or to set the
date in a remember template correctly.  It is also designed
to make it easier to move an entry to a date picked in the
agenda.  Thanks to Thomas Baumann for starting the thread
that led to this development.

* Calling remember with the cursor date in the agenda

  If you want to use the date at the agenda cursor in a
  remember template, start remember from the agenda with the
  keys `k r'.  While the template is being filled in, the
  default date for all time stamps, and also for all
  interactive escapes like `%^t' is now the date at the cursor
  in the agenda.  The exact same command can also be used from
  the calendar if you prefer that.

* Picking a date for scheduling/deadline in the agenda

  You may now pick the date for scheduling an item or for
  setting a deadline in the agenda, where you have the best
  overview over free time slots.  This is a two step process.

  1. First you pick the entry that should be acted upon.  In
 the agenda, you use the keys `k m'.  In an org-mode file,
 this is on `C-c C-x C-k'.

  2. Then you find the agenda date you want to apply.  When the
 cursor is anywhere in the block belonging to that date,
 press `k s' to schedule, or `k d' to put a deadline.  The
 agenda is not updated immediately, press `r' if you want
 it to show the affected entry in the right place.


New API for mapping a function over all or selected entries
---

Org has sophisticated mapping capabilities to find all
entries satisfying certain criteria.  Internally, this
functionality is used to produce agenda views, but there is
also an API that can be used to execute arbitrary functions
for each or selected entries.  The main entry point for this
API is:

  -- Function: org-map-entries func optional match scope rest skip
   Call FUNC at each headline selected by MATCH in SCOPE.

   FUNC is a function or a lisp form.  The function will be
   called without arguments, with the cursor positioned at
   the beginning of the headline.  The return values of all
   calls to the function will be collected and returned as
   a list.

   MATCH is a tags/property/todo match as it is used in the
   agenda tags view.  Only headlines that are matched by
   this query will be considered during the iteration.
   When MATCH is nil or t, all headlines will be visited by
   the iteration.

   SCOPE determines the scope of this command, it can
   specify a file, all agenda files, the current tree and
   much more.

   The remaining args are treated as settings for the
   skipping facilities of the scanner.

The function given to that mapping routine can really do anything
you like.  Here is a simple example that will turn all entries in
the current file with a tag `TOMORROW' into TODO entries with the
keyword `UPCOMING'.  Entries in comment trees and in archive
trees will be ignored.

  (org-map-entries
 '(org-todo UPCOMING)
 +TOMORROW 'file 'archive 'comment)


   The following example counts the number of entries with TODO
keyword `WAITING', in all agenda files.

  (length (org-map-entries t /+WAITING nil 'agenda))


Changes in Remember templates
-

* Remember templates can now use the cursor date in the agenda
  Use `k r' to start remember from the agenda, with enforcing
  the cursor date as default for any time stamps created by
  the template.

* Filing remember templates to the beginning or end of a file
  You may now set 

Re: [Orgmode] Remember in Agenda buffers

2008-06-16 Thread Manuel Hermenegildo

  have made changes that will allow to do this, and more.  Thanks for this
  idea, I think it is good new stuff.

Wonderful, thanks!!! --Manuel

-- 
---
 Manuel Hermenegildo |  Prof., C.S. Department
 Director, IMDEA-Software and CLIP Group |T.U. of Madrid (UPM)
 http://www.cliplab.org/herme| +34-91-336-7435 (W) -352-4819 (Fax)
---



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


[Orgmode] Re: agenda column view bug

2008-06-16 Thread Bernt Hansen
Thank you!

Great response time as always :)

-Bernt


Carsten Dominik [EMAIL PROTECTED] writes:

 Fixed, thanks.

 - Carsten

 On Jun 16, 2008, at 4:39 PM, Bernt Hansen wrote:

 Hi Carsten,

 I'm using Org-mode version 6.04c from commit
 4c0752c7004d76483bbf8557a9c3a4a9b7d4c3bb and can't update right now
 because repo.or.cz is down so maybe this is fixed already.

 In the agenda if you go to column view on an entry without an Effort:
 value the S-left and S-right fail to change the data - the value just
 stays blank.

 If you edit it to a value in the list (using e 0) then the S-arrows
 work
 again.

 I'm using the following setup:

 (setq org-global-properties '((Effort_ALL . 0 0:10 0:30 1:00 2:00
 3:00 4:00 5:00 6:00 7:00 8:00 16:00 24:00 32:00 40:00 60:00 80:00
 120:00)))
 (setq org-columns-default-format %40ITEM(Task) %17Effort(Estimated
 Effort){:} %CLOCKSUM)

 Keystrokes:

 - C-c a a
 - C-c C-x C-c
 - right arrow to Estimated Effort column
 - Move to a task with a blank entry
 - Try S-left and S-right - it refreshes the display but the effort
 does
   not change

 For an example task my Effort property looks like this:

   :PROPERTIES:
   :Effort:
   :END:

 Let me know if you need for information to reproduce this.

 Regards,
 Bernt


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


[Orgmode] Re: insert todo from agenda?

2008-06-16 Thread Cezar Halmagean
Carsten Dominik [EMAIL PROTECTED] writes:

 You can do all this with appropriate remember templates.  All I will
 do it to make sure that the dates inserted into the remember template
 will reflect the agenda date.  How you further edit and file away the
 entry is a matter of your remember setup.  You can either have
 different templates for different tasks lists, or only a single
 template that will be filed interactively to the appropriate list.
 Check the remember template section of the manual for the (too) many
 options.

 - Carsten


That would be very nice to have. Thanks Carsten.

Cezar



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


[Orgmode] Re: Remember in Agenda buffers

2008-06-16 Thread Thomas Baumann
 Hi Thomas,

 have made changes that will allow to do this, and more.  Thanks for this
 idea, I think it is good new stuff.


Thank you very much, Carsten, I think I owe you a beer and/or a big
cake, whenever your in Munich :-)

Once again a fine example why using and developing org-mode is fun and
thankfully we do not have the discussions other lists are known
for. Let's continue like this.



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


Re: [Orgmode] Re: Remember in Agenda buffers

2008-06-16 Thread Carsten Dominik


On Jun 16, 2008, at 7:46 PM, Thomas Baumann wrote:


Hi Thomas,

have made changes that will allow to do this, and more.  Thanks for  
this

idea, I think it is good new stuff.



Thank you very much, Carsten, I think I owe you a beer and/or a big
cake, whenever your in Munich :-)


:-)  I will take you up on this, one day...

- Carsten




Once again a fine example why using and developing org-mode is fun and
thankfully we do not have the discussions other lists are known
for. Let's continue like this.



___
Emacs-orgmode mailing list
Remember: 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
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: Org-mode release 6.05

2008-06-16 Thread Paul R
Carsten Dominik [EMAIL PROTECTED] writes:

 Hi,

 Org-mode release 6.05 is available at http://orgmode.org


good job, as usual. Thank you Carsten.

-- 
  Paul


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


Re: [Orgmode] Re: Remember in Agenda buffers

2008-06-16 Thread Manuel Hermenegildo

   Thank you very much, Carsten, I think I owe you a beer and/or a big
   cake, whenever your in Munich :-)
  
  :-)  I will take you up on this, one day...

OK, OK, I will pay for another round! ;-) --Man

-- 
---
 Manuel Hermenegildo |  Prof., C.S. Department
 Director, IMDEA-Software and CLIP Group |T.U. of Madrid (UPM)
 http://www.cliplab.org/herme| +34-91-336-7435 (W) -352-4819 (Fax)
---



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


[Orgmode] Re: Org-mode release 6.05

2008-06-16 Thread Cezar Halmagean
Paul R [EMAIL PROTECTED] writes:

 Carsten Dominik [EMAIL PROTECTED] writes:

 Hi,

 Org-mode release 6.05 is available at http://orgmode.org


 good job, as usual. Thank you Carsten.

Love the new features ! org-mode rocks.

Cezar



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


[Orgmode] Re: agenda display of scheduled sub-tasks

2008-06-16 Thread knubee
 *Any* headline can become a TODO. Just put the point somewhere in the  
 headline (actually, anywhere from the headline up to the next  
 headline) and invoke C-c C-t.
 
 What are you doing such that you end up ``changing state of main task''?

my bad. i believe i was having problems because i still had some remnants of the
sub-task markup in the task. thus, attempts to transform sub-tasks into separate
TODO items were simply updating the state of the main TODO (task).

it all seems to be working now -- and it does give me the agenda view that i
wanted. thanks for the tip!





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


[Orgmode] Re: icalender export: limited number of repeated events

2008-06-16 Thread knubee
 However, I did not know that the icalendar format actually supported
 something like UNTIL in the RRULE line.  So maybe we could teach the Org
 exporter a syntax for this and export it properly.  However, I don't
 have a good idea for a syntax, and not much time to implement it now.

ok. it does seem like a fairly standard thing to do with calendars (ie, to have
repeating events that end after a certain number -- or after a certain date).
perhaps, in the future, it is worth implementing something that allows org-mode
user to specify something lik:

SCHEDULED: 2008-06-01 Sun +1w~10 ;repeats until 10 weeks after starting date

or

SCHEDULED: 2008-06-01 Sun +1w~2008-08-03 ;repeats until august 3

the actual symbols (~) and syntax used above are probably bad, but hopefully
it captures the idea.

 - When you are done, share this with us!

it may be a bit beyond my abilities, but if i get something to work, i will
share it ;-)



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