New module Date::FromToday

2013-01-23 Thread Perl Authors Upload Server
The next version of the Module List will list the following module: modid: Date::FromToday DSLIP: bdpOg description: Calculate date X number of days from today userid: AWOHLD (Adam Wohld) chapterid: 6 (Data_Type_Utilities) enteredby: BDFOY (brian d foy) enteredo

Re: Proposed Module: Date::FromToday

2011-03-30 Thread Matt S Trout
On Sun, Mar 27, 2011 at 12:52:36AM -0500, Adam wrote: > I'm proposing a module named "Date::FromToday". > > It is used to calculate the date in the future/past from the localtime > the object was created. I use it for calculating file names based off > of timespan from today. Does this namespace

Re: Proposed Module: Date::FromToday

2011-03-28 Thread brian d foy
[[ This message was both posted and mailed: see the "To," "Cc," and "Newsgroups" headers for details. ]] In article , Adam wrote: > I'm proposing a module named "Date::FromToday". > > It is used to calculate the date in the future/past from the localtime > the object was created. I use it f

Proposed Module: Date::FromToday

2011-03-27 Thread Adam
I'm proposing a module named "Date::FromToday". It is used to calculate the date in the future/past from the localtime the object was created. I use it for calculating file names based off of timespan from today. Does this namespace look valid? Simple usage with defaults my $date = Date::FromT

Module Date::FromToday

2011-03-24 Thread Adam
I made a module I'd like to publish. It calculates the day from today. Would 'Date::FromToday' be good? use Date::FromToday; my $date = Date::FromToday->new(move => -1); # $date_string = '03_22_2011' my $date_string = $date->date_string; # $month = '03', $day = '02', $year = '2011' my $month =