| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
#! perl |
|
2
|
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
package EekBoek; |
|
4
|
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
# NOTE: This is a documentation-only module. |
|
6
|
|
|
|
|
|
|
|
|
7
|
6
|
|
|
6
|
|
42
|
use strict; |
|
|
6
|
|
|
|
|
12
|
|
|
|
6
|
|
|
|
|
213
|
|
|
8
|
6
|
|
|
6
|
|
31
|
use utf8; |
|
|
6
|
|
|
|
|
36
|
|
|
|
6
|
|
|
|
|
37
|
|
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
# Minimal version to prevent many Unicode bugs. |
|
11
|
6
|
|
|
6
|
|
237
|
use 5.008003; |
|
|
6
|
|
|
|
|
22
|
|
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
require EB::Version; |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
our $PACKAGE = 'EekBoek'; |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
our $VERSION = $EB::Version::VERSION; |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 NAME |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
EekBoek - Bookkeeping software for small and medium-size businesses |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
EekBoek is a bookkeeping package for small and medium-size businesses. |
|
26
|
|
|
|
|
|
|
Unlike other accounting software, EekBoek has both a command-line |
|
27
|
|
|
|
|
|
|
interface (CLI) and a graphical user-interface (GUI). Furthermore, it |
|
28
|
|
|
|
|
|
|
has a complete Perl API to create your own custom applications. |
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
EekBoek is designed for the Dutch/European market and currently |
|
31
|
|
|
|
|
|
|
available in Dutch only. An English translation is in the works (help |
|
32
|
|
|
|
|
|
|
appreciated). |
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
For a description how to use the program, see L. |
|
37
|
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 BUGS AND PROBLEMS |
|
39
|
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
Please use the eekboek-users mailing list at SourceForge. |
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 AUTHOR AND CREDITS |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
Johan Vromans (jvromans@squirrel.nl) wrote this module. |
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
Web site: L. |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head1 COPYRIGHT AND DISCLAIMER |
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
This program is Copyright 2005-2011 by Squirrel Consultancy. All |
|
51
|
|
|
|
|
|
|
rights reserved. |
|
52
|
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify |
|
54
|
|
|
|
|
|
|
it under the terms of either: a) the GNU General Public License as |
|
55
|
|
|
|
|
|
|
published by the Free Software Foundation; either version 1, or (at |
|
56
|
|
|
|
|
|
|
your option) any later version, or b) the "Artistic License" which |
|
57
|
|
|
|
|
|
|
comes with Perl. |
|
58
|
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, but |
|
60
|
|
|
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of |
|
61
|
|
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See either the |
|
62
|
|
|
|
|
|
|
GNU General Public License or the Artistic License for more details. |
|
63
|
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=cut |
|
65
|
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
1; |