From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Publishing clocked time Date: Sun, 6 Sep 2009 13:41:27 +0200 Message-ID: References: <566e527b0909040832v2dd07dadm89168f8aaedea3d2@mail.gmail.com> Mime-Version: 1.0 (Apple Message framework v936) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MkG7w-0000wa-0l for emacs-orgmode@gnu.org; Sun, 06 Sep 2009 07:41:48 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MkG7r-0000pr-PM for emacs-orgmode@gnu.org; Sun, 06 Sep 2009 07:41:47 -0400 Received: from [199.232.76.173] (port=37821 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MkG7r-0000og-43 for emacs-orgmode@gnu.org; Sun, 06 Sep 2009 07:41:43 -0400 Received: from mail-ew0-f211.google.com ([209.85.219.211]:61283) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MkG7q-0003W4-3i for emacs-orgmode@gnu.org; Sun, 06 Sep 2009 07:41:42 -0400 Received: by mail-ew0-f211.google.com with SMTP id 7so190919ewy.31 for ; Sun, 06 Sep 2009 04:41:41 -0700 (PDT) In-Reply-To: <566e527b0909040832v2dd07dadm89168f8aaedea3d2@mail.gmail.com> 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: Ivan Chernetsky Cc: emacs-orgmode@gnu.org Hi Ivan, clocking lines are considered ugly and are therefore not included during publishing. I could make an option for it... Are there more people interested? - Carsten On Sep 4, 2009, at 5:32 PM, Ivan Chernetsky wrote: > Hello, > > is it possible to publish clocked time of a TODO item? For instance, I > have a TODO item like this: > > ** TODO :NEXT: > - State "STARTED" from "TODO" [2009-09-04 Fri 15:56] > - State "STARTED" from "TODO" [2009-09-04 Fri 14:52] > CLOCK: [2009-09-04 Fri 14:52]--[2009-09-04 Fri 15:56] => 1:04 > > When I publish a project that contains a file with this item, I > doesn't see last line with clocked time info. I have the following > settings regarding publishing: > > (setq org-clock-persist t) > (org-clock-persistence-insinuate) > (setq org-clock-in-resume t) > (setq org-clock-into-drawer nil) > (setq org-clock-out-remove-zero-time-clocks t) > (setq org-clock-out-when-done nil) > (setq org-agenda-log-mode-items '(clock)) > > (setq org-todo-keywords '((sequence "TODO(t)" "STARTED(s!)" "|" > "DONE(d!/!)") > (sequence "WAITING(w@/!)" "SOMEDAY(S!)" "|" "CANCELLED(c@/!)"))) > (setq org-use-fast-todo-selection t) > (setq org-todo-state-tags-triggers > '(("CANCELED" ("CANCELLED" . t)) > ("WAITING" ("WAITING" . t) ("NEXT")) > ("SOMEDAY" ("WAITING" . t)) > ("DONE" ("NEXT") ("WAITING")) > ("TODO" ("WAITING") ("CANCELLED")) > ("STARTED" ("WAITING") ("NEXT" . t)))) > (setq org-tag-alist > '(("NEXT" . ?N) > ("WAITING" . ?W) > ("CANCELLED" . ?C))) > (setq org-fast-tag-selection-single-key 'expert) > (setq org-agenda-custom-commands > '(("s" "Started Tasks" todo "STARTED" > ((org-agenda-todo-ignore-with-date nil))) > ("w" "Tasks waiting on something" tags "WAITING" > ((org-use-tag-inheritance nil))) > ("n" "Next" tags "NEXT-WAITING-CANCELLED/!" nil))) > (setq org-agenda-repeating-timestamp-show-all t) > (setq org-agenda-show-all-dates t) > (setq org-agenda-sorting-strategy > '((agenda time-up priority-down effort-up category-up) > (todo priority-down) > (tags priority-down))) > > > ;; (setq org-agenda-include-diary t) > ;; (setq org-agenda-include-all-todo t) > > (setq org-agenda-files '("~/org/work/dooster.org")) > (setq org-directory "~/org/") > > ;; publishing > (setq org-publish-project-alist > '(("work" > :base-directory "~/org/work" > :publishing-directory "~/org/published/work" > :recursive t > :base-extension "org" > :publishing-function org-publish-org-to-html > :auto-index t))) > (setq org-export-author-info nil) > (setq org-export-creator-info nil) > (setq org-export-html-use-infojs nil) > (setq org-export-with-drawers t) > (setq org-export-html-inline-images t) > > Thanks in advance! > > > _______________________________________________ > Emacs-orgmode mailing list > Remember: use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode