* editing repeat items @ 2008-03-28 0:25 Richard G Riley 2008-03-29 23:40 ` Richard G. Riley 0 siblings, 1 reply; 5+ messages in thread From: Richard G Riley @ 2008-03-28 0:25 UTC (permalink / raw) To: org-mode Is there a facility to "unlink" a repeated item from its "repeat" parent e.g suppose I have ** Pub Quiz <2008-03-25 21:30 +1w> But open it on April 1st from the agenda for that week. In any particular one week I would like to add a certain tag or note to the task for that week only. ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: editing repeat items 2008-03-28 0:25 editing repeat items Richard G Riley @ 2008-03-29 23:40 ` Richard G. Riley 2008-03-30 8:44 ` Carsten Dominik 0 siblings, 1 reply; 5+ messages in thread From: Richard G. Riley @ 2008-03-29 23:40 UTC (permalink / raw) To: emacs-orgmode Richard G Riley <rileyrgdev <at> googlemail.com> writes: > Is there a facility to "unlink" a repeated item from its "repeat" parent > e.g suppose I have > > ** Pub Quiz <2008-03-25 21:30 +1w> > > But open it on April 1st from the agenda for that week. > > In any particular one week I would like to add a certain tag or note to > the task for that week only. With no direct solution/answer to this, could someone possibly suggest another approach? ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Re: editing repeat items 2008-03-29 23:40 ` Richard G. Riley @ 2008-03-30 8:44 ` Carsten Dominik 2008-03-30 9:02 ` Richard G Riley 0 siblings, 1 reply; 5+ messages in thread From: Carsten Dominik @ 2008-03-30 8:44 UTC (permalink / raw) To: Richard G. Riley; +Cc: emacs-orgmode On Mar 30, 2008, at 12:40 AM, Richard G. Riley wrote: > Richard G Riley <rileyrgdev <at> googlemail.com> writes: >> Is there a facility to "unlink" a repeated item from its "repeat" >> parent >> e.g suppose I have >> >> ** Pub Quiz <2008-03-25 21:30 +1w> >> >> But open it on April 1st from the agenda for that week. >> >> In any particular one week I would like to add a certain tag or >> note to >> the task for that week only. > > With no direct solution/answer to this, could someone possibly > suggest another > approach? I think there was no answer because your question is not clear. I for one don't understand what exactly you want to do, and why you think it is not working. An entry like the above entry will show up in every week after the initial date, and you are free to add notes any way you like, at any time. So obviously I am missing something here. - Carsten ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Re: editing repeat items 2008-03-30 8:44 ` Carsten Dominik @ 2008-03-30 9:02 ` Richard G Riley 2008-03-31 5:50 ` Carsten Dominik 0 siblings, 1 reply; 5+ messages in thread From: Richard G Riley @ 2008-03-30 9:02 UTC (permalink / raw) To: Carsten Dominik; +Cc: emacs-orgmode Hi Carsten, I will try to clarify. I have a repeat task. Normally, for me, a repeat task will be for a "job of work" to do at repeated intervals. It however is not the same job of work. e.g Every monday at 9am a status meeting. Or in my example ever tuesday a pub quiz. I want to be able to annotate each meeting separately so I see the weeks specifics in the agenda. e.g 1st April ** Pub Quiz <2008-03-25 21:30 +1w> This subject 8th April ** Pub Quiz <2008-03-25 21:30 +1w> Another subject It could just be being too lazy but I would like the repeat task so that an agenda for 6 months time has the Pub Quiz entry, but it probably wont have a specific "subject" in this example. I did try to add another active date to the original but that didnt work e.g <2008-04-08 Tue> subject1 <2008-04-12 Tue> subject2 I hope that is a little clearer, rgds, r. Carsten Dominik <dominik@science.uva.nl> writes: > On Mar 30, 2008, at 12:40 AM, Richard G. Riley wrote: >> Richard G Riley <rileyrgdev <at> googlemail.com> writes: >>> Is there a facility to "unlink" a repeated item from its "repeat" >>> parent >>> e.g suppose I have >>> >>> ** Pub Quiz <2008-03-25 21:30 +1w> >>> >>> But open it on April 1st from the agenda for that week. >>> >>> In any particular one week I would like to add a certain tag or >>> note to >>> the task for that week only. >> >> With no direct solution/answer to this, could someone possibly >> suggest another >> approach? > > I think there was no answer because your question is not clear. I for > one don't > understand what exactly you want to do, and why you think it is not > working. > An entry like the above entry will show up in every week after the > initial date, > and you are free to add notes any way you like, at any time. > > So obviously I am missing something here. > > - Carsten ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Re: editing repeat items 2008-03-30 9:02 ` Richard G Riley @ 2008-03-31 5:50 ` Carsten Dominik 0 siblings, 0 replies; 5+ messages in thread From: Carsten Dominik @ 2008-03-31 5:50 UTC (permalink / raw) To: Richard G Riley; +Cc: emacs-orgmode Hi Richard, yes, now it is clearer. Org is not equipped to handle such a case, and frankly I am not sure if there is much to gain. You still need a time stamp for each realization to attach the subject. So you can make separate entries just as well. The only annoying thing is that you need to create those entries all at once, instead of doing it as you go. A good way to create the entries would be a keyboard macro. If you insert the following text ** Pub Quizz *** Pub Quizz <2008-03-25 21:30> And leave the cursor at the end of the second line, you can go like this: C-x ( ; start macro recording C-SPC ; set the mark C-a ; go to beginning of line M-w ; copy C-e ; end of line RET ; new line C-y ; yank C-u 7 S-right ; shift date by 7 days C-x ) ; end recording Then you do C-u 2 6 C-x e And you got your 26 entries for the next 6 months. HTH - Carsten On Mar 30, 2008, at 11:02 AM, Richard G Riley wrote: > > Hi Carsten, > > I will try to clarify. > > I have a repeat task. Normally, for me, a repeat task will be for a > "job > of work" to do at repeated intervals. It however is not the same job > of > work. e.g > > Every monday at 9am a status meeting. Or in my example ever tuesday a > pub quiz. > > I want to be able to annotate each meeting separately so I see the > weeks > specifics in the agenda. > > e.g > > 1st April ** Pub Quiz <2008-03-25 21:30 +1w> This subject > 8th April ** Pub Quiz <2008-03-25 21:30 +1w> Another subject > > It could just be being too lazy but I would like the repeat task so > that > an agenda for 6 months time has the Pub Quiz entry, but it probably > wont > have a specific "subject" in this example. > > I did try to add another active date to the original but that didnt > work > e.g > > <2008-04-08 Tue> subject1 > <2008-04-12 Tue> subject2 > > > I hope that is a little clearer, > > rgds, > > r. > > > Carsten Dominik <dominik@science.uva.nl> writes: > >> On Mar 30, 2008, at 12:40 AM, Richard G. Riley wrote: >>> Richard G Riley <rileyrgdev <at> googlemail.com> writes: >>>> Is there a facility to "unlink" a repeated item from its "repeat" >>>> parent >>>> e.g suppose I have >>>> >>>> ** Pub Quiz <2008-03-25 21:30 +1w> >>>> >>>> But open it on April 1st from the agenda for that week. >>>> >>>> In any particular one week I would like to add a certain tag or >>>> note to >>>> the task for that week only. >>> >>> With no direct solution/answer to this, could someone possibly >>> suggest another >>> approach? >> >> I think there was no answer because your question is not clear. I >> for >> one don't >> understand what exactly you want to do, and why you think it is not >> working. >> An entry like the above entry will show up in every week after the >> initial date, >> and you are free to add notes any way you like, at any time. >> >> So obviously I am missing something here. >> >> - Carsten ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2008-03-31 5:50 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2008-03-28 0:25 editing repeat items Richard G Riley 2008-03-29 23:40 ` Richard G. Riley 2008-03-30 8:44 ` Carsten Dominik 2008-03-30 9:02 ` Richard G Riley 2008-03-31 5:50 ` Carsten Dominik
Code repositories for project(s) associated with this external index https://git.savannah.gnu.org/cgit/emacs.git https://git.savannah.gnu.org/cgit/emacs/org-mode.git This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.