* Commenting a diary sexp line??
@ 2011-07-19 5:11 Alan E. Davis
2011-07-19 5:13 ` Alan E. Davis
0 siblings, 1 reply; 9+ messages in thread
From: Alan E. Davis @ 2011-07-19 5:11 UTC (permalink / raw)
To: org-mode
[-- Attachment #1: Type: text/plain, Size: 298 bytes --]
The following is in one of my Agenda files, I guess. Is there any way to
comment it out, so that it is not evaluated and displayed in the agenda.
This seems to be displayed for every day. I wanted to start a list of
various functions, but this one seems to be preeminent.
Thank you,
Alan Davis
[-- Attachment #2: Type: text/html, Size: 320 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Commenting a diary sexp line??
2011-07-19 5:11 Commenting a diary sexp line?? Alan E. Davis
@ 2011-07-19 5:13 ` Alan E. Davis
2011-07-19 5:48 ` Michael Markert
0 siblings, 1 reply; 9+ messages in thread
From: Alan E. Davis @ 2011-07-19 5:13 UTC (permalink / raw)
To: org-mode
[-- Attachment #1: Type: text/plain, Size: 847 bytes --]
Here's the attempt to comment, and the line:
** [2011-05-24 Tue 10:23] Sexp for an Org-mode reocurring appointment, only
on weekdays
Published in: Emacs Lisp, [[
http://www.gnu.org/software/emacs/manual/html_node/emacs/Sexp-Diary-Entries.html][here
]]
#+BEGIN_EXAMPLE
:,----
:| * APPT Daily Scrum
:| <%%(let ((dayname (calendar-day-of-week date))(day (car (cdr
date))))(memq dayname '(1 2 3 4 5)))>
:| [2009-07-01 Wed]
:`----
#+END_EXAMPLE
On Mon, Jul 18, 2011 at 10:11 PM, Alan E. Davis <lngndvs@gmail.com> wrote:
> The following is in one of my Agenda files, I guess. Is there any way to
> comment it out, so that it is not evaluated and displayed in the agenda.
> This seems to be displayed for every day. I wanted to start a list of
> various functions, but this one seems to be preeminent.
>
> Thank you,
>
> Alan Davis
>
[-- Attachment #2: Type: text/html, Size: 1273 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Commenting a diary sexp line??
2011-07-19 5:13 ` Alan E. Davis
@ 2011-07-19 5:48 ` Michael Markert
2011-07-19 9:54 ` suvayu ali
0 siblings, 1 reply; 9+ messages in thread
From: Michael Markert @ 2011-07-19 5:48 UTC (permalink / raw)
To: Alan E. Davis; +Cc: org-mode
[-- Attachment #1: Type: text/plain, Size: 608 bytes --]
> Here's the attempt to comment, and the line:
>
>
> ** [2011-05-24 Tue 10:23] Sexp for an Org-mode reocurring appointment,
> only on weekdays Published in: Emacs Lisp, [[
> http://www.gnu.org/software/emacs/manual/html_node/emacs/Sexp-Diary-Entries.html][here
> ]]
What do you mean? What have you tried?
> #+BEGIN_EXAMPLE
> :,----
> :| * APPT Daily Scrum
> :| <%%(let ((dayname (calendar-day-of-week date))(day (car (cdr date))))(memq dayname '(1 2 3 4 5)))>
> :| [2009-07-01 Wed]
> :`----
> #+END_EXAMPLE
Anyway: Begin the org-sexp line with a `#' - the usual org comment character.
Michael
[-- Attachment #2: Type: application/pgp-signature, Size: 835 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Commenting a diary sexp line??
2011-07-19 5:48 ` Michael Markert
@ 2011-07-19 9:54 ` suvayu ali
[not found] ` <CAF-1L2RxGYmVbFEDfHMsUCfukVQrt+eLLeiFeBVt1RaLZfhzOg@mail.gmail.com>
2011-07-22 13:42 ` Bastien
0 siblings, 2 replies; 9+ messages in thread
From: suvayu ali @ 2011-07-19 9:54 UTC (permalink / raw)
To: Michael Markert; +Cc: org-mode
Hi,
On Tue, Jul 19, 2011 at 7:48 AM, Michael Markert
<markert.michael@googlemail.com> wrote:
>> :| * APPT Daily Scrum
>> :| <%%(let ((dayname (calendar-day-of-week date))(day (car (cdr date))))(memq dayname '(1 2 3 4 5)))>
>> :| [2009-07-01 Wed]
>> :`----
>> #+END_EXAMPLE
>
> Anyway: Begin the org-sexp line with a `#' - the usual org comment character.
>
I also faced this once and was expecting using the COMMENT keyword on
the headline will do the trick but it doesn't. I had to use # before
the sexp.
So my question is, should org be ignoring the COMMENT keyword on
headlines when a sexp is present. I would be inclined to call this a
bug as a scheduled headline would be ignored in the presence of
COMMENT.
> Michael
--
Suvayu
Open source is the future. It sets us free.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Fwd: Commenting a diary sexp line??
[not found] ` <CAF-1L2RxGYmVbFEDfHMsUCfukVQrt+eLLeiFeBVt1RaLZfhzOg@mail.gmail.com>
@ 2011-07-19 14:24 ` Alan E. Davis
0 siblings, 0 replies; 9+ messages in thread
From: Alan E. Davis @ 2011-07-19 14:24 UTC (permalink / raw)
To: org-mode
[-- Attachment #1: Type: text/plain, Size: 1093 bytes --]
I finally Archived this subheading. I am trying to get
org-mobile/mobile-org running on my new Android phone, and org-mobile-push
choked on three sexps.
Alan
On Tue, Jul 19, 2011 at 2:54 AM, suvayu ali <fatkasuvayu+linux@gmail.com>wrote:
> Hi,
>
> On Tue, Jul 19, 2011 at 7:48 AM, Michael Markert
> <markert.michael@googlemail.com> wrote:
> >> :| * APPT Daily Scrum
> >> :| <%%(let ((dayname (calendar-day-of-week date))(day (car (cdr
> date))))(memq dayname '(1 2 3 4 5)))>
> >> :| [2009-07-01 Wed]
> >> :`----
> >> #+END_EXAMPLE
> >
> > Anyway: Begin the org-sexp line with a `#' - the usual org comment
> character.
> >
>
> I also faced this once and was expecting using the COMMENT keyword on
> the headline will do the trick but it doesn't. I had to use # before
> the sexp.
>
> So my question is, should org be ignoring the COMMENT keyword on
> headlines when a sexp is present. I would be inclined to call this a
> bug as a scheduled headline would be ignored in the presence of
> COMMENT.
>
> > Michael
>
> --
> Suvayu
>
> Open source is the future. It sets us free.
>
[-- Attachment #2: Type: text/html, Size: 1744 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Commenting a diary sexp line??
2011-07-19 9:54 ` suvayu ali
[not found] ` <CAF-1L2RxGYmVbFEDfHMsUCfukVQrt+eLLeiFeBVt1RaLZfhzOg@mail.gmail.com>
@ 2011-07-22 13:42 ` Bastien
2011-07-22 15:59 ` suvayu ali
1 sibling, 1 reply; 9+ messages in thread
From: Bastien @ 2011-07-22 13:42 UTC (permalink / raw)
To: suvayu ali; +Cc: org-mode, Michael Markert
Hi Suvayu,
suvayu ali <fatkasuvayu+linux@gmail.com> writes:
> So my question is, should org be ignoring the COMMENT keyword on
> headlines when a sexp is present. I would be inclined to call this a
> bug as a scheduled headline would be ignored in the presence of
> COMMENT.
Mh.. COMMENT originally means "do not export". But I understand your
proposal. I'm reluctant to implement this as I think you can already
set up your custom agenda views to ignore COMMENT headlines.
But I'm open to suggestions.
Thanks,
--
Bastien
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Commenting a diary sexp line??
2011-07-22 13:42 ` Bastien
@ 2011-07-22 15:59 ` suvayu ali
2011-07-23 1:15 ` Memnon Anon
0 siblings, 1 reply; 9+ messages in thread
From: suvayu ali @ 2011-07-22 15:59 UTC (permalink / raw)
To: Bastien; +Cc: org-mode, Michael Markert
Hi Bastien,
On Fri, Jul 22, 2011 at 3:42 PM, Bastien <bzg@altern.org> wrote:
> I think you can already
> set up your custom agenda views to ignore COMMENT headlines.
Could you point me to it? I did an apropos search for "org agenda
ignore" but all I could find was ignoring based on timestamps.
Thanks,
--
Suvayu
Open source is the future. It sets us free.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Commenting a diary sexp line??
2011-07-22 15:59 ` suvayu ali
@ 2011-07-23 1:15 ` Memnon Anon
2011-07-23 22:39 ` suvayu ali
0 siblings, 1 reply; 9+ messages in thread
From: Memnon Anon @ 2011-07-23 1:15 UTC (permalink / raw)
To: emacs-orgmode
suvayu ali <fatkasuvayu+linux@gmail.com> writes:
> On Fri, Jul 22, 2011 at 3:42 PM, Bastien <bzg@altern.org> wrote:
>> I think you can already
>> set up your custom agenda views to ignore COMMENT headlines.
>
> Could you point me to it? I did an apropos search for "org agenda
> ignore" but all I could find was ignoring based on timestamps.
,----
| org-agenda-skip-comment-trees is a variable defined in `org-agenda.el'.
| Its value is t
|
| Documentation:
| Non-nil means skip trees that start with the COMMENT keyword.
| When nil, these trees are also scanned by agenda commands.
`----
?
Memnon
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Commenting a diary sexp line??
2011-07-23 1:15 ` Memnon Anon
@ 2011-07-23 22:39 ` suvayu ali
0 siblings, 0 replies; 9+ messages in thread
From: suvayu ali @ 2011-07-23 22:39 UTC (permalink / raw)
To: Memnon Anon; +Cc: emacs-orgmode
Hi Memnon,
On Sat, Jul 23, 2011 at 3:15 AM, Memnon Anon
<gegendosenfleisch@googlemail.com> wrote:
> ,----
> | org-agenda-skip-comment-trees is a variable defined in `org-agenda.el'.
> | Its value is t
> |
> | Documentation:
> | Non-nil means skip trees that start with the COMMENT keyword.
> | When nil, these trees are also scanned by agenda commands.
> `----
>
Sorry I forgot to respond.
I checked my settings, it is set to the default value: t. It works fine. :)
--
Suvayu
Open source is the future. It sets us free.
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2011-07-23 22:40 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-19 5:11 Commenting a diary sexp line?? Alan E. Davis
2011-07-19 5:13 ` Alan E. Davis
2011-07-19 5:48 ` Michael Markert
2011-07-19 9:54 ` suvayu ali
[not found] ` <CAF-1L2RxGYmVbFEDfHMsUCfukVQrt+eLLeiFeBVt1RaLZfhzOg@mail.gmail.com>
2011-07-19 14:24 ` Fwd: " Alan E. Davis
2011-07-22 13:42 ` Bastien
2011-07-22 15:59 ` suvayu ali
2011-07-23 1:15 ` Memnon Anon
2011-07-23 22:39 ` suvayu ali
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).