Main > Free Download Search >

Free date entry software for linux

date entry

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1759
Date Calculator 0.1

Date Calculator 0.1


Date Calculator is a date calculator application written in pyqt. more>>
Date Calculator is a date calculator application written in pyqt. You can add or subtract days to a date, or calculate the number of days between two dates.

You can also choose to run your calculations using only working days and/or calculate inclusive of the start/end dates. There is a comprehensive gui for setting holiday dates.

Holidays can be fixed annual dates, variable dates, such as "the 1st Monday in June" or "the closest Monday to 22 February". This utility could be useful for people who need to be able to calculate time critical deadlines, such as lawyers.

Date Calculator application is also available as a superkaramba theme. You can download both from the download link.

<<less
Download (0.19MB)
Added: 2006-04-03 License: GPL (GNU General Public License) Price:
1307 downloads
HTML::Widgets::DateEntry 1.5

HTML::Widgets::DateEntry 1.5


HTML::Widgets::DateEntry is a Perl module that creates date entry widgets for HTML forms. more>>
HTML::Widgets::DateEntry is a Perl module that creates date entry widgets for HTML forms.

SYNOPSIS

use HTML::Widgets::DateEntry;

$de = new HTML::Widgets::DateEntry(
year => [date_year, $date_year],
month => [date_month, $date_month],
day => [date_day, $date_day],
separator => /,
pre_year => 1,
post_year => 1,
-iso => 1,
);

print $de->render_widget;

HTML::Widgets::DateEntry is a simple module to generate HTML date entry widgets.

<<less
Download (0.004MB)
Added: 2007-02-22 License: Perl Artistic License Price:
977 downloads
Dates 0.4.1

Dates 0.4.1


Dates project is a small, light-weight calendar that shares data with GNOME Evolution. more>>
Dates project is a small, light-weight calendar that shares data with GNOME Evolution.

Dates is a small, light-weight calendar that shares data with GNOME Evolution. Dates features an innovative, unified, zooming view and is designed for use on hand-held devices, such as the Nokia 770 or the Sharp Zaurus series of PDAs.

<<less
Download (0.43MB)
Added: 2007-04-14 License: GPL (GNU General Public License) Price:
924 downloads
exifDate 0.4

exifDate 0.4


exifDate is a service menu that lets you change modification date of jpeg images with the date from exif informations. more>>
exifDate is a service menu that lets you change modification date of jpeg images with the date from exif informations.

So your images will be dated with the shoot date and not the rotated/resized... date.

<<less
Download (0.006MB)
Added: 2006-09-24 License: GPL (GNU General Public License) Price:
1128 downloads
Fast Date Picker 0.02

Fast Date Picker 0.02


Fast Date Picker is a calendar that is easy to integrate into Web pages that require the users to select a date. more>>
Fast Date Picker project is a calendar which is easy to integrate into pages that require the users to select a date like on travel sites.
Written in ECMAScript, it responds faster to the users clicks than most of the server-side-based or Java-applet-based date pickers often found on travel sites today.
The calendar can be added to your page any way you want (e.g. as a pop-up window or an expandable
), and you can integrate it with any type of form fields for selecting dates.
In order to perform the integration, you do, however, need experience with ECMAScript - so if new Date() means nothing to you, Fast Date Picker probably isnt what youre looking for.
Main features:
- Allows you to set whether Sunday or Monday is the first day of the week.
- Can highligt certain days of the week (of your choice), e.g. Saturday and Sunday.
- Can highlight the current date.
- Can make dates up until a certain point (e.g. today) non-selectable so that users cannot select a date in the past.
- Easy to translate.
- Easy to change to fit the design of your website: Just edit the included style sheet.
- Made in a way that minimizes the risk of variable name clashes in ECMAScript and selector clashes in CSS.
- Uses standard ECMAScript, DOM, and CSS.
Enhancements:
- The problem with incorrect dates in calendars set to start weeks with Monday was fixed.
<<less
Download (0.004MB)
Added: 2006-01-10 License: GPL (GNU General Public License) Price:
1390 downloads
DateTime::Event::Cron 0.07

DateTime::Event::Cron 0.07


DateTime::Event::Cron is a DateTime extension for generating recurrence sets from crontab lines and files. more>>
DateTime::Event::Cron is a DateTime extension for generating recurrence sets from crontab lines and files.

SYNOPSIS

use DateTime::Event::Cron;

# DateTime::Set construction from crontab line
$crontab = */3 15 1-10 3,4,5 */2;
$set = DateTime::Event::Cron->from_cron($crontab);
$iter = $set->iterator(after => DateTime->now);
while (1) {
my $next = $iter->next;
my $now = DateTime->now;
sleep(($next->subtract_datetime_absolute($now))->seconds);
# do stuff...
}

# List of DateTime::Set objects from crontab file
@sets = DateTime::Event::Cron->from_crontab(file => /etc/crontab);
$now = DateTime->now;
print "Now: ", $now->datetime, "n";
foreach (@sets) {
my $next = $_->next($now);
print $next->datetime, "n";
}

# DateTime::Set parameters
$crontab = * * * * *;

$now = DateTime->now;
%set_parms = ( after => $now );
$set = DateTime::Event::Cron->from_cron(cron => $crontab, %set_parms);
$dt = $set->next;
print "Now: ", $now->datetime, " and next: ", $dt->datetime, "n";

# Spans for DateTime::Set
$crontab = * * * * *;
$now = DateTime->now;
$now2 = $now->clone;
$span = DateTime::Span->from_datetimes(
start => $now->add(minutes => 1),
end => $now2->add(hours => 1),
);
%parms = (cron => $crontab, span => $span);
$set = DateTime::Event::Cron->from_cron(%parms);
# ...do things with the DateTime::Set

# Every RTFCT relative to 12am Jan 1st this year
$crontab = 7-10 6,12-15 10-28/2 */3 3,4,5;
$date = DateTime->now->truncate(to => year);
$set = DateTime::Event::Cron->from_cron(cron => $crontab, after => $date);

# Rather than generating DateTime::Set objects, next/prev
# calculations can be made directly:

# Every day at 10am, 2pm, and 6pm. Reference date
# defaults to DateTime->now.
$crontab = 10,14,18 * * * *;
$dtc = DateTime::Event::Cron->new_from_cron(cron => $crontab);
$next_datetime = $dtc->next;
$last_datetime = $dtc->previous;
...

# List of DateTime::Event::Cron objects from
# crontab file
@dtc = DateTime::Event::Cron->new_from_crontab(file => /etc/crontab);

# Full cron lines with user, such as from /etc/crontab
# or files in /etc/cron.d, are supported and auto-detected:
$crontab = * * * * * gump /bin/date;
$dtc = DateTime::Event::Cron->new(cron => $crontab);

# Auto-detection of users is disabled if you explicitly
# enable/disable via the user_mode parameter:
$dtc = DateTime::Event::Cron->new(cron => $crontab, user_mode => 1);
my $user = $dtc->user;
my $command = $dtc->command;

# Unparsed original cron entry
my $original = $dtc->original;

<<less
Download (0.010MB)
Added: 2007-05-16 License: Perl Artistic License Price:
891 downloads
DateChooser 1.2.5

DateChooser 1.2.5


DateChooser is a Java class that allows a programmer to present the user with an input dialog for easily choosing a date. more>>
DateChooser is a Java class that allows a programmer to present the user with an input dialog for easily choosing a date and feeding it to the program.

<<less
Download (0.026MB)
Added: 2007-03-23 License: GPL (GNU General Public License) Price:
946 downloads
Date Picker/Calendar 1.0.82

Date Picker/Calendar 1.0.82


Date Picker/Calendar offers you a free and very useful Firefox extention which adds quick popup allowing you to view a calendar or pick a date. more>> <<less
Added: 2008-08-15 License: MPL Price: FREE
1 downloads
Tk::Date 0.42

Tk::Date 0.42


Tk::Date is a date/time widget for perl/Tk. more>>
Tk::Date is a date/time widget for perl/Tk.

SYNOPSIS

use Tk::Date;
$date_widget = $top->Date->pack;
$date_widget->get("%x %X");

Tk::Date implements a date/time widget. There are three ways to input a date:
Using the keyboard to input the digits and the tab key or the mouse pointer to move focus between fields.

Using up and down cursor keys to increment/decrement the date (only with installed Tk::NumEntryPlain widget).

Selecting up and down arrow buttons will increment or decrement the value of the active field (only with installed Tk::FireButton widget).

The Date/Time Format

Unlike Java, Perl does not have a date/time object. However, it is possible to use the unix time (seconds since epoch, that is 1st January 1970) as a replacement. This is limited, since on most architectures, the valid range is between 14th December 1901 and 19th January 2038. For other dates, it is possible to use a hash notation:

{ y => year,
m => month,
d => day,
H => hour,
M => minute,
S => second }

The abbreviations are derivated from the format letters of strftime. Note that year is the full year (1998 instead of 98) and month is the real month number, as opposed to the output of localtime(), where the month is subtracted by one.

In this document, the first method will be referred as unixtime and the second method as datehash.

STANDARD OPTIONS

Tk::Date descends from Frame and inherits all of its options.

-orient

Specified orientation of the increment and decrements buttons. May be vertical (default) or horizontal.

<<less
Download (0.018MB)
Added: 2006-06-12 License: Perl Artistic License Price:
1230 downloads
Data::ICal::Entry::Todo 0.11

Data::ICal::Entry::Todo 0.11


Data::ICal::Entry::Todo is a Perl module that represents a to-do entry in an iCalendar file. more>>
Data::ICal::Entry::Todo is a Perl module that represents a to-do entry in an iCalendar file.

SYNOPSIS

my $vtodo = Data::ICal::Entry::Todo->new();
$vtodo->add_properties(
summary => "go to sleep",
status => INCOMPLETE,
# Dat*e*::ICal is not a typo here
dtstart => Date::ICal->new( epoch => time )->ical,
);

$calendar->add_entry($vtodo);

$vtodo->add_entry($alarm);

A Data::ICal::Entry::Todo object represents a single to-do entry in an iCalendar file. (Note that the iCalendar RFC refers to entries as "components".) It is a subclass of Data::ICal::Entry and accepts all of its methods.

<<less
Download (0.10MB)
Added: 2007-01-13 License: Perl Artistic License Price:
1014 downloads
Data::ICal::Entry::Event 0.12

Data::ICal::Entry::Event 0.12


Data::ICal::Entry::Event is a Perl module that represents an event in an iCalendar file. more>>
Data::ICal::Entry::Event is a Perl module that represents an event in an iCalendar file.

SYNOPSIS

my $vevent = Data::ICal::Entry::Event->new();
$vevent->add_properties(
summary => "my party",
description => "Ill cry if I want to",
# Dat*e*::ICal is not a typo here
dtstart => Date::ICal->new( epoch => time )->ical,
);

$calendar->add_entry($vevent);

$vevent->add_entry($alarm);

A Data::ICal::Entry::Event object represents a single event in an iCalendar file. (Note that the iCalendar RFC refers to entries as "components".) It is a subclass of Data::ICal::Entry and accepts all of its methods.

<<less
Download (0.10MB)
Added: 2007-01-17 License: Perl Artistic License Price:
1011 downloads
Date::ICal 1.72

Date::ICal 1.72


Date::ICal is a Perl extension for ICalendar date objects. more>>
Date::ICal is a Perl extension for ICalendar date objects.

SYNOPSIS

use Date::ICal;

$ical = Date::ICal->new( ical => 19971024T120000 );
$ical = Date::ICal->new( epoch => time );
$ical = Date::ICal->new( year => 1964,
month => 10, day => 16, hour => 16,
min => 12, sec => 47 );

$hour = $ical->hour;
$year = $ical->year;

$ical_string = $ical->ical;
$epoch_time = $ical->epoch;

$ical2 = $ical + $duration;
(Where $duration is either a duration string, like P2W3DT7H9M, or a Date::ICal::Duration (qv) object.
$ical += P6DT12H;

$duration = $ical1 - $ical2;
$ical3 = $ical1 - $duration;

<<less
Download (0.043MB)
Added: 2007-08-16 License: Perl Artistic License Price:
803 downloads
Date::Pcalc 1.2

Date::Pcalc 1.2


Date-Pcalc is a Perl module and is a direct translation of Steffen Beyers excellent Date::Calc module. more>>
Date-Pcalc is a Perl module and is a direct translation of Steffen Beyers excellent Date::Calc module to use Perl only instead of a combination of Perl and C.

This package consists of a Perl module for all kinds of date calculations based on the Gregorian calendar (the one used in all western countries today), thereby complying with all relevant norms and standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (where applicable).

<<less
Download (0.060MB)
Added: 2006-03-29 License: GPL (GNU General Public License) Price:
1310 downloads
Data::ICal::Entry::Journal 0.12

Data::ICal::Entry::Journal 0.12


Data::ICal::Entry::Journal is a Perl module that represents a journal entry in an iCalendar file. more>>
Data::ICal::Entry::Journal is a Perl module that represents a journal entry in an iCalendar file.

SYNOPSIS

my $vjournal = Data::ICal::Entry::Journal->new();
$vjournal->add_properties(
summary => "Minutes of my party",
description => "I cried because I wanted to.",
# Dat*e*::ICal is not a typo here
dtstart => Date::ICal->new( epoch => time )->ical,
);

$calendar->add_entry($vjournal);

A Data::ICal::Entry::Journal object represents a single journal entry in an iCalendar file. (Note that the iCalendar RFC refers to entries as "components".) It is a subclass of Data::ICal::Entry and accepts all of its methods.

<<less
Download (0.10MB)
Added: 2007-01-17 License: Perl Artistic License Price:
1012 downloads
Date::Roman 1.06

Date::Roman 1.06


Date::Roman is a Perl OO extension for handling roman style dates. more>>
Date::Roman is a Perl OO extension for handling roman style dates.

SYNOPSIS

use Date::Roman;

$caesar_death = Date::Roman->new(roman => id 3 702);

print $caesar_death->ical(),"n"; #prints -520315

This module defines a class for handling Roman dates as defined by Julius Caesar in 45 BC.

<<less
Download (0.038MB)
Added: 2007-03-02 License: Perl Artistic License Price:
966 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5