[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb:[4059] branches/1.3
- Subject: SF.net SVN: ledger-smb:[4059] branches/1.3
- From: ..hidden..
- Date: Thu, 24 Nov 2011 23:33:57 +0000
Revision: 4059
http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=4059&view=rev
Author: einhverfr
Date: 2011-11-24 23:33:56 +0000 (Thu, 24 Nov 2011)
Log Message:
-----------
Updating changelog and correcting handling of tempdir based on Herman's contributions (dependent paths assigned now at the end of the file).
Modified Paths:
--------------
branches/1.3/Changelog
branches/1.3/LedgerSMB/Sysconfig.pm
Modified: branches/1.3/Changelog
===================================================================
--- branches/1.3/Changelog 2011-11-24 22:11:47 UTC (rev 4058)
+++ branches/1.3/Changelog 2011-11-24 23:33:56 UTC (rev 4059)
@@ -6,6 +6,10 @@
* Added foreign key of entity_credit_account.language_code (Herman V)
* Fixed pricelist button (customer/vendor) producing error (Chris T)
* Fixed date error when processing recurring transactions (Chris T)
+* Exposed LedgerSMB::Sysconfig::tempdir to configuration file (Herman V)
+* Fixed invoice tempfiles never being cleaned up (Herman V)
+* Fixed LedgerSMB.pm warnings during tests (Herman V)
+* Allow log-level to be set from config file (Herman V)
Changelog for LedgerSMB 1.3.6
* Including xelatex templates under directory templates/xedemo (Chris T)
Modified: branches/1.3/LedgerSMB/Sysconfig.pm
===================================================================
--- branches/1.3/LedgerSMB/Sysconfig.pm 2011-11-24 22:11:47 UTC (rev 4058)
+++ branches/1.3/LedgerSMB/Sysconfig.pm 2011-11-24 23:33:56 UTC (rev 4059)
@@ -67,12 +67,7 @@
# Temporary files stored at"
our $tempdir = ( $ENV{TEMP} || '/tmp' );
-$ENV{HOME} = $tempdir;
-our $cache_template_dir = "$tempdir/lsmb_templates";
-# Backup path
-our $backuppath = $tempdir;
-
# member file
our $memberfile = "users/members";
@@ -201,4 +196,10 @@
$ENV{PGSSLMODE} = $config{database}{sslmode} if $config{database}{sslmode};
$ENV{PG_CONTRIB_DIR} = $config{database}{contrib_dir};
+$ENV{HOME} = $tempdir;
+
+our $cache_template_dir = "$tempdir/lsmb_templates";
+# Backup path
+our $backuppath = $tempdir;
+
1;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.