[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb:[4214] branches/1.3
- Subject: SF.net SVN: ledger-smb:[4214] branches/1.3
- From: ..hidden..
- Date: Thu, 15 Dec 2011 08:38:23 +0000
Revision: 4214
http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=4214&view=rev
Author: einhverfr
Date: 2011-12-15 08:38:23 +0000 (Thu, 15 Dec 2011)
Log Message:
-----------
Encoding changes for LaTeX templates--- to UTF-8
Modified Paths:
--------------
branches/1.3/Changelog
branches/1.3/LedgerSMB/Template/LaTeX.pm
branches/1.3/pos.conf.pl
Modified: branches/1.3/Changelog
===================================================================
--- branches/1.3/Changelog 2011-12-15 08:16:19 UTC (rev 4213)
+++ branches/1.3/Changelog 2011-12-15 08:38:23 UTC (rev 4214)
@@ -5,6 +5,8 @@
Changelog for 1.3.10
* Fixes for permissions for exchangerate table (Erik H)
* Fixes for POS cashier permissions. (Chris T)
+* More Localization Fixes (Herman V)
+* Customer/Vendor Search now shows records without credit accounts (Herman V)
Changelog for 1.3.9
* More logging enhancements (Herman V)
Modified: branches/1.3/LedgerSMB/Template/LaTeX.pm
===================================================================
--- branches/1.3/LedgerSMB/Template/LaTeX.pm 2011-12-15 08:16:19 UTC (rev 4213)
+++ branches/1.3/LedgerSMB/Template/LaTeX.pm 2011-12-15 08:38:23 UTC (rev 4214)
@@ -144,6 +144,7 @@
START_TAG => quotemeta('<?lsmb'),
END_TAG => quotemeta('?>'),
DELIMITER => ';',
+ ENCODING => 'utf8',
DEBUG => ($parent->{debug})? 'dirs': undef,
DEBUG_FORMAT => '',
}) || throw Error::Simple Template::Latex->error();
@@ -151,7 +152,7 @@
$source,
{%$cleanvars, %$LedgerSMB::Template::TTI18N::ttfuncs,
'escape' => \&preprocess},
- "$parent->{outputfile}.$format", binmode => 1)) {
+ "$parent->{outputfile}.$format", {binmode => 1})) {
throw Error::Simple $template->error();
}
if (lc $format eq 'dvi') {
Modified: branches/1.3/pos.conf.pl
===================================================================
--- branches/1.3/pos.conf.pl 2011-12-15 08:16:19 UTC (rev 4213)
+++ branches/1.3/pos.conf.pl 2011-12-15 08:38:23 UTC (rev 4214)
@@ -13,7 +13,7 @@
$pos_config{'pd_host'} = $pos_config{'rem_host'};
$pos_config{'pd_port'} = 6601;
-$pos_config{'pd_proto'} = 'tcp';
+$pos_config{'pd_proto'} = 'udp';
require "drivers/pd3000.pl"; # Use the PD3000 driver
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.