From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Hendy Subject: Proper settings for tj3 report directory/output? Date: Wed, 29 Oct 2014 18:39:56 -0500 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]:34176) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XjcqO-0006Xc-KP for emacs-orgmode@gnu.org; Wed, 29 Oct 2014 19:40:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XjcqN-0001pe-Cn for emacs-orgmode@gnu.org; Wed, 29 Oct 2014 19:40:00 -0400 Received: from mail-lb0-x22c.google.com ([2a00:1450:4010:c04::22c]:61476) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XjcqN-0001pa-4h for emacs-orgmode@gnu.org; Wed, 29 Oct 2014 19:39:59 -0400 Received: by mail-lb0-f172.google.com with SMTP id n15so3373371lbi.31 for ; Wed, 29 Oct 2014 16:39:57 -0700 (PDT) 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 I just re-set up tj3 on a new work computer and am a bit puzzled by the report directory structure. Here's what I get when running C-e J j ~/working_dir/file.org ~/working_dir/file.tjp If I use C-e J p instead, I get: ~/working_dir/file.org ~/working_dir/file.tjp ~/working_dir/reports/Overview.html ~/working_dir/reports/taskjuggler/{css,examples,icons,scripts} Opening Overview.html doesn't pick up the css, though. I have to put Overview.html inside of taskjuggler. If I manuall run tj3 on the file, I get the same taskjuggler directory, but Overview.html is generated inside of ~/working_dir instead. I'm a bit confused by both behaviors. The variables I've defined in .emacs are: org-taskjuggler-target-version: 3.5 org-taskjuggler-default-reports: include "reports.tji" (custom report I've defined) As far as I know, these are relevant but left as the default that came with org: org-taskjuggler-proces-command: "tj3 --silent --no-color --output-dir %o %f" org-taskjuggler-reports-directory: "reports" I don't think it matters... but here's my pretty simple gantt chart reports.tji file used above: #+begin_src reports.tji textreport frame "" { header -8<- == Example report == <[navigator id="navbar"]> ->8- footer "----" textreport index "Overview" { formats html center '<[report id="overview"]>' } } taskreport overview "" { header -8<- === Timeline/Deliverables === ->8- columns bsi { title 'WBS' }, name, start, duration, chart { width 1200 ${TaskTip} scale hour} # For this report we like to have the abbreviated weekday in front # of the date. %a is the tag for this. timeformat "%d %H:%M" period 2014-11-03-06:00 + 72h loadunit minutes hideresource 1 sorttasks tree } #+end_src Thanks for any suggestions, John