Update of /cvsroot/env-switcher/env-switcher/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3304
Modified Files:
switcher.in
Log Message:
Massive changes for bug 877263: ditch AppConfig, stop using real
hashes (use anonymous hashes instead). Although it was a huge
re-write, it did make the code a bit simpler (no more monkeying around
with forced 2-level hierarchies -- can now have true three-level
hierarchies)
Index: switcher.in
===================================================================
RCS file: /cvsroot/env-switcher/env-switcher/src/switcher.in,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -r1.16 -r1.17
*** switcher.in 16 Jan 2004 15:37:58 -0000 1.16
--- switcher.in 7 Mar 2004 21:03:51 -0000 1.17
***************
*** 13,17 ****
#
! use AppConfig;
use strict;
--- 13,17 ----
#
! use Data::Dumper;
use strict;
[...2137 lines suppressed...]
! # Write out new files if necessary
! if ($ret == 0) {
! if ($system_tags_modified) {
! write_ini_file($system_filename, $system_tags);
! }
! if ($user_tags_modified) {
! write_ini_file($user_filename, $user_tags);
}
}
***************
*** 1510,1512 ****
# Done
! exit($return_value);
--- 1596,1598 ----
# Done
! exit $ret;
|