[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SF.net SVN: ledger-smb:[4079] branches/1.3



Revision: 4079
          http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=4079&view=rev
Author:   einhverfr
Date:     2011-11-25 13:32:53 +0000 (Fri, 25 Nov 2011)
Log Message:
-----------
Silencing warnings in logs

Modified Paths:
--------------
    branches/1.3/Changelog
    branches/1.3/LedgerSMB/DBObject.pm
    branches/1.3/LedgerSMB/Template.pm

Added Paths:
-----------
    branches/1.3/UI/logout/epiphany.js
    branches/1.3/UI/logout/konqueror.js
    branches/1.3/UI/logout/opera.js
    branches/1.3/UI/logout/safari.js

Modified: branches/1.3/Changelog
===================================================================
--- branches/1.3/Changelog	2011-11-25 12:57:00 UTC (rev 4078)
+++ branches/1.3/Changelog	2011-11-25 13:32:53 UTC (rev 4079)
@@ -19,6 +19,8 @@
 * Database administration interface more consistent (Chris T)
 * Backup functionality moved to database administration interface (Chris T)
 * Default language handling for invoices (Herman V)
+* Fixed LaTeX errors in timecard templates (Chris T)
+* Reduced warnings in logs (Chris T)
 
 Changelog for LedgerSMB 1.3.6
 * Including xelatex templates under directory templates/xedemo (Chris T)

Modified: branches/1.3/LedgerSMB/DBObject.pm
===================================================================
--- branches/1.3/LedgerSMB/DBObject.pm	2011-11-25 12:57:00 UTC (rev 4078)
+++ branches/1.3/LedgerSMB/DBObject.pm	2011-11-25 13:32:53 UTC (rev 4079)
@@ -61,6 +61,7 @@
     my %args  = (ref($_[0]) eq 'HASH')? %{$_[0]}: @_;
     my $base  = $args{base};
     my $mode  = $args{copy};
+    $mode = '' if (!defined $mode);
     my $self  = bless {}, $class;
     my @mergelist;
     if ( defined $args{merge} ){

Modified: branches/1.3/LedgerSMB/Template.pm
===================================================================
--- branches/1.3/LedgerSMB/Template.pm	2011-11-25 12:57:00 UTC (rev 4078)
+++ branches/1.3/LedgerSMB/Template.pm	2011-11-25 13:32:53 UTC (rev 4079)
@@ -280,7 +280,7 @@
 	$format->can('process')->($self, $cleanvars);
 	#return $format->can('postprocess')->($self);
 	my $post = $format->can('postprocess')->($self);
-        $logger->debug("\$format=$format \$self->{'noauto'}=$self->{'noauto'} \$self->{rendered}=$self->{rendered}");
+        #$logger->debug("\$format=$format \$self->{'noauto'}=$self->{'noauto'} \$self->{rendered}=$self->{rendered}");
 	if (!$self->{'noauto'}) {
 		# Clean up
                 $logger->debug("before self output");

Added: branches/1.3/UI/logout/epiphany.js
===================================================================
--- branches/1.3/UI/logout/epiphany.js	                        (rev 0)
+++ branches/1.3/UI/logout/epiphany.js	2011-11-25 13:32:53 UTC (rev 4079)
@@ -0,0 +1 @@
+// Logout routines for Epiphany go here

Added: branches/1.3/UI/logout/konqueror.js
===================================================================
--- branches/1.3/UI/logout/konqueror.js	                        (rev 0)
+++ branches/1.3/UI/logout/konqueror.js	2011-11-25 13:32:53 UTC (rev 4079)
@@ -0,0 +1 @@
+// logout routines for Konqueror go here

Added: branches/1.3/UI/logout/opera.js
===================================================================
--- branches/1.3/UI/logout/opera.js	                        (rev 0)
+++ branches/1.3/UI/logout/opera.js	2011-11-25 13:32:53 UTC (rev 4079)
@@ -0,0 +1 @@
+// Logout routines for Opera go here

Added: branches/1.3/UI/logout/safari.js
===================================================================
--- branches/1.3/UI/logout/safari.js	                        (rev 0)
+++ branches/1.3/UI/logout/safari.js	2011-11-25 13:32:53 UTC (rev 4079)
@@ -0,0 +1 @@
+// logout routines for Safari go here

This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.