[interchange-cvs] interchange - racke modified 2 files

interchange-core@icdevgroup.org interchange-core@icdevgroup.org
Fri Feb 7 20:13:01 2003


User:      racke
Date:      2003-02-08 01:12:57 GMT
Modified:  .        WHATSNEW
Modified:  lib/Vend Config.pm
Log:
Compile errors on ActionMap/FormAction are passed through now.

Revision  Changes    Path
2.100     +2 -0      interchange/WHATSNEW


rev 2.100, prev_rev 2.99
Index: WHATSNEW
===================================================================
RCS file: /var/cvs/interchange/WHATSNEW,v
retrieving revision 2.99
retrieving revision 2.100
diff -u -r2.99 -r2.100
--- WHATSNEW	7 Feb 2003 23:36:30 -0000	2.99
+++ WHATSNEW	8 Feb 2003 01:12:56 -0000	2.100
@@ -58,6 +58,8 @@
 
 * Fixed the row_count (0E0) problem in Vend::Table::DBI.
 
+* Compile errors on ActionMap/FormAction are passed through now.
+
 Menu
 ----
 



2.99      +3 -3      interchange/lib/Vend/Config.pm


rev 2.99, prev_rev 2.98
Index: Config.pm
===================================================================
RCS file: /var/cvs/interchange/lib/Vend/Config.pm,v
retrieving revision 2.98
retrieving revision 2.99
diff -u -r2.98 -r2.99
--- Config.pm	2 Feb 2003 21:04:22 -0000	2.98
+++ Config.pm	8 Feb 2003 01:12:56 -0000	2.99
@@ -1,6 +1,6 @@
 # Vend::Config - Configure Interchange
 #
-# $Id: Config.pm,v 2.98 2003/02/02 21:04:22 racke Exp $
+# $Id: Config.pm,v 2.99 2003/02/08 01:12:56 racke Exp $
 #
 # Copyright (C) 1996-2002 Red Hat, Inc. <interchange@redhat.com>
 # Copyright (C) 2003 ICDEVGROUP <interchange@icdevgroup.org>
@@ -46,7 +46,7 @@
 use Vend::Util;
 use Vend::Data;
 
-$VERSION = substr(q$Revision: 2.98 $, 10);
+$VERSION = substr(q$Revision: 2.99 $, 10);
 
 my %CDname;
 
@@ -1567,7 +1567,7 @@
 		$c->{$name} = $c->{_mvsafe}->reval($sub);
 	}
 	if($@) {
-		config_warn("Action '%s' did not compile correctly.", $name);
+		config_warn("Action '%s' did not compile correctly (%s).", $name, $@);
 	}
 	return $c;