[WTF CVS] wtf/lib/WTF/Pages Admin.pm, 1.8, 1.9 Input.pm, 1.13, 1.14 Reports.pm, 1.13, 1.14
Brought to you by:
gryphonshafer
From: Gryphon S. <gry...@us...> - 2007-01-02 23:39:19
|
Update of /cvsroot/wtf-tracker/wtf/lib/WTF/Pages In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv28721/lib/WTF/Pages Modified Files: Admin.pm Input.pm Reports.pm Log Message: Minor changes (typically POD and version numbering) to bring code up to ready for a release Index: Reports.pm =================================================================== RCS file: /cvsroot/wtf-tracker/wtf/lib/WTF/Pages/Reports.pm,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** Reports.pm 2 Jan 2007 23:13:28 -0000 1.13 --- Reports.pm 2 Jan 2007 23:39:16 -0000 1.14 *************** *** 1,4 **** package WTF::Pages::Reports; ! our $VERSION = 1.02; use strict; use warnings; --- 1,4 ---- package WTF::Pages::Reports; ! our $VERSION = 1.03; use strict; use warnings; *************** *** 617,621 **** =head1 VERSION ! This document describes WTF::Pages::Reports version 1.02 =head1 SYNOPSIS --- 617,621 ---- =head1 VERSION ! This document describes WTF::Pages::Reports version 1.03 =head1 SYNOPSIS *************** *** 710,713 **** --- 710,720 ---- break-out of time by employee and task. + =head2 screen_ooo_calendar() + + This is a page generation method that generates the "OOO Calendar" page + using the "reports/ooo_calendar.tmpl" HTML::Template template. + This page displays the vacation and sick days recorded (or in the case + of vacation days only, scheduled) by employees across the company. + =head1 DEPENDENCIES Index: Admin.pm =================================================================== RCS file: /cvsroot/wtf-tracker/wtf/lib/WTF/Pages/Admin.pm,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Admin.pm 21 Dec 2006 19:33:54 -0000 1.8 --- Admin.pm 2 Jan 2007 23:39:16 -0000 1.9 *************** *** 1,4 **** package WTF::Pages::Admin; ! our $VERSION = 1.02; use strict; use warnings; --- 1,4 ---- package WTF::Pages::Admin; ! our $VERSION = 1.03; use strict; use warnings; *************** *** 499,503 **** =head1 VERSION ! This document describes WTF::Pages::Admin version 1.02 =head1 SYNOPSIS --- 499,503 ---- =head1 VERSION ! This document describes WTF::Pages::Admin version 1.03 =head1 SYNOPSIS Index: Input.pm =================================================================== RCS file: /cvsroot/wtf-tracker/wtf/lib/WTF/Pages/Input.pm,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** Input.pm 2 Jan 2007 23:13:28 -0000 1.13 --- Input.pm 2 Jan 2007 23:39:16 -0000 1.14 *************** *** 1,4 **** package WTF::Pages::Input; ! our $VERSION = 1.02; use strict; use warnings; --- 1,4 ---- package WTF::Pages::Input; ! our $VERSION = 1.03; use strict; use warnings; *************** *** 422,426 **** =head1 VERSION ! This document describes WTF::Pages::Input version 1.02 =head1 SYNOPSIS --- 422,426 ---- =head1 VERSION ! This document describes WTF::Pages::Input version 1.03 =head1 SYNOPSIS *************** *** 483,486 **** --- 483,501 ---- users from the "Daily Timesheet" page under "screen_tracking()". + =head2 screen_myvacation() + + This is a page generation method that generates the + "My Vacation and Sick Days" page using the "input/myvacation.tmpl" + HTML::Template template. + This page allows users to view their past vacation and sick days and + their future (scheduled) vacation days. User can also add to and remove + entries from the future (scheduled) list of vacation days. + + =head2 action_save_new_vacation() + + This action method saves changes to future (scheduled) vacation days + for the current user based on form data (or an entry click) from the + page generated by "screen_myvacation()". + =head1 DEPENDENCIES |