From mboxrd@z Thu Jan 1 00:00:00 1970 From: Karl Voit Subject: Re: [bug] org-agenda-write does not handle date stamps without day of week Date: Tue, 20 Mar 2012 13:26:36 +0100 Message-ID: <2012-03-20T13-22-33@devnull.Karl-Voit.at> References: <2012-03-05T15-36-35@devnull.Karl-Voit.at> <2012-03-16T17-12-15@devnull.Karl-Voit.at> <5033.1331920331@alphaville> <2012-03-16T19-40-36@devnull.Karl-Voit.at> <4859.1331966740@alphaville> <30E4D375-690C-4798-B341-51268082B826@gmail.com> <90243EDA-E2F2-4A70-B446-CB2FFD4AA1CB@gmail.com> Reply-To: news1142@Karl-Voit.at Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:33761) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S9y9P-0002RM-Ta for emacs-orgmode@gnu.org; Tue, 20 Mar 2012 08:27:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S9y9J-0005VO-LK for emacs-orgmode@gnu.org; Tue, 20 Mar 2012 08:26:55 -0400 Received: from plane.gmane.org ([80.91.229.3]:59846) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S9y9J-0005V1-Ek for emacs-orgmode@gnu.org; Tue, 20 Mar 2012 08:26:49 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1S9y9H-0005h4-Hl for emacs-orgmode@gnu.org; Tue, 20 Mar 2012 13:26:47 +0100 Received: from mail.michael-prokop.at ([88.198.6.110]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 20 Mar 2012 13:26:47 +0100 Received: from news1142 by mail.michael-prokop.at with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 20 Mar 2012 13:26:47 +0100 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 * Carsten Dominik wrote: > I have just pushed the new version of this regexp into master. Very cool! > Karl, let me know if it fixes the issues you where having > with writing agendas. My agenda looks fine. But generating the ics file still results in events without the time information: ,----[ my function generating the ics ] | (defun vk-export-agenda() | "Exports monthly Org-mode agenda to agenda.ics file" | (interactive) | (org-agenda-list nil nil 60) | (org-agenda-write "~/share/all/org-mode/agenda.ics") | ) `---- with: ,----[ example events ] | ** <2012-03-20 8:00-9:30> Test | :PROPERTIES: | :CREATED: [2012-03-20 Tue 10:38] | :END: | | ** <2012-03-20 8:12-13:12> Test | :PROPERTIES: | :CREATED: [2012-03-20 Tue 10:40] | :END: `---- results in: ,----[ ics result ] | vk@gary ~all/org-mode (git)-[master] % grep -C 2 Test agenda.ics | DTSTART;VALUE=DATE:20120320 | DTEND;VALUE=DATE:20120320 | SUMMARY: Test | CATEGORIES:misc | END:VEVENT | -- | DTSTART;VALUE=DATE:20120320 | DTEND;VALUE=DATE:20120320 | SUMMARY: Test | CATEGORIES:misc | END:VEVENT | vk@gary ~all/org-mode (git)-[master] % `---- -- Karl Voit