Event and Task Manager 131 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Event and Task Manager 131 (Default branch)
# 1  
Old 03-13-2009
Event and Task Manager 131 (Default branch)

Imageetm provides a format for using simple text filesto store event and task information, a commandline interface for viewing tasks and events in avariety of convenient ways, and a curses-based GUIfor creating and modifying events and tasks aswell as viewing them. Alarms are supported forevents, as well as repetition for both events andtasks in a powerful and flexible manner.License: GNU General Public License (GPL)Changes:
This release dynamically adjusts to the number of columns and rows of the terminal. Expanded help with keyboard access to new project, and new task and new event help documents. Enhanced editing is provided for internal responses with cursor key scrolling of the primary display and access to the calendar and all help documents. The prompt to commit changes now provides an option to modify the current entry. There is a new command to check for etm updates. There are various bugfixes.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Is there any visual aid program like Task Manager for Solaris?

In my project we have 3 Solaris 10 servers which need to be monitored for various parameters shown under "prstat -a" command. A shell script runs every 15 mins and captures prstat output by writing it in a log file. I manually download the log file at the end of the day and build graphical charts... (5 Replies)
Discussion started by: gppande
5 Replies
Login or Register to Ask a Question
Padre::Task::PPI(3pm)					User Contributed Perl Documentation				     Padre::Task::PPI(3pm)

NAME
Padre::Task::PPI - Generic PPI background processing task SYNOPSIS
package Padre::Task::MyFancyTest; use strict; use base 'Padre::Task::PPI'; # Will be called after ppi-parsing: sub process { my $self = shift; my $ppi = shift or return; my $result = ...expensive_calculation_using_ppi... $self->{result} = $result; return; } 1; # elsewhere: Padre::Task::MyFancyTest->new( text => 'parse-this!', )->schedule; DESCRIPTION
This is a base class for all tasks that need to do expensive calculations using PPI. The class will setup a PPI::Document object from a given piece of code and then call the "process_ppi" method on the task object and pass the PPI::Document as first argument. You can either let "Padre::Task::PPI" fetch the Perl code for parsing from the current document or specify it as the ""text"" parameter to the constructor. Note: If you don't supply the document text and there is no currently open document to fetch it from, "new()" will simply return the empty list instead of a "Padre::Task::PPI" object. SEE ALSO
This class inherits from "Padre::Task" and its instances can be scheduled using "Padre::TaskManager". The transfer of the objects to and from the worker threads is implemented with Storable. AUTHOR
Steffen Mueller "smueller@cpan.org" COPYRIGHT AND LICENSE
Copyright 2008-2012 The Padre development team as listed in Padre.pm. This program is free software; you can redistribute it and/or modify it under the same terms as Perl 5 itself. perl v5.14.2 2012-06-27 Padre::Task::PPI(3pm)