* [PATCH] New function org-find-timestamps
@ 2011-08-20 17:30 Marc-Oliver Ihm
2011-08-21 12:32 ` Philip Rooke
0 siblings, 1 reply; 3+ messages in thread
From: Marc-Oliver Ihm @ 2011-08-20 17:30 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 2820 bytes --]
Hello !
I would like to submit the attached patch for org.el.
This patch introduces the new function org-find-timestamps, which has
the documentation given below.
Part of its functionality is also added as a new option to the
function org-sparse-tree. However, the full functionality of
org-find-timestamps can only be used if it is called directly.
This is my first patch to org-mode so I would be grateful for any
advice and comments.
(There already has been some very helpful discussion with Bastien
see news://news.gmane.org:119/4E29C4BA.5090906@online.de)
If this patch is deemed acceptable I would be glad to submit a secound
patch to the documentation as well. By the way: There are surely
official documentation standards, that I could adhere for this. However,
at present I cannot find them. Could anyone provide me a pointer please ?
with kind regards, Marc-Oliver Ihm
> org-find-timestamps is an interactive Lisp function in `org.el'.
>
> (org-find-timestamps &optional FIRST-DATE LAST-DATE BUFFER-NAME WHICH
> COLLECT-METHOD SORT)
>
> Find inactive timestamps within a date-range and maybe sort them.
>
> This function can help to bring the notes, that you take within
> org-mode, into a chronological order, even if they are scattered
> among many different nodes. The result is somewhat like a diary,
> listing the timestamps of the notes, that you have taken on each day.
> Such a listing might help to provide an answer to the common question
> 'What have I done last Week ?'
> Please be aware however: This intended usage requires,
> that you routinely insert (inactive) timestamps into the
> notes that you write, which is a prerequisite habit that you may or
> may not want to adopt.
>
> org-find-timstamps works in these steps: Create a regular expression
> to match a given range of dates; search for it and
> display the results either as a sparse tree or with the help
> of occur. The original buffer is not modified.
>
> The Arguments FIRST-DATE and LAST-DATE (yyyy-mm-dd) define the range
> of timestamps to search for. In general anything, that can be
> understood by `org-read-date' will be accepted.
>
> BUFFER-NAME specifies the name of the buffer to search. If nil, use
> the current buffer.
>
> The Argument WHICH (one of the symbols `active', `inactive'
> or `both'), tells the function, which timestamps to search for.
>
> COLLECT-METHOD can be one of `org-occur', `occur' and
> `multi-occur' and determines, Which buffers to search (current or
> all org-mode buffers) and how to present the matches.
>
> Results will be sorted according to SORT (either the symbol `y'
> or `n'). Sorting however is only possible, if results are presented
> with `occur' or `multi-occur'.
>
> All Arguments can be `nil' (or ommitted), in which case their values
> are queried interactively.
[-- Attachment #2: org.el.diff --]
[-- Type: text/x-patch, Size: 10879 bytes --]
diff --git a/lisp/org.el b/lisp/org.el
index de8c72b..baffde4 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -12256,10 +12256,11 @@ p Enter a property name and its value (both with completion on existing
r Show entries matching a regular expression (`/' can be used as well)
d Show deadlines due within `org-deadline-warning-days'.
b Show deadlines and scheduled items before a date.
-a Show deadlines and scheduled items after a date."
+a Show deadlines and scheduled items after a date.
+i Show inactive or active timestamps within a date interval."
(interactive "P")
(let (ans kwd value)
- (message "Sparse tree: [r]egexp [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty\n [d]eadlines [b]efore-date [a]fter-date")
+ (message "Sparse tree: [r]egexp [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty\n [d]eadlines [b]efore-date [a]fter-date [i]nterval")
(setq ans (read-char-exclusive))
(cond
((equal ans ?d)
@@ -12268,6 +12269,8 @@ a Show deadlines and scheduled items after a date."
(call-interactively 'org-check-before-date))
((equal ans ?a)
(call-interactively 'org-check-after-date))
+ ((equal ans ?i)
+ (org-find-timestamps nil nil nil nil 'org-occur nil))
((equal ans ?t)
(org-show-todo-tree nil))
((equal ans ?T)
@@ -20665,6 +20668,198 @@ Still experimental, may disappear in the future."
;; make tree, check each match with the callback
(org-occur "CLOSED: +\\[\\(.*?\\)\\]" nil callback)))
+(defun org-find-timestamps (&optional first-date last-date buffer-name which collect-method sort)
+ "Find inactive timestamps within a date-range and maybe sort them.
+
+This function can help to bring the notes, that you take within
+org-mode, into a chronological order, even if they are scattered
+among many different nodes. The result is somewhat like a diary,
+listing the timestamps of the notes, that you have taken on each day.
+Such a listing might help to provide an answer to the common question
+'What have I done last Week ?'
+Please be aware however: This intended usage requires,
+that you routinely insert (inactive) timestamps into the
+notes that you write, which is a prerequisite habit that you may or
+may not want to adopt.
+
+org-find-timstamps works in these steps: Create a regular expression
+to match a given range of dates; search for it and
+display the results either as a sparse tree or with the help
+of occur. The original buffer is not modified.
+
+The Arguments FIRST-DATE and LAST-DATE (yyyy-mm-dd) define the range
+of timestamps to search for. In general anything, that can be
+understood by `org-read-date' will be accepted.
+
+BUFFER-NAME specifies the name of the buffer to search. If nil, use
+the current buffer.
+
+The Argument WHICH (one of the symbols `active', `inactive'
+or `both'), tells the function, which timestamps to search for.
+
+COLLECT-METHOD can be one of `org-occur', `occur' and
+`multi-occur' and determines, Which buffers to search (current or
+all org-mode buffers) and how to present the matches.
+
+Results will be sorted according to SORT (either the symbol `y'
+or `n'). Sorting however is only possible, if results are presented
+with `occur' or `multi-occur'.
+
+All Arguments can be `nil' (or ommitted), in which case their values
+are queried interactively.
+
+"
+ (interactive)
+
+ (let ((occur-buffer-name "*Occur*")
+ (occur-header-regex "^[0-9]+ match\\(es\\)?") ;; regexp to match for header-lines in *Occur* buffer
+ description
+ swap-dates
+ (days 0)
+ date-regex
+ buff
+ org-buffers
+ )
+ (if buffer-name (switch-to-buffer buffer-name))
+ (save-window-excursion
+ ;; ask for type of timestamp to search, if not supplied as an argument
+ (cond ((null which)
+ (setq which (intern-soft (car (split-string (org-icompleting-read "Please choose, which type of timestamp to search: " '("active" "inactive" "both") nil t nil nil "inactive"))))))
+ ((not (member which '(active inactive both)))
+ (error "Argument `WHICH' can not be `%s'" which)))
+ ;; ask for date-range, if not supplied as argument
+ (setq last-date (org-read-date nil nil last-date "End date (or start): " nil nil))
+ (setq first-date (org-read-date nil nil first-date "Start date (or end): " nil nil))
+ ;; swap dates, if required
+ (when (string< last-date first-date)
+ (setq swap-dates last-date)
+ (setq last-date first-date)
+ (setq first-date swap-dates))
+ ;; readable description of what we searched for
+ (setq description (format "%s timestamps from %s to %s in %s, %s"
+ (if (eq which 'both) "active and inactive" (symbol-name which))
+ first-date last-date
+ (if (eq collect-method 'multi-occur) "all org-buffers" (concat "buffer " (buffer-name)))
+ (if (and (eq sort 'yes) (not (eq collect-method 'org-occur))) "sorted" "not sorted")))
+ ;; temporary buffer for date-manipulations
+ (with-temp-buffer
+ ;; construct list of dates in working buffer, loop as long we did not reach end-date
+ (while (not (looking-at-p last-date))
+ (goto-char (point-max))
+ ;; Type of timstamp (inactive) might be wrong, will be corrected below
+ (insert "[")
+ ;; Day of week (Mo) might be wrong, will be corrected below
+ (insert first-date " Mo]\n")
+ (forward-line -1)
+ ;; advance number of days and correct day of week
+ (org-timestamp-change days 'day)
+ (setq days (1+ days))
+ (when (eq which 'both)
+ ;; double last timestamp
+ (let (start content)
+ (move-to-column 0)
+ (setq start (point))
+ (forward-line)
+ (setq content (delete-and-extract-region start (point)))
+ (insert content)
+ (insert content)
+ (forward-line -1)
+ )
+ )
+ (unless (eq which 'inactive)
+ ;; inserted inactive timestamp above, now we correct this
+ (org-toggle-timestamp-type)
+ )
+ (move-to-column 1)
+ )
+ (goto-char (point-max))
+ ;; transform constructed list of dates into a single, optimized regex
+ (setq date-regex (regexp-opt (split-string (buffer-string) "\n" t)))
+ )
+ )
+ ;; If no argument supplied, ask user, which buffers to search and how to present the results
+ (or collect-method (setq collect-method (intern (car (split-string (org-icompleting-read "Please choose, which buffers to search and how to present the matches: " '("occur -- this buffer, list" "multi-occur -- all org-buffers, list" "org-occur -- this-buffer, sparse tree") nil t nil nil "occur -- this buffer, list"))))))
+
+ ;; Perform the actual search
+ (save-window-excursion
+ (cond ((eq collect-method 'occur)
+ (occur date-regex)
+ )
+ ((eq collect-method 'org-occur)
+ (if (string= major-mode "org-mode")
+ (org-occur date-regex)
+ (error "Buffer not in org-mode"))
+ )
+ ((eq collect-method 'multi-occur)
+ ;; construct list of all org-buffers
+ (dolist (buff (buffer-list))
+ (set-buffer buff)
+ (if (string= major-mode "org-mode")
+ (setq org-buffers (cons buff org-buffers))))
+ (multi-occur org-buffers date-regex))
+ (t (error (format "Argument `COLLECT-METHOD' can not be `%s'" collect-method)))
+ )
+ )
+ ;; Postprocessing: Optionally sort buffer with results
+ ;; org-occur operates on the current buffer, so we cannot modify its results afterwards
+ (if (eq collect-method 'org-occur)
+ (message (concat "Sparse tree with " description))
+ ;; switch to occur-buffer and modify it
+ (if (not (get-buffer occur-buffer-name))
+ (message (concat "Did not find any matches for " description))
+ (let ((original-inhibit-read-only inhibit-read-only))
+ (unwind-protect
+ (progn
+ ;; next line might be risky, so we unwind-protect it
+ (setq inhibit-read-only t)
+ (set-buffer occur-buffer-name)
+ (goto-char (point-min))
+ ;; beautify the occur-buffer by replacing the potentially long original regexp
+ (while (search-forward (concat " for \"" date-regex "\"") nil t)
+ (replace-match "" nil t))
+ (goto-char (point-min))
+ ;; Sort results by matching date ?
+ (when (cond ((eq sort 'yes) t)
+ ((eq sort 'no) nil)
+ ((null sort) (y-or-n-p "Sort results by date ? "))
+ (t (error "Argument `SORT' can not be `%s'" sort)))
+ (when (eq collect-method 'multi-occur)
+ ;; bring all header lines ('xx matches for ..') to top of buffer, all lines with matches to bottom
+ (sort-subr t
+ 'forward-line
+ 'end-of-line
+ ;; search-key for this sort only differentiates between header-lines and matche-lines
+ (lambda () (if (looking-at-p occur-header-regex) 2 1))
+ nil)
+ )
+ ;; goto first line of matches
+ (goto-char (point-max))
+ (search-backward-regexp occur-header-regex)
+ (forward-line)
+ ;; sort all matches according to date, that matched the regex
+ (sort-subr t
+ 'forward-line
+ 'end-of-line
+ ;; search-key for this sort is date
+ (lambda () (search-forward-regexp date-regex) (substring (match-string 0) 1 -1))
+ nil
+ 'string<)
+ ;; pretend, that we did not modify the occur-buffer
+ )
+ (insert (format "Searched for %s.\n" description))
+ (goto-char (point-min))
+ (set-buffer-modified-p nil)
+ )
+ (setq inhibit-read-only original-inhibit-read-only)
+ )
+ )
+ ;; show result
+ (switch-to-buffer occur-buffer-name)
+ )
+ )
+ )
+ )
+
;;;; Finish up
(provide 'org)
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] New function org-find-timestamps
2011-08-20 17:30 [PATCH] New function org-find-timestamps Marc-Oliver Ihm
@ 2011-08-21 12:32 ` Philip Rooke
2011-08-22 19:07 ` Marc-Oliver Ihm
0 siblings, 1 reply; 3+ messages in thread
From: Philip Rooke @ 2011-08-21 12:32 UTC (permalink / raw)
To: Marc-Oliver Ihm; +Cc: emacs-orgmode
Marc-Oliver Ihm <ihm@online.de> writes:
> By the way: There are surely official documentation standards, that I
> could adhere for this. However, at present I cannot find them. Could
> anyone provide me a pointer please ?
Does the file doc/Documentation_Standards.org in the source distribution
help at all?
Failing that the Documentation node in the Elisp info manual has more
general advice.
There is also M-x checkdoc which can help check elisp doc strings.
Phil
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] New function org-find-timestamps
2011-08-21 12:32 ` Philip Rooke
@ 2011-08-22 19:07 ` Marc-Oliver Ihm
0 siblings, 0 replies; 3+ messages in thread
From: Marc-Oliver Ihm @ 2011-08-22 19:07 UTC (permalink / raw)
To: emacs-orgmode
Am 21.08.2011 14:32, schrieb Philip Rooke:
> Marc-Oliver Ihm<ihm@online.de> writes:
>
>> By the way: There are surely official documentation standards, that I
>> could adhere for this. However, at present I cannot find them. Could
>> anyone provide me a pointer please ?
>
> Does the file doc/Documentation_Standards.org in the source distribution
> help at all?
>
> Failing that the Documentation node in the Elisp info manual has more
> general advice.
>
> There is also M-x checkdoc which can help check elisp doc strings.
>
> Phil
>
>
Hi Phil,
I have read the first document you mentioned, and its good. It seems that texinfo is the primary format to use
and so I will go for that and the other references you have will probably help me in the process.
Thanx !
with kind regards, Marc
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-08-22 19:08 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-20 17:30 [PATCH] New function org-find-timestamps Marc-Oliver Ihm
2011-08-21 12:32 ` Philip Rooke
2011-08-22 19:07 ` Marc-Oliver Ihm
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).