From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Hendy Subject: Re: Exporting timestamps in html Date: Fri, 21 Jun 2013 15:54:37 -0500 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60094) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uq8Lv-0003lJ-0v for emacs-orgmode@gnu.org; Fri, 21 Jun 2013 16:54:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Uq8Lu-00050s-4i for emacs-orgmode@gnu.org; Fri, 21 Jun 2013 16:54:38 -0400 Received: from mail-oa0-x229.google.com ([2607:f8b0:4003:c02::229]:38276) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uq8Lt-00050n-Up for emacs-orgmode@gnu.org; Fri, 21 Jun 2013 16:54:38 -0400 Received: by mail-oa0-f41.google.com with SMTP id n10so9874691oag.28 for ; Fri, 21 Jun 2013 13:54:37 -0700 (PDT) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode On Fri, Jun 21, 2013 at 3:47 PM, John Hendy wrote: > On Fri, Jun 21, 2013 at 3:41 PM, John Hendy wrote: >> I have the following options line in my file header: >> >> #+options: <:t num:t author:t tags:t toc:nil tasks:t todo:t >> >> Sample file: >> >> #+begin_src org >> #+options: <:t num:t author:t tags:t toc:nil tasks:t todo:t >> >> * Task list >> >> ** todo task 1 >> DEADLINE: <2013-06-21 Fri> >> >> ** todo task 2 >> SCHEDULED: <2013-06-24 Mon> >> #+end_src >> >> I'm not getting any time stamps in my output file, though. Any >> suggestions on where to start looking for the issue? > > Just wanted to look at =org-export-date-timestamp-format= and noted this: > > #+begin_src help > > org-export-date-timestamp-format is a variable defined in `org-exp.el'. > Its value is nil > Original value was "%Y-%m-%d" > > Documentation: > Time string format for Org timestamps in the #+DATE option. > > You can customize this variable. > > This variable was introduced, or its default value was changed, in > version 24.1 of Emacs. > > #+end_src > > I'm on emacs 24.3.1... is this variable having a setting of nil > preventing export of timestamps? Since I didn't do this myself, does > the above mean that Emacs might have introduced something that affects > this Org export option? One more update... I had the idea to try a regular timestamp, and those export, even though SCHEDULED and DEADLINE do not. Lastly, I used a minimal config and emacs -Q and get the same behavior: #+begin_src min-config (add-to-list 'load-path "~/.elisp/org.git/contrib/lisp") (add-to-list 'load-path "~/.elisp/org.git/lisp/") #+end_src Same file as above, and not getting deadline/scheduled timestamps exported. John > > > Thanks, > John > >> >> >> Thanks, >> John