From c24b6d1d47bf5d0bb2771067ba03955a5877201f Mon Sep 17 00:00:00 2001 From: tetragon Date: Sun, 16 Sep 2007 04:49:45 +0000 Subject: Deal with VMethods causing problems with form.sort Add wrapper for a simpler UI constructor git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1617 4979c152-3d1c-0410-bac9-87ea11338e46 --- LedgerSMB/Template.pm | 11 ++++++++++- UI/ca-list-selector.html | 3 +-- bin/ca.pl | 9 +++------ 3 files changed, 14 insertions(+), 9 deletions(-) diff --git a/LedgerSMB/Template.pm b/LedgerSMB/Template.pm index c982a94d..1f578583 100755 --- a/LedgerSMB/Template.pm +++ b/LedgerSMB/Template.pm @@ -74,6 +74,11 @@ The base name of the file for output. =back +=item new_UI(user => \%myconfig, locale => $locale, template => $file, ...) + +Wrapper around the constructor that sets the path to 'UI', format to 'HTML', +and leaves auto-output enabled. + =item render($hashref) This command renders the template. If no_auto_output was not specified during @@ -144,10 +149,14 @@ sub new { } } - return $self; } +sub new_UI { + my $class = shift; + return $class->new(@_, no_auto_ouput => 0, format => 'HTML', path => 'UI'); +} + sub _valid_language { my $self = shift; if ($self->{language} =~ m#(/|\\|:|\.\.|^\.)#){ diff --git a/UI/ca-list-selector.html b/UI/ca-list-selector.html index 0931dcdc..4f4798ad 100644 --- a/UI/ca-list-selector.html +++ b/UI/ca-list-selector.html @@ -19,8 +19,7 @@
'hidden', name => hidden, value => form.$hidden}; END ?> - + PROCESS input element_data={type => 'hidden', name => hidden, value => form.item(hidden)}; END ?> diff --git a/bin/ca.pl b/bin/ca.pl index 68ffdc5f..99a7ef66 100644 --- a/bin/ca.pl +++ b/bin/ca.pl @@ -238,13 +238,10 @@ sub list { value => 'Y', text => $locale->text('Subtotal'), }); - $form->{sort} ||= ''; #SC: blah. Find out why this breaks when undef - my $template = LedgerSMB::Template->new( - user => \%myconfig, + my $template = LedgerSMB::Template->new_UI( + user => \%myconfig, locale => $locale, - path => 'UI', - template => 'ca-list-selector', - format => 'HTML'); + template => 'ca-list-selector'); $template->render({ form => $form, includes => \@includes, -- cgit v1.2.3