From mboxrd@z Thu Jan 1 00:00:00 1970 From: "munco munco" Subject: Make timestamps appear in each item header of the _archive file Date: Sat, 13 Sep 2008 14:33:07 +1000 Message-ID: <7cd1bbf10809122133k3b0094e4w1300b84bde522378@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KeMop-0003d2-5y for emacs-orgmode@gnu.org; Sat, 13 Sep 2008 00:33:11 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KeMon-0003bD-LQ for emacs-orgmode@gnu.org; Sat, 13 Sep 2008 00:33:09 -0400 Received: from [199.232.76.173] (port=55884 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KeMon-0003aw-DL for emacs-orgmode@gnu.org; Sat, 13 Sep 2008 00:33:09 -0400 Received: from qb-out-1314.google.com ([72.14.204.169]:49104) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KeMon-0006oR-57 for emacs-orgmode@gnu.org; Sat, 13 Sep 2008 00:33:09 -0400 Received: by qb-out-1314.google.com with SMTP id f16so1653101qba.30 for ; Fri, 12 Sep 2008 21:33:07 -0700 (PDT) Content-Disposition: inline List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi When I archive (C-c-x-a) a TODO item to my _archive file I would like the close timestamp to also appear in the header of that TODO item in the _archive file (e.g. ** DONE <2008-09-13 Sat 14:27> Email Org-mode list my problem... ) My current org-mode configuration looks like: ;; ORG mode------------------------------------------------- (require 'org) (add-to-list 'auto-mode-alist '("\\.org$" . org-mode)) (define-key global-map "\C-cl" 'org-store-link) (define-key global-map "\C-ca" 'org-agenda) (setq org-agenda-files (list "~/.agenda.org")) (setq org-log-done 'time) (setq org-log-done 'note) ;;Prompts me for a note about the close (setq org-use-fast-todo-selection t) (setq org-hide-leading-stars t) (setq org-todo-keyword-faces '(("TODO" . org-warning) ;; TODO :something I need to do ("DONE" . (:foreground "forest green" :weight bold)) ;; DONE :completed task ("WAITING" . (:foreground "orange" :weight bold)) ;; WAITING :waiting on an external input (this also means Delegated) ("CANCELED" . shadow))) ;; CANCELED :this is not going to be completed (but I want to recorded it) (setq org-todo-keywords '((sequence "TODO(t)" "WAITING(w@/!)" "|" "DONE(d!)" "CANCELED(c@)"))) Does anyone know how I can do this? Thanks Adam