Taskjuggler: Adapt comment section and some doc strings to tj3

* ox-taskjuggler.el: Update the comment section to TaskJuggler
3.x.
(org-taskjuggler-target-version): Add a link to
`org-taskjuggler-default-reports' to make it clear that both
need to be changed in order to support TaskJuggler 2.4.
This commit is contained in:
Christian Egli 2013-04-12 22:24:18 +02:00
parent 1af215bb46
commit bbf70e74fb
1 changed files with 13 additions and 7 deletions

View File

@ -28,12 +28,11 @@
;;; Commentary: ;;; Commentary:
;; ;;
;; This library implements a TaskJuggler exporter for Org mode. ;; This library implements a TaskJuggler exporter for Org mode.
;; TaskJuggler uses a text format to define projects, tasks and ;; TaskJuggler is a project planing tool that uses a text format to
;; resources, so it is a natural fit for Org mode. It can produce all ;; define projects, tasks and resources, so it is a natural fit for
;; sorts of reports for tasks or resources in either HTML, CSV or PDF. ;; Org mode. It can produce all sorts of reports for tasks or
;; The current version of TaskJuggler requires KDE but the next ;; resources in either HTML, CSV or PDF. TaskJuggler is implemented
;; version is implemented in Ruby and should therefore run on any ;; in Ruby and should therefore run on any platform.
;; platform.
;; ;;
;; The exporter does not export all the nodes of a document or ;; The exporter does not export all the nodes of a document or
;; strictly follow the order of the nodes in the document. ;; strictly follow the order of the nodes in the document.
@ -185,7 +184,14 @@ the project."
:type 'string) :type 'string)
(defcustom org-taskjuggler-target-version 3.0 (defcustom org-taskjuggler-target-version 3.0
"Which version of TaskJuggler the exporter is targeting." "Which version of TaskJuggler the exporter is targeting.
By default a project plan is exported which conforms to version
3.x of TaskJuggler. For a project plan that is compatible with
versions of TaskJuggler older than 3.0 set this to 2.4.
If you change this variable be sure to also change
`org-taskjuggler-default-reports' as the format of reports has
changed considerably between version 2.x and 3.x of TaskJuggler"
:group 'org-export-taskjuggler :group 'org-export-taskjuggler
:type 'number) :type 'number)