Task Coach 0.69.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Task Coach 0.69.1 (Default branch)
# 1  
Old 02-15-2008
Task Coach 0.69.1 (Default branch)

Image Task Coach is a simple todo manager to manage personal tasks and todo lists. It grew out of a frustration that well-known task managers, such as those provided with Outlook or Lotus Notes, do not provide facilities for composite tasks. Often, tasks and other things to do consist of several activities. Task Coach is designed to deal with composite tasks. License: GNU General Public License (GPL) Changes:
This release solves one major and two minor bugs. The major bug may cause data loss, so upgrading from 0.69.0 is recommended.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Task(3PERL)						      Perl Library Functions						       Task(3PERL)

NAME
Task - Perl interface to Tasks SYNOPSIS
use Sun::Solaris::Task qw(:ALL); my $taskid = gettaskid(); DESCRIPTION
This module provides wrappers for the gettaskid(2) and settaskid(2) system calls. Constants TASK_NORMAL, TASK_FINAL. Functions settaskid($project, $flags) The $project parameter must be a valid project ID and the $flags parameter must be TASK_NORMAL or TASK_FINAL. The parameters are passed through directly to the underlying settaskid() system call. The new task ID is returned if the call succeeds. On failure -1 is returned. gettaskid() This function returns the numeric task ID of the calling process, or undef if the underlying gettaskid() system call is unsuccessful. Class methods None. Object methods None. Exports By default nothing is exported from this module. The following tags can be used to selectively import constants and functions defined in this module: :SYSCALLS settaskid() and gettaskid() :CONSTANTS TASK_NORMAL and TASK_FINAL :ALL :SYSCALLS and :CONSTANTS ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWpl5u | +-----------------------------+-----------------------------+ |Interface Stability |Evolving | +-----------------------------+-----------------------------+ SEE ALSO
gettaskid(2), settaskid(2), attributes(5) SunOS 5.10 1 Dec 2002 Task(3PERL)