From mboxrd@z Thu Jan 1 00:00:00 1970 From: Charles Turner Subject: Not a standard Org-mode time string Date: Tue, 18 Feb 2014 00:19:42 +0000 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49862) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WFYPY-0005bC-BE for emacs-orgmode@gnu.org; Mon, 17 Feb 2014 19:19:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WFYPW-0008Jj-VI for emacs-orgmode@gnu.org; Mon, 17 Feb 2014 19:19:44 -0500 Received: from mail-qa0-x22b.google.com ([2607:f8b0:400d:c00::22b]:48342) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WFYPW-0008JX-Iy for emacs-orgmode@gnu.org; Mon, 17 Feb 2014 19:19:42 -0500 Received: by mail-qa0-f43.google.com with SMTP id o15so22990745qap.30 for ; Mon, 17 Feb 2014 16:19:42 -0800 (PST) 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@gnu.org I'm trying to set up the org-publish system to publish my personal notes in HTML. My org configuration consists only of (add-to-list 'load-path "~/src/org-mode/lisp") (add-to-list 'load-path "~/src/org-mode/contrib/lisp") (require 'org-publish) (setq org-publish-project-alist '(("notes" :base-directory "~/Documents/Notes" :publishing-directory "~/Documents/published_notes" :base-extension "org" :publishing-function org-html-publish-to-html :preserve-breaks t :with-email nil :recursive t :auto-sitemap t :sitemap-title "Charles' Notes" :makeindex t) ("notes-static" :base-directory "~/Documents/Notes" :base-extension "css\\|js\\|jpg\\|gif\\|png\\|svg" :publishing-directory "~/Documents/published_notes" :publishing-function org-publish-attachment) ("charles-notes" :components ("notes" "notes-static")))) Whilst visiting an org file in my Notes directory, I type M-x org-publish RET charles-notes and I receive the follow messages in my *Messages* buffer: Generating tree-style sitemap for Charles' Notes [6 times] condition-case: Bad timestamp `Saturday, 28.05.2011 ' Error was: (Not a standard Org-mode time string: Saturday, 28.05.2011 ) I don't understand the time-stamp messages. Can anyone help me debug this problem? The system specifics are: Emacs : GNU Emacs 24.3.1 (x86_64-pc-linux-gnu, GTK+ Version 3.8.2) of 2013-07-27 on roseapple, modified by Debian Package: Org-mode version 8.2.5h (release_8.2.5h-636-g03514a @ /home/charles/src/org-mode/lisp/) I'm running from the master branch in git. Thanks in advance, Charles.