[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] CVS: koha/acqui newbasket2.pl,1.9,1.10
From: |
Ambrose Li |
Subject: |
[Koha-cvs] CVS: koha/acqui newbasket2.pl,1.9,1.10 |
Date: |
Sat, 01 Feb 2003 23:18:40 -0800 |
Update of /cvsroot/koha/koha/acqui
In directory sc8-pr-cvs1:/tmp/cvs-serv1397/acqui
Modified Files:
newbasket2.pl
Log Message:
Moved C4/Charset.pm to C4/Interface/CGI/Output.pm
Create output_html_with_http_headers function to contain the "print $query
->header(-type => guesstype...),..." call. This is in preparation for
non-HTML output (e.g., text/xml) and charset conversion before output in
the future.
Created C4/Interface/CGI/Template.pm to hold convenience functions specific
to the CGI interface using HTML::Template
Modified moremembers.pl to make the "sex" field localizable for languages
where M and F doesn't make sense
Index: newbasket2.pl
===================================================================
RCS file: /cvsroot/koha/koha/acqui/newbasket2.pl,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** newbasket2.pl 28 Jan 2003 15:01:42 -0000 1.9
--- newbasket2.pl 2 Feb 2003 07:18:37 -0000 1.10
***************
*** 29,33 ****
use HTML::Template;
use C4::Auth;
! use C4::Charset;
my $env;
--- 29,33 ----
use HTML::Template;
use C4::Auth;
! use C4::Interface::CGI::Output;
my $env;
***************
*** 247,252 ****
loopresult
=>address@hidden);
! print $input->header(
! -type => guesstype($template->output),
! -cookie => $cookie
! ),$template->output;
--- 247,249 ----
loopresult
=>address@hidden);
! output_html_with_http_headers $input, $cookie, $template->output;
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Koha-cvs] CVS: koha/acqui newbasket2.pl,1.9,1.10,
Ambrose Li <=
- Prev by Date:
[Koha-cvs] CVS: koha/C4/Interface/CGI Output.pm,NONE,1.1 Template.pm,NONE,1.1
- Next by Date:
[Koha-cvs] CVS: koha MARCdetail.pl,1.9,1.10 admin-home.pl,1.6,1.7 boraccount.pl,1.7,1.8 catalogue-home.pl,1.5,1.6 detail.pl,1.17,1.18 jmemberentry.pl,1.6,1.7 mainpage.pl,1.6,1.7 mancredit.pl,1.8,1.9 maninvoice.pl,1.6,1.7 member.pl,1.9,1.10 memberentry.pl,1.20,1.21 members-home.pl,1.4,1.5 moremember.pl,1.23,1.24 newmember.pl,1.6,1.7 readingrec.pl,1.6,1.7 reports-home.pl,1.4,1.5 search.pl,1.25,1.26 shelves.pl,1.9,1.10 thesaurus_popup.pl,1.9,1.10 userpage.pl,1.8,1.9
- Previous by thread:
[Koha-cvs] CVS: koha/C4/Interface/CGI Output.pm,NONE,1.1 Template.pm,NONE,1.1
- Next by thread:
[Koha-cvs] CVS: koha MARCdetail.pl,1.9,1.10 admin-home.pl,1.6,1.7 boraccount.pl,1.7,1.8 catalogue-home.pl,1.5,1.6 detail.pl,1.17,1.18 jmemberentry.pl,1.6,1.7 mainpage.pl,1.6,1.7 mancredit.pl,1.8,1.9 maninvoice.pl,1.6,1.7 member.pl,1.9,1.10 memberentry.pl,1.20,1.21 members-home.pl,1.4,1.5 moremember.pl,1.23,1.24 newmember.pl,1.6,1.7 readingrec.pl,1.6,1.7 reports-home.pl,1.4,1.5 search.pl,1.25,1.26 shelves.pl,1.9,1.10 thesaurus_popup.pl,1.9,1.10 userpage.pl,1.8,1.9
- Index(es):