OSDN Git Service

tjqt4port/tj2qt4.git
14 years agoAutomatically align underspecified tasks boundaries on project boundaries when possible.
Grégoire Barbier [Sat, 1 Aug 2009 11:52:17 +0000 (13:52 +0200)]
Automatically align underspecified tasks boundaries on project boundaries when possible.

Somme common underspecification cases can be automatically completed,
before scheduling, by aligning the task boundaries on project
boundaries. This is now done.
This enables syntax simplication, and therefore ease of use for new
users, for the following two cases (the third one was actually
already supported).

(i) Project-wide tasks

Some tasks, such as management, last from project start to project
end. They no longer have to specify "start" and "end" with values
that change each time the project boundaries change.
For instance, this syntax is now accepted for a project-wide task:
task mnm "Management & Meetings" {
  # no start date since it can be guessed as aligned on project start
  # no end date since it can be guessed as aligned on project end
  priority 1000 # no other task should steal time on this one
  allocate john {
    limits { weeklymax 0.5d dailymax 1h } # 4h/w but for short weeks
    alternative joe select maxloaded # Joe when John is on vacation
  }
}
This only works for tasks that have no incompatible soft constraints.
That is, no previous tasks if the start date is to be aligned on
project start date, and no followers if the end date is to be aligned
on project end date.

(ii) Half-project-wide tasks

Some tasks, such as support, last from a start point to the project
end (in ASAP scheduling) or from the project start to an end point
(in ALAP scheduling). They no longer have to specify the boundary
that is to be aligned to a project boundary.
For instance, this syntax is now accepted for a task which lasts
until the project end:
task support "Support" {
  # no end date since it can be guessed as aligned on project end
  depends !deployment
  priority 1000 # no other task should steal time on this one
  allocate team { limits { weeklymax 0.5d dailymax 1h } }
}
The same restrition about soft constraints applies as in case (i).

(iii) Tasks that we do not yet know the details

Previously, several cases of unknown content tasks were silently
converted to milestones to avoid errors during early stages of
project specification. This is still the case for tasks that does
not match the two previous cases.
For instance, such a task will be automatically converted to
milestone:
task integration "Integration Phase" {
  depends !development
  # not yet decided, let it be a milestone until further details
}

Nota:
In some cases this patch changes the behaviour of TJ since some tasks
where previously converted to milestone and are now extended to the
project boundaries, this is the case of tasks that only contained
a start specification (therefore in ASAP scheduling) and had no
followers. The new behaviour seems more desirable than the former one
since such tasks should be explicitly marked as milestones if they
are so: implicit conversion to milestone is only there as a
convenience for early project specification, not as a regular syntax.

14 years agoRemoving redundant error checking related to booking declaration.
Grégoire Barbier [Wed, 29 Jul 2009 21:05:00 +0000 (23:05 +0200)]
Removing redundant error checking related to booking declaration.

Both checks are redundant with those made in Task::preScheduleOk().
Moreover the check concerning milestones is less precise than the
one in Task::preScheduleOk() because the later detects implicit
milestones (tasks with no effort, no duration and no length)
whereas the removed check only handles tasks declared as milestones
by the "milestone" property (because it is done earlier in the
pre-scheduling process).

14 years agoAuto enlarge "scheduled" task time frame if a "booking" does not fit it.
Grégoire Barbier [Wed, 29 Jul 2009 23:06:19 +0000 (01:06 +0200)]
Auto enlarge "scheduled" task time frame if a "booking" does not fit it.

For a given scenario, when a resource booking is found for a task that
has no longer to be scheduled ("scheduled" property is set for this
scenario) and does not fit the task time frame, then the time frame
is modified for the booking to fit it.

This patch makes time tracking easier since it avoids the painfull
manual work about tasks boundaries needed to avoid plenty of
"booking of resource XXX is outside of task interval" errors.

It also avoids at all the need of any property apart from "scheduled"
in such a task, including: "start", "end", "depends", "precedes",
"effort", "duration", "length", "allocate". An historical task can
now be almost empty, being only a support for bookings.

14 years agoThe GUI failed to open the correct CSV report file if it had an absolute path.
Grégoire Barbier [Tue, 4 Aug 2009 09:53:54 +0000 (11:53 +0200)]
The GUI failed to open the correct CSV report file if it had an absolute path.

The URL formed to open the system default editor for text/x-csv (let say
emacs) was always defined relatively to the project file directory, even
when the report name begined with a / (for instance "/tmp/tasks.csv").

14 years agoFixed error message when allocate {load xxx} was under timingresolution.
Grégoire Barbier [Fri, 31 Jul 2009 12:14:45 +0000 (14:14 +0200)]
Fixed error message when allocate {load xxx} was under timingresolution.

The string contained a printf-style "%f" instead of an i18n-style "%1".

14 years agoClarify error message for booking declarations before tasks definitions.
Grégoire Barbier [Thu, 30 Jul 2009 00:03:41 +0000 (02:03 +0200)]
Clarify error message for booking declarations before tasks definitions.

14 years agoImproved .gitignore: added some testsuite output files
Grégoire Barbier [Mon, 27 Jul 2009 21:36:10 +0000 (23:36 +0200)]
Improved .gitignore: added some testsuite output files

14 years agoColumn "hierarchlevel" was not described in the online doc.
Grégoire Barbier [Mon, 27 Jul 2009 09:58:08 +0000 (11:58 +0200)]
Column "hierarchlevel" was not described in the online doc.

BTW it was not defined in the vim syntax coloration properties either.

14 years agoFix AllScenarios test case.
Chris Schlaeger [Thu, 23 Jul 2009 15:43:24 +0000 (17:43 +0200)]
Fix AllScenarios test case.

14 years agoMerge branch 'post-2.4.2'
Chris Schlaeger [Thu, 23 Jul 2009 15:26:44 +0000 (17:26 +0200)]
Merge branch 'post-2.4.2'

14 years agoGet rid of compile error.
Chris Schlaeger [Thu, 23 Jul 2009 12:43:13 +0000 (14:43 +0200)]
Get rid of compile error.

Test cases must have a fixed 'now' date.

14 years agoMerge branch 'post-2.4.2'
Chris Schlaeger [Thu, 23 Jul 2009 12:11:53 +0000 (14:11 +0200)]
Merge branch 'post-2.4.2'

Conflicts:
docs/en/ChangeLog.xml

14 years agoImproved .gitignore * adding some doc and i18n artefacts * adding leading / for top...
Grégoire Barbier [Thu, 11 Jun 2009 15:25:00 +0000 (17:25 +0200)]
Improved .gitignore * adding some doc and i18n artefacts * adding leading / for top-level only files (otherwise the same file name is matched anywhere within the tree)

14 years agoAdding performance warning in online doc for "projectmax" and "yearlymax".
Grégoire Barbier [Tue, 21 Jul 2009 22:53:20 +0000 (00:53 +0200)]
Adding performance warning in online doc for "projectmax" and "yearlymax".

14 years agoAdding "projectmax" and "yearlymax" resource usage limits.
Grégoire Barbier [Wed, 1 Jul 2009 18:32:24 +0000 (20:32 +0200)]
Adding "projectmax" and "yearlymax" resource usage limits.

By the way, the patch fixes a (very minor) bug in displaying
"monthlymax" resource usage limit, which used to miscalculate
the amount of days of this limit when displaying it in a
resource report.

14 years agoPatch for uic to find local header files.
Chris Schlaeger [Thu, 23 Jul 2009 11:34:31 +0000 (13:34 +0200)]
Patch for uic to find local header files.

Looks like the -L options does not work on all Linux distros.

14 years agoMake the --with-ical-support=no option really work.
Chris Schlaeger [Wed, 15 Jul 2009 08:30:18 +0000 (10:30 +0200)]
Make the --with-ical-support=no option really work.

2.4.2 was still picking up some kdepim3 header files.

14 years agoFinally, getting ready to release 2.4.2
Chris Schlaeger [Sun, 12 Jul 2009 12:43:33 +0000 (14:43 +0200)]
Finally, getting ready to release 2.4.2

14 years agoMake iCal support optional.
Chris Schlaeger [Mon, 29 Jun 2009 17:38:01 +0000 (19:38 +0200)]
Make iCal support optional.

Since distros are starting to drop KDE 3 support, KDEPIM may no longer
be available. This patch makes KDEPIM3 an optional requirement that
can be disable at build time.

14 years agoVacations are now included in export reports.
Chris Schlaeger [Thu, 25 Jun 2009 13:18:15 +0000 (15:18 +0200)]
Vacations are now included in export reports.

15 years agoAdded Task Id into Clipboard.
Jean-Yves [Thu, 4 Jun 2009 21:18:00 +0000 (23:18 +0200)]
Added Task Id into Clipboard.

Signed-off-by: Jean-Yves <j.taskjuggler@gindre.org>
15 years agoFix task haserror calculation
Jean-Yves [Wed, 3 Jun 2009 21:04:24 +0000 (23:04 +0200)]
Fix task haserror calculation

Signed-off-by: Jean-Yves <j.taskjuggler@gindre.org>
15 years agoAllow-warnings.-New-drawing-for-min-max-start-end.
Jean-Yves [Thu, 4 Jun 2009 20:50:33 +0000 (22:50 +0200)]
Allow-warnings.-New-drawing-for-min-max-start-end.

Signed-off-by: Jean-Yves <j.taskjuggler@gindre.org>
15 years agoUpdate AllScenarios reference to match output.
Chris Schlaeger [Thu, 11 Jun 2009 21:21:53 +0000 (23:21 +0200)]
Update AllScenarios reference to match output.

15 years agoSet version to 2.4.2_beta2
Chris Schlaeger [Thu, 11 Jun 2009 12:50:25 +0000 (14:50 +0200)]
Set version to 2.4.2_beta2

15 years agoEliminate compiler warning with newer GCCs.
Chris Schlaeger [Thu, 11 Jun 2009 12:39:18 +0000 (14:39 +0200)]
Eliminate compiler warning with newer GCCs.

15 years agoGet rid of compiler warning with newer GCCs.
Chris Schlaeger [Thu, 11 Jun 2009 12:37:55 +0000 (14:37 +0200)]
Get rid of compiler warning with newer GCCs.

15 years agoAdded svgtimetimereport.
Jean-Yves [Thu, 4 Jun 2009 20:27:30 +0000 (22:27 +0200)]
Added svgtimetimereport.

Signed-off-by: Jean-Yves <j.taskjuggler@gindre.org>
15 years agoAdd wild character * (star) for scenarios property.
Jean-Yves [Wed, 3 Jun 2009 20:10:38 +0000 (22:10 +0200)]
Add wild character * (star) for scenarios property.

Signed-off-by: Jean-Yves <j.taskjuggler@gindre.org>
15 years agoAdded *~ to .gitignore
Jean-Yves [Thu, 28 May 2009 10:32:36 +0000 (12:32 +0200)]
Added *~ to .gitignore

Signed-off-by: Jean-Yves <jean-yves@grey-ubuntu.(none)>
15 years agoFix issue on vacation resource display
Jean-Yves [Thu, 28 May 2009 09:26:36 +0000 (11:26 +0200)]
Fix issue on vacation resource display

Signed-off-by: Jean-Yves <jean-yves@grey-ubuntu.(none)>
15 years agoUse TJ standart period format for vacation ressource display.
j.taskjuggler@gindre.org [Wed, 27 May 2009 10:08:44 +0000 (12:08 +0200)]
Use TJ standart period format for vacation ressource display.

Signed-off-by: jy <j.taskjuggler@gindre.org>
15 years agoFix issue on vacation resource display for the day of time change.
j.taskjuggler@gindre.org [Wed, 27 May 2009 09:42:12 +0000 (11:42 +0200)]
Fix issue on vacation resource display for the day of time change.

Signed-off-by: jy <j.taskjuggler@gindre.org>
15 years agoImproved the description of 'isDependencyOf'.
Chris Schlaeger [Wed, 27 May 2009 19:03:40 +0000 (21:03 +0200)]
Improved the description of 'isDependencyOf'.

15 years agoFixed documentation 'isDependencyOf'
j.taskjuggler@gindre.org [Tue, 26 May 2009 09:47:46 +0000 (11:47 +0200)]
Fixed documentation 'isDependencyOf'

Signed-off-by: jy <j.taskjuggler@gindre.org>
15 years agoThere is no difference for duration task with bookings.
Chris Schlaeger [Fri, 15 May 2009 13:45:53 +0000 (15:45 +0200)]
There is no difference for duration task with bookings.

Projection mode or not doesn't matter.

15 years agoAdapt example to new algorithm.
Chris Schlaeger [Thu, 14 May 2009 11:33:51 +0000 (13:33 +0200)]
Adapt example to new algorithm.

15 years agoUpdated documentation for taskbarprefix and taskbarpostfix.
j.taskjuggler@gindre.org [Wed, 13 May 2009 22:03:50 +0000 (00:03 +0200)]
Updated documentation for taskbarprefix and taskbarpostfix.

Signed-off-by: jy <j.taskjuggler@gindre.org>
15 years agoMake sure booking tasks align with timing resolution.
Chris Schlaeger [Thu, 14 May 2009 11:23:12 +0000 (13:23 +0200)]
Make sure booking tasks align with timing resolution.

15 years agoAnother refinement of the duration-booking code.
Chris Schlaeger [Wed, 13 May 2009 13:57:26 +0000 (15:57 +0200)]
Another refinement of the duration-booking code.

15 years agoAdded taskbarprefix and taskbarpostfix
j.taskjuggler@gindre.org [Sun, 10 May 2009 14:37:07 +0000 (16:37 +0200)]
Added taskbarprefix and taskbarpostfix

Signed-off-by: jy <j.taskjuggler@gindre.org>
15 years agoGet rid of ugly DOS linebreaks.
Chris Schlaeger [Tue, 12 May 2009 15:33:39 +0000 (17:33 +0200)]
Get rid of ugly DOS linebreaks.

15 years agoMore improvements for the duration + bookings code.
Chris Schlaeger [Tue, 12 May 2009 15:29:03 +0000 (17:29 +0200)]
More improvements for the duration + bookings code.

15 years agoAdded complements info in task and resource Details window
j.taskjuggler@gindre.org [Sun, 10 May 2009 14:25:44 +0000 (16:25 +0200)]
Added complements info in task and resource Details window

Signed-off-by: jy <j.taskjuggler@gindre.org>
15 years agoImproved version of last patch.
Chris Schlaeger [Tue, 12 May 2009 12:04:27 +0000 (14:04 +0200)]
Improved version of last patch.

15 years agoFix duration tasks with bookings.
Chris Schlaeger [Mon, 11 May 2009 18:20:33 +0000 (20:20 +0200)]
Fix duration tasks with bookings.

Get rid of some compiler warnings.

15 years agoMerge branch 'master' of ssh://office.taskjuggler.org/srv/www/vhosts/www.taskjuggler...
Chris Schlaeger [Sun, 10 May 2009 12:48:23 +0000 (14:48 +0200)]
Merge branch 'master' of ssh://office.taskjuggler.org/srv/www/vhosts/taskjuggler.org/htdocs/git-repos/taskjuggler

15 years agoAdded double and middle click facility in interactive report
j.taskjuggler@gindre.org [Sun, 10 May 2009 09:32:26 +0000 (11:32 +0200)]
Added double and middle click facility in interactive report

Signed-off-by: jy <j.taskjuggler@gindre.org>
15 years agoMerge branch 'master' of ssh://office.taskjuggler.org/srv/www/vhosts/www.taskjuggler...
Chris Schlaeger [Fri, 24 Apr 2009 08:28:41 +0000 (10:28 +0200)]
Merge branch 'master' of ssh://office.taskjuggler.org/srv/www/vhosts/taskjuggler.org/htdocs/git-repos/taskjuggler

15 years agoAttempt to contain rounding errors.
Chris Schlaeger [Fri, 24 Apr 2009 08:27:09 +0000 (10:27 +0200)]
Attempt to contain rounding errors.

Accumulating efforts seem to lead to different results on various
platforms due to platform dependend rounding errors. This patch tries
to contain such errors.

15 years agoAdd last fix to change log.
Chris Schlaeger [Sat, 18 Apr 2009 12:37:07 +0000 (14:37 +0200)]
Add last fix to change log.

15 years agoFixed crash for vacation date outside of project.
Chris Schlaeger [Sat, 18 Apr 2009 12:34:58 +0000 (14:34 +0200)]
Fixed crash for vacation date outside of project.

The range check contained a copy-paste bug.

15 years agoFixed problem with completion degree reporting.
Chris Schlaeger [Thu, 16 Apr 2009 17:45:05 +0000 (19:45 +0200)]
Fixed problem with completion degree reporting.

Container tasks with only sub tasks that had allocation attributes but
got no resources allocated. Problem was reported by JohnZ.

15 years agoMerge branch 'master' of ssh://office.taskjuggler.org/srv/www/vhosts/www.taskjuggler...
Chris Schlaeger [Mon, 6 Apr 2009 03:52:44 +0000 (05:52 +0200)]
Merge branch 'master' of ssh://office.taskjuggler.org/srv/www/vhosts/taskjuggler.org/htdocs/git-repos/taskjuggler

15 years agoMark version as snapshot release.
Chris Schlaeger [Mon, 6 Apr 2009 03:52:04 +0000 (05:52 +0200)]
Mark version as snapshot release.

15 years agoCorrect desciption of legal ID characters.
Chris Schlaeger [Fri, 27 Mar 2009 08:05:35 +0000 (09:05 +0100)]
Correct desciption of legal ID characters.

15 years agoFixed a booking related bug.
Chris Schlaeger [Wed, 25 Mar 2009 07:49:03 +0000 (08:49 +0100)]
Fixed a booking related bug.

Probably esotheric, but could happen in the wild.

15 years agoRemove more historic time zones.
Chris Schlaeger [Wed, 18 Mar 2009 19:04:31 +0000 (20:04 +0100)]
Remove more historic time zones.

15 years agoDon't use the historic time zone names. They cause problems on BSDs.
Chris Schlaeger [Wed, 18 Mar 2009 18:58:00 +0000 (19:58 +0100)]
Don't use the historic time zone names. They cause problems on BSDs.

15 years agoAdd support for misalined time zones.
Chris Schlaeger [Sun, 15 Mar 2009 11:12:33 +0000 (12:12 +0100)]
Add support for misalined time zones.

Added support for timezones that have a difference to UTC that is not
a multiple of 1 hour.

15 years agoFix crash when the UI is started with a project without reports.
Chris Schlaeger [Tue, 24 Feb 2009 21:09:48 +0000 (22:09 +0100)]
Fix crash when the UI is started with a project without reports.

15 years agoDon't overwrite table frames with alternating background in print
Chris Schlaeger [Mon, 23 Feb 2009 09:19:23 +0000 (10:19 +0100)]
Don't overwrite table frames with alternating background in print
reports.

15 years agoNo need to create an empty ExpressionTree. 0 will do fine as well.
Chris Schlaeger [Thu, 19 Feb 2009 13:56:54 +0000 (14:56 +0100)]
No need to create an empty ExpressionTree. 0 will do fine as well.

15 years agoMerge branch 'master' of ssh://office.taskjuggler.org/srv/www/vhosts/www.taskjuggler...
Chris Schlaeger [Sun, 18 Jan 2009 19:22:42 +0000 (20:22 +0100)]
Merge branch 'master' of ssh://office.taskjuggler.org/srv/www/vhosts/taskjuggler.org/htdocs/git-repos/taskjuggler

15 years agoAdded some more checks to prevents crashes in the GUI.
Chris Schlaeger [Sun, 18 Jan 2009 19:19:22 +0000 (20:19 +0100)]
Added some more checks to prevents crashes in the GUI.

When pressing certain buttons and keys at a high rate, the GUI can
crash. These fixes make this more unlikely, but are not a proper fix.
Since this won't occur in normal operation, I don't spend time on
trying to fix this.

15 years agoRevert "Kill some redundant checks."
Chris Schlaeger [Sun, 18 Jan 2009 18:40:29 +0000 (19:40 +0100)]
Revert "Kill some redundant checks."

This reverts commit f335fd14c8ae0f0139d7d0881dd4951cb126a929.

15 years agoDead code
Ray Lehtiniemi [Sat, 28 Jun 2008 22:46:13 +0000 (16:46 -0600)]
Dead code

Signed-off-by: Ray Lehtiniemi <rayl@mail.com>
15 years agoCache return value in local var
Ray Lehtiniemi [Sat, 28 Jun 2008 04:29:07 +0000 (22:29 -0600)]
Cache return value in local var

Signed-off-by: Ray Lehtiniemi <rayl@mail.com>
15 years agoKill a bunch of unneeded static_cast<>
Ray Lehtiniemi [Sat, 28 Jun 2008 03:58:27 +0000 (21:58 -0600)]
Kill a bunch of unneeded static_cast<>

Signed-off-by: Ray Lehtiniemi <rayl@mail.com>
15 years agoConstify getTable() to eliminate some const_cast<>() calls.
Ray Lehtiniemi [Sat, 28 Jun 2008 03:09:06 +0000 (21:09 -0600)]
Constify getTable() to eliminate some const_cast<>() calls.

Signed-off-by: Ray Lehtiniemi <rayl@mail.com>
15 years agoUse Report::generate() virtual function to dispatch reports.
Ray Lehtiniemi [Fri, 27 Jun 2008 19:08:04 +0000 (13:08 -0600)]
Use Report::generate() virtual function to dispatch reports.

Signed-off-by: Ray Lehtiniemi <rayl@mail.com>
15 years agoLoosen reportDef pointer type to eliminate a static cast.
Ray Lehtiniemi [Sat, 28 Jun 2008 02:55:13 +0000 (20:55 -0600)]
Loosen reportDef pointer type to eliminate a static cast.

Signed-off-by: Ray Lehtiniemi <rayl@mail.com>
15 years agoKill some redundant checks.
Ray Lehtiniemi [Fri, 27 Jun 2008 21:11:31 +0000 (15:11 -0600)]
Kill some redundant checks.

Signed-off-by: Ray Lehtiniemi <rayl@mail.com>
15 years agoUse local vars to reduce code clutter.
Ray Lehtiniemi [Fri, 27 Jun 2008 19:18:27 +0000 (13:18 -0600)]
Use local vars to reduce code clutter.

Signed-off-by: Ray Lehtiniemi <rayl@mail.com>
15 years agoMissed a kotrus variable
Ray Lehtiniemi [Fri, 27 Jun 2008 08:33:58 +0000 (02:33 -0600)]
Missed a kotrus variable

Signed-off-by: Ray Lehtiniemi <rayl@mail.com>
15 years agoFix several crashes with repeated rescheduling.
Ray Lehtiniemi [Fri, 27 Jun 2008 05:51:50 +0000 (23:51 -0600)]
Fix several crashes with repeated rescheduling.

Holding down F9 to repeatedly reschedule the project would trigger
instantaneous crashes.  Add several checks to prevent a variety of
these problems.

Signed-off-by: Ray Lehtiniemi <rayl@mail.com>
15 years agoUse initializer list
Ray Lehtiniemi [Fri, 27 Jun 2008 05:16:38 +0000 (23:16 -0600)]
Use initializer list

Signed-off-by: Ray Lehtiniemi <rayl@mail.com>
15 years agoDead code removal
Ray Lehtiniemi [Fri, 27 Jun 2008 05:15:58 +0000 (23:15 -0600)]
Dead code removal

Signed-off-by: Ray Lehtiniemi <rayl@mail.com>
15 years agoMake example installation work with --prefix.
Ray Lehtiniemi [Mon, 17 Dec 2007 03:39:54 +0000 (20:39 -0700)]
Make example installation work with --prefix.

Signed-off-by: Ray Lehtiniemi <rayl@mail.com>
15 years agoFix ICal bug with missing start times on certain tasks.
Chris Schlaeger [Sun, 18 Jan 2009 16:37:28 +0000 (17:37 +0100)]
Fix ICal bug with missing start times on certain tasks.

This bug was reported by xkahn.
http://www.taskjuggler.org/FUDforum2/index.php?t=msg&th=4000&start=0&rid=65&S=b205e5585c04e9a561daddc83220beb3

15 years agoThe sum in CSV account reports was wrong.
Chris Schlaeger [Sat, 17 Jan 2009 09:32:33 +0000 (10:32 +0100)]
The sum in CSV account reports was wrong.

The report did not default to tree mode.
Removed some empty *.cpp files.

15 years agoGet rid of some empty *.cpp files.
Chris Schlaeger [Mon, 15 Sep 2008 16:53:38 +0000 (18:53 +0200)]
Get rid of some empty *.cpp files.

15 years agoMerge branch 'master' of ssh://office.taskjuggler.org/srv/www/vhosts/www.taskjuggler...
Chris Schlaeger [Mon, 15 Sep 2008 00:46:00 +0000 (02:46 +0200)]
Merge branch 'master' of ssh://office.taskjuggler.org/srv/www/vhosts/taskjuggler.org/htdocs/git-repos/taskjuggler

Conflicts:

docs/en/ChangeLog.xml

15 years agoAdded logical expression function 'isDependencyOf()'.
Chris Schlaeger [Mon, 15 Sep 2008 00:44:52 +0000 (02:44 +0200)]
Added logical expression function 'isDependencyOf()'.

15 years agoadded a new tasjuggler emacs mode
Stefan Kamphausen [Fri, 25 Jul 2008 09:00:10 +0000 (11:00 +0200)]
added a new tasjuggler emacs mode

Signed-off-by: Stefan Kamphausen <skampi@gmx.net>
15 years agoCorrected date-tool shortcut in 'Tip of the day' message.
Georg Hofmann [Wed, 13 Aug 2008 10:57:05 +0000 (12:57 +0200)]
Corrected date-tool shortcut in 'Tip of the day' message.

15 years agoAdded a dash between dates to meet TJ 2.4.1 date interval syntax.
Georg Hofmann [Sun, 27 Jul 2008 17:48:17 +0000 (19:48 +0200)]
Added a dash between dates to meet TJ 2.4.1 date interval syntax.

Signed-off-by: Georg Hofmann <coyote_x@gmx.de>
15 years agoFixed possible values for sloppy in the reference from 0-3 to 0-2.
Georg Hofmann [Sun, 27 Jul 2008 10:57:58 +0000 (12:57 +0200)]
Fixed possible values for sloppy in the reference from 0-3 to 0-2.

Signed-off-by: Georg Hofmann <coyote_x@gmx.de>
15 years agoAdd changes suggested by coyote_x.
Chris Schlaeger [Sat, 23 Aug 2008 07:46:50 +0000 (09:46 +0200)]
Add changes suggested by coyote_x.

15 years agoFix manual error reported by coyote_x.
Chris Schlaeger [Sat, 23 Aug 2008 07:37:25 +0000 (09:37 +0200)]
Fix manual error reported by coyote_x.

15 years agoProperly report summary columns in CVS account reports and use separators for all...
Chris Schlaeger [Sun, 13 Jul 2008 19:42:15 +0000 (21:42 +0200)]
Properly report summary columns in CVS account reports and use separators for all columns.

This bug was reported by lieven: http://www.taskjuggler.org/FUDforum2/index.php?t=msg&th=3946&start=0&rid=65&S=5a4f687af83c142e978a1e65d773dabe

15 years agoFix crash on template dialog with some older Qt versions.
Chris Schlaeger [Sun, 13 Jul 2008 16:54:04 +0000 (18:54 +0200)]
Fix crash on template dialog with some older Qt versions.

Also get rid of some gcc 4.3 compiler warnings.

15 years agoChange error for missing ICal support to warning.
Rene Kuettner [Wed, 11 Jun 2008 08:53:07 +0000 (10:53 +0200)]
Change error for missing ICal support to warning.

This fixes a build error when building without KDE support.

Signed-off-by: Rene Kuettner <rene@bitkanal.net>
16 years agoAdd 'accounts' column to interactive reports as well.
Chris Schlaeger [Thu, 29 May 2008 11:14:39 +0000 (13:14 +0200)]
Add 'accounts' column to interactive reports as well.

16 years agoAdded support for 'accounts' columns in reports.
Chris Schlaeger [Thu, 29 May 2008 07:15:29 +0000 (09:15 +0200)]
Added support for 'accounts' columns in reports.

16 years agoFinally marking 2.4.1 as final.
Chris Schlaeger [Tue, 6 May 2008 12:26:03 +0000 (14:26 +0200)]
Finally marking 2.4.1 as final.

16 years agoMake DTD more standard compliant.
Chris Schlaeger [Tue, 6 May 2008 10:00:54 +0000 (12:00 +0200)]
Make DTD more standard compliant.

16 years agoFix templates to no longer generate missing dash in time interval warnings.
Chris Schlaeger [Mon, 5 May 2008 14:45:26 +0000 (16:45 +0200)]
Fix templates to no longer generate missing dash in time interval warnings.

16 years agoFix for typos in TestSuite/runtests.
René Küttner [Tue, 18 Mar 2008 20:44:46 +0000 (21:44 +0100)]
Fix for typos in TestSuite/runtests.

Signed-off-by: René Küttner <rene@bitkanal.net>
16 years agoThese files must have slipped into the repository by accident. They are not needed.
Chris Schlaeger [Mon, 17 Mar 2008 09:03:21 +0000 (10:03 +0100)]
These files must have slipped into the repository by accident. They are not needed.