view release on metacpan or search on metacpan
Data::FormValidator::Constraints => 4.65,
Date::Simple => 3.03,
Encode => 2.39,
FindBin::Real => 1.05,
Hash::FieldHash => 0.10,
HTML::Template => 2.9,
JSON::XS => 2.27,
Log::Dispatch => 2.26,
Log::Dispatch::DBI => 0.02,
Moose => 0.98,
namespace::autoclean => 0.09,
Regexp::Common => 2010010201,
},
);
$builder -> add_build_element('conf');
$builder -> create_build_script();
Revision history for Perl extension Business::AU::Ledger.
0.88 Fri Sep 24 11:28:00 2010
- Switch Config::IniFiles to Config::Tiny in Build.PL and Makefile.PL.
0.87 Wed Sep 22 13:08:00 2010
- Remove form_action from config file. Use $self -> query -> url(-absolute => 1) instead.
0.86 Wed Feb 24 16:44:00 2010
- Add namespace::autoclean to Build.PL and Makefile.PL.
0.85 Sun Feb 21 12:54:19 2010
- Remove text 'All rights reserved' (for Debian licensing).
- Remove POD heads 'Required Modules' and 'Changes'.
- Replace personal doc root with /var/www.
- Use namespace::autoclean with Moose.
0.84 Wed Feb 10 13:52:30 2010
- Add META.yml. Update MANIFEST.SKIP. Add MANIFEST and MYMETA.yml.
- Update versions of modules in Build.PL and Makefile.PL, based on
feedback from CPAN testers.
- Change tmpl_path in .htledger.conf to /var/www/...
- Start using Moose's namespace::autoclean and make_immutable style.
- Move Business::AU::Ledger::Config to Business::AU::Ledger::Util::Config.
- Move Business::AU::Ledger::Create to Business::AU::Ledger::Util::Create.
- Move Business::AU::Ledger::Validate to Business::AU::Ledger::Util::Validate.
- In Validate, rename r to query since we don't use Apache::Request.
- Remove references to DBIx::Connector.
- Update TODO file.
- Switch from Config::IniFiles to Config::Tiny while re-writing Config.
- Reformat source by removing () from method names when called.
0.83 Sun Nov 08 15:33:00 2009
Changelog.ini view on Meta::CPAN
[V 0.88]
Date=2010-09-24T11:28:00
Comments=- Switch Config::IniFiles to Config::Tiny in Build.PL and Makefile.PL.
[V 0.87]
Date=2010-09-22T13:08:00
Comments=- Remove form_action from config file. Use $self -> query -> url(-absolute => 1) instead.
[V 0.86]
Date=2010-02-24T16:44:00
Comments=- Add namespace::autoclean to Build.PL and Makefile.PL.
[V 0.85]
Date=2010-02-21T12:54:19
Comments= <<EOT
- Remove text 'All rights reserved' (for Debian licensing).
- Remove POD heads 'Required Modules' and 'Changes'.
- Replace personal doc root with /var/www.
- Use namespace::autoclean with Moose.
EOT
[V 0.84]
Date=2010-02-10T13:52:30
Comments= <<EOT
- Add META.yml. Update MANIFEST.SKIP. Add MANIFEST and MYMETA.yml.
- Update versions of modules in Build.PL and Makefile.PL based on
feedback from CPAN testers.
- Change tmpl_path in .htledger.conf to /var/www/...
- Start using Moose's namespace::autoclean and make_immutable style.
- Move Business::AU::Ledger::Config to Business::AU::Ledger::Util::Config.
- Move Business::AU::Ledger::Create to Business::AU::Ledger::Util::Create.
- Move Business::AU::Ledger::Validate to Business::AU::Ledger::Util::Validate.
- In Validate rename r to query since we don't use Apache::Request.
- Remove references to DBIx::Connector.
- Update TODO file.
- Switch from Config::IniFiles to Config::Tiny while re-writing Config.
- Reformat source by removing () from method names when called.
EOT
Date::Simple: 3.03
Encode: 2.39
FindBin::Real: 1.05
HTML::Template: 2.9
Hash::FieldHash: 0.1
JSON::XS: 2.27
Log::Dispatch: 2.26
Log::Dispatch::DBI: 0.02
Moose: 0.98
Regexp::Common: 2010010201
namespace::autoclean: 0.09
resources:
license: http://www.perlfoundation.org/artistic_license_1_0
version: 0.88
Makefile.PL view on Meta::CPAN
Data::FormValidator::Constraints => 4.65,
Date::Simple => 3.03,
Encode => 2.39,
FindBin::Real => 1.05,
Hash::FieldHash => 0.10,
HTML::Template => 2.9,
JSON::XS => 2.27,
Log::Dispatch => 2.26,
Log::Dispatch::DBI => 0.02,
Moose => 0.98,
namespace::autoclean => 0.09,
Regexp::Common => 2010010201,
Test::More => 0.94,
Test::Pod => 1.41,
},
VERSION_FROM => 'lib/Business/AU/Ledger.pm',
);
lib/Business/AU/Ledger/Database.pm view on Meta::CPAN
use Log::Dispatch::DBI;
use Moose;
has last_insert_id => (is => 'rw', isa => 'Int');
has logger => (is => 'rw', isa => 'Log::Dispatch');
has payment => (is => 'rw', isa => 'Business::AU::Ledger::Database::Payment');
has receipt => (is => 'rw', isa => 'Business::AU::Ledger::Database::Receipt');
has simple => (is => 'rw', isa => 'DBIx::Simple');
use namespace::autoclean;
our $VERSION = '0.88';
# -----------------------------------------------
sub BUILD
{
my($self) = @_;
$self -> logger(Log::Dispatch -> new);
lib/Business/AU/Ledger/Database/Base.pm view on Meta::CPAN
package Business::AU::Ledger::Database::Base;
use Moose;
has db => (is => 'rw', isa => 'Business::AU::Ledger::Database');
has simple => (is => 'rw', isa => 'DBIx::Simple');
use namespace::autoclean;
our $VERSION = '0.88';
# -----------------------------------------------
sub log
{
my($self, $s) = @_;
$self -> db -> log($s);
lib/Business/AU/Ledger/Database/Payment.pm view on Meta::CPAN
package Business::AU::Ledger::Database::Payment;
use Moose;
extends 'Business::AU::Ledger::Database::Base';
use namespace::autoclean;
our $VERSION = '0.88';
# -----------------------------------------------
sub add
{
my($self, $payment) = @_;
eval
lib/Business/AU/Ledger/Database/Receipt.pm view on Meta::CPAN
package Business::AU::Ledger::Database::Receipt;
use Moose;
extends 'Business::AU::Ledger::Database::Base';
use namespace::autoclean;
our $VERSION = '0.88';
# -----------------------------------------------
sub add
{
my($self, $receipt) = @_;
eval
lib/Business/AU/Ledger/Util/Config.pm view on Meta::CPAN
use Carp;
use Config::Tiny;
use Moose;
has config => (is => 'rw', isa => 'Any', required => 0);
has config_file_path => (is => 'rw', isa => 'Str', required => 0);
has section => (is => 'rw', isa => 'Str', required => 0);
use namespace::autoclean;
our $VERSION = '0.88';
# -----------------------------------------------
sub BUILD
{
my($self) = @_;
my($name) = '.htledger.conf';
lib/Business/AU/Ledger/Util/Create.pm view on Meta::CPAN
has config => (is => 'rw', isa => 'HashRef');
has creator => (is => 'rw', isa => 'DBIx::Admin::CreateTable');
has edit_types => (is => 'rw', isa => 'HashRef');
has last_insert_id => (is => 'rw', isa => 'Int');
has logger => (is => 'rw', isa => 'Log::Dispatch');
has simple => (is => 'rw', isa => 'DBIx::Simple');
has table_names => (is => 'rw', isa => 'HashRef');
has time_option => (is => 'rw', isa => 'Str');
has verbose => (is => 'rw', isa => 'Int');
use namespace::autoclean;
our $VERSION = '0.88';
# -----------------------------------------------
sub BUILD
{
my($self) = @_;
$self -> config(Business::AU::Ledger::Util::Config -> new -> config);
lib/Business/AU/Ledger/Util/Validate.pm view on Meta::CPAN
use Data::FormValidator;
use Data::FormValidator::Constraints qw/:closures/;
use Moose;
use Regexp::Common qw/number/;
has db => (is => 'rw', isa => 'Business::AU::Ledger::Database');
has query => (is => 'rw', isa => 'CGI');
use namespace::autoclean;
our $myself;
our $VERSION = '0.88';
# -----------------------------------------------
sub BUILD
{
my($self) = @_;
$myself = $self;
lib/Business/AU/Ledger/View.pm view on Meta::CPAN
use Moose;
extends 'Business::AU::Ledger::View::Base';
has context => (is => 'rw', isa => 'Business::AU::Ledger::View::Context');
has payment => (is => 'rw', isa => 'Business::AU::Ledger::View::Payment');
has receipt => (is => 'rw', isa => 'Business::AU::Ledger::View::Receipt');
has reconciliation => (is => 'rw', isa => 'Business::AU::Ledger::View::Reconciliation');
has web_page => (is => 'rw', isa => 'HTML::Template');
use namespace::autoclean;
our $VERSION = '0.88';
# -----------------------------------------------
sub BUILD
{
my($self) = @_;
$self -> context(Business::AU::Ledger::View::Context -> new
lib/Business/AU/Ledger/View/Base.pm view on Meta::CPAN
use HTML::Template;
use Moose;
has config => (is => 'rw', isa => 'HashRef');
has db => (is => 'rw', isa => 'Business::AU::Ledger::Database');
has form_action => (is => 'rw', isa => 'Str');
has query => (is => 'rw', isa => 'CGI');
has session => (is => 'rw', isa => 'CGI::Session');
use namespace::autoclean;
our $VERSION = '0.88';
# -----------------------------------------------
sub build_select
{
my($self, $tx_type, $table, $suffix, $default) = @_;
$suffix .= '';
my($key) = "${tx_type}_${table}";
lib/Business/AU/Ledger/View/Context.pm view on Meta::CPAN
package Business::AU::Ledger::View::Context;
use Business::AU::Ledger::Util::Validate;
use JSON::XS;
use Moose;
extends 'Business::AU::Ledger::View::Base';
use namespace::autoclean;
our $VERSION = '0.88';
# -----------------------------------------------
sub format
{
my($self, $input) = @_;
$self -> log(__PACKAGE__ . '. Leaving format');
lib/Business/AU/Ledger/View/Payment.pm view on Meta::CPAN
use JSON::XS;
use Moose;
extends 'Business::AU::Ledger::View::Base';
has field_width => (is => 'rw', isa => 'HashRef');
has row_count => (is => 'rw', isa => 'Int');
use namespace::autoclean;
our $VERSION = '0.88';
# -----------------------------------------------
sub BUILD
{
my($self) = @_;
$self -> field_width
lib/Business/AU/Ledger/View/Receipt.pm view on Meta::CPAN
use JSON::XS;
use Moose;
extends 'Business::AU::Ledger::View::Base';
has field_width => (is => 'rw', isa => 'HashRef');
has row_count => (is => 'rw', isa => 'Int');
use namespace::autoclean;
our $VERSION = '0.88';
# -----------------------------------------------
sub BUILD
{
my($self) = @_;
$self -> field_width
lib/Business/AU/Ledger/View/Reconciliation.pm view on Meta::CPAN
package Business::AU::Ledger::View::Reconciliation;
use JSON::XS;
use Moose;
extends 'Business::AU::Ledger::View::Base';
use namespace::autoclean;
our $VERSION = '0.88';
# -----------------------------------------------
sub initialize
{
my($self) = @_;
my($month) = $self -> db -> get_months;
my($start_month) = $self -> session -> param('start_month');
view all matches for this distributionview release on metacpan - search on metacpan