]> git.p6c8.net - devedit.git/blobdiff - modules/Config/DevEdit.pm
Changed my email address (patshaping@gmx.net -> patrick@patshaping.de) in all
[devedit.git] / modules / Config / DevEdit.pm
index 8adfd358748ce720c082025247c30a9637cf918d..4077b3061ae3b95a951b07410a35dbb5a0333f49 100644 (file)
@@ -3,10 +3,10 @@ package Config::DevEdit;
 #
 # Dev-Editor - Module Config::DevEdit
 #
-# Parse the configuration file
+# Read and parse the configuration files
 #
-# Author:        Patrick Canterino <patshaping@gmx.net>
-# Last modified: 2004-01-16
+# Author:        Patrick Canterino <patrick@patshaping.de>
+# Last modified: 2004-11-24
 #
 
 use strict;
@@ -22,18 +22,38 @@ use base qw(Exporter);
 
 # read_config()
 #
-# Parse the configuration file
+# Read the configuration files of Dev-Editor
 #
-# Params: Path to configuration file
+# Params: Path to main configuration file
 #
 # Return: Configuration (Hash Reference)
 
 sub read_config($)
+{
+ my $file = shift;
+
+ my $config = parse_config($file);
+
+ $config->{'errors'}    = parse_config($config->{'error_file'});
+ $config->{'templates'} = parse_config($config->{'template_file'});
+
+ return $config;
+}
+
+# parse_config()
+#
+# Parse a configuration file
+#
+# Params: Path to configuration file
+#
+# Return: Configuration (Hash Reference)
+
+sub parse_config($)
 {
  my $file = shift;
  local *CF;
 
- open(CF,"<$file") or croak("Open $file: $!");
+ open(CF,"<".$file) or croak("Open $file: $!");
  read(CF, my $data, -s $file);
  close(CF);
 
@@ -49,10 +69,10 @@ sub read_config($)
 
   # Remove whitespaces at the beginning and at the end
 
-  $key   =~ s/^\s*//g;
-  $key   =~ s/\s*$//g;
-  $value =~ s/^\s*//g;
-  $value =~ s/\s*$//g;
+  $key   =~ s/^\s+//g;
+  $key   =~ s/\s+$//g;
+  $value =~ s/^\s+//g;
+  $value =~ s/\s+$//g;
 
   croak "Double defined value '$key' in configuration file '$file'" if($config->{$key});
 

patrick-canterino.de