NAME
timeclock.pl - a timeclock reporting utility
USAGE
timeclock.pl [options] [file]
Some examples:
# Console output
$ timeclock.pl timelog.bak
# HTML output
$ timeclock.pl --html > report.html
# CSV output
$ timeclock.pl --csv > report.csv
OPTIONS
Accepts excactly one of the folowing options:
- --help
-
Print short usages information and exits.
- --man
-
Displays the manual and exists.
- --version
-
Displays the version number and copyright information and exists.
- --html
-
Switches to HTML formatted output.
- --csv
-
Switches to CSV formatted output.
DESCRIPTION
This is a simple reporting utility for timeclock, which is a time tracking package for GNU Emacs.
You will use timeclock from GNU Emacs to check in and check out of projects during your workday.
Then at the end of the week you can run timeclock.pl to get a daily report of your work time.
CONFIGURATION
If you haven't changed your Emacs/TimeClock setup, no configuration is needed. The script will read your timelog file from the default location which is ~/.timelog
If you have changed the location of the timelog file (I've placed mine in a Dropbox folder), you can create the file ~/.timeclockrc and define the location of the timelog file there. Example:
$timelog = "$ENV{HOME}/Dropbox/timelog";
Emacs Integration
You could add the following to you .emacs file to integrate timeclock.pl into Emacs:
(defun timeclock-show-daily-report()
"Creates and displays a daily report of timeclock entries."
(interactive)
(let ((process-connection-type nil) ; Use a pipe.
(buffer-name "*timeclock daily report*")
(script-name "timeclock.pl"))
(when (get-buffer buffer-name)
(progn
(set-buffer buffer-name)
(set-buffer-modified-p nil)
(erase-buffer)))
(set-buffer (get-buffer-create buffer-name))
(start-process command-name buffer-name "perl" "-S" script-name)
(switch-to-buffer buffer-name)))
And the use M-x timeclock-show-daily-report RET
to display the report.
DEPENDENCIES
AUTHOR
Søren Lund, <soren at lund.org>
SEE ALSO
App::TimeClock::ConsolePrinter, App::TimeClock::HtmlPrinter, App::TimeClock::CsvPrinter, App::TimeClock::PrinterInterface
http://www.gnu.org/software/emacs/, http://www.emacswiki.org/emacs/TimeClock
BUGS
Please report any bugs or feature requests to bug-app-timeclock at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=App-TimeClock. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
COPYRIGHT
Copyright (C) 2012 Søren Lund
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 dated June, 1991 or at your option any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
A copy of the GNU General Public License is available in the source tree; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.