Re: [O] org-collector - Date-based conditions

2017-12-06 Thread Gonzalo Camarillo
Hi, after investigating a bit, it turns out the condition can be any elisp expression. So, the following block lists all items with SCHEDULED dates up to today: #+BEGIN: propview :conds ((string< (org-read-date nil nil SCHEDULED) (org-read-date nil nil "+1"))) :cols (ITEM EFFORT) #+END:

[O] org-collector - Date-based conditions

2017-12-05 Thread Gonzalo Camarillo
Hi, I am using org-collector to generate agenda views. For example, the following block includes all items whose TODO keyword is "WAITING": #+BEGIN: propview :conds ((string= TODO "WAITING")) :cols (ITEM EFFORT) #+END: I would like to add an additional condition based on the SCHEDULED property