From mboxrd@z Thu Jan 1 00:00:00 1970 From: Anakreontas Mentis Subject: taskjuggler exporter ignores SCHEDULED attribute and requires a space between BLOCKER tasks Date: Fri, 30 May 2014 17:11:33 +0200 Message-ID: <87r43b713u.fsf@petitesrousses.imag.fr> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45168) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WqOuv-00020Z-0d for emacs-orgmode@gnu.org; Fri, 30 May 2014 11:40:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WqOuo-0006VS-Op for emacs-orgmode@gnu.org; Fri, 30 May 2014 11:40:24 -0400 Received: from plane.gmane.org ([80.91.229.3]:58605) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WqOuo-0006V2-J4 for emacs-orgmode@gnu.org; Fri, 30 May 2014 11:40:18 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WqOuZ-0006a5-T3 for emacs-orgmode@gnu.org; Fri, 30 May 2014 17:40:03 +0200 Received: from petitesrousses.imag.fr ([129.88.107.103]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 30 May 2014 17:40:03 +0200 Received: from Anakreontas.Mentis by petitesrousses.imag.fr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 30 May 2014 17:40:03 +0200 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 --=-=-= Content-Type: text/plain The attached file demonstrates two bugs regarding the task juggler exporter. I load the ox-taskjuggler file and export with the key sequence C-c C-e J j 1. SCHEDULED date is not exported as a start attribute. 2. The BLOCKER attribute requires a space between two dependency tasks. For example, Task 3 in the attached file depends on Task 1 and Task 2. Setting :BLOCKER: aa,bb has no impact on the generated file. The attribute is ignored. If I set :BLOCKER: aa, bb (note the space between aa and bb), the produced file declares the dependency. --=-=-= Content-Type: text/x-org Content-Disposition: inline; filename=test.org * Project A :taskjuggler_project: :PROPERTIES: :leaves_holiday: "Ascension Day" 2014-05-29 :leaves_holiday: "Whit Monday" 2014-06-9 :leaves_holiday: "Bastille Day" 2014-07-14 :leaves_holiday: "Assumption of Mary" 2014-08-15 :leaves_holiday: "Armistice Day" 2014-11-11 :leaves_holiday: "Christmas Eve" 2014-12-24 :leaves_holiday: "Christmas Day" 2014-12-25 :leaves_holiday: "St Stephen's Day" 2014-12-26 :leaves_holiday: "New Year's Eve" 2014-12-31 :start: 2014-05-05 :END: *** TODO Task 1 SCHEDULED: <2014-06-18 Wed> :PROPERTIES: :start: 2014-06-18 :Effort: 1w :allocate: dev :task_id: aa :BLOCKER: previous-sibling # :start: 2014-05-30 :END: *** TODO Task 2 SCHEDULED: <2014-06-20 Fri> :PROPERTIES: :Effort: 1w :allocate: dev :task_id: bb :BLOCKER: previous-sibling # :start: 2014-05-30 :END: *** TODO Task 3 SCHEDULED: <2014-06-26 Thu> :PROPERTIES: :Effort: 1w :allocate: dev :task_id: cc :BLOCKER: aa,bb # :start: 2014-05-30 :END: * Resources :taskjuggler_resource: ** Developer :PROPERTIES: :resource_id: dev :resource_email: dev@mail.org :END: --=-=-=--