summaryrefslogtreecommitdiffstats
path: root/common/scripts/Vareqval.pm
diff options
context:
space:
mode:
authorFlorent Villard <warly@mandriva.com>2003-10-20 10:51:59 +0000
committerFlorent Villard <warly@mandriva.com>2003-10-20 10:51:59 +0000
commit306951e28791b261f894a8b71255b4c45d105661 (patch)
tree9fa88f156c8a6fa200986dc52b42ab43047e81f6 /common/scripts/Vareqval.pm
parenteacbbd06a147d56f4edfaf008cc667b55577b3be (diff)
downloaddrakwizard-306951e28791b261f894a8b71255b4c45d105661.tar
drakwizard-306951e28791b261f894a8b71255b4c45d105661.tar.gz
drakwizard-306951e28791b261f894a8b71255b4c45d105661.tar.bz2
drakwizard-306951e28791b261f894a8b71255b4c45d105661.tar.xz
drakwizard-306951e28791b261f894a8b71255b4c45d105661.zip
change copyright
remove old xml related files
Diffstat (limited to 'common/scripts/Vareqval.pm')
-rwxr-xr-xcommon/scripts/Vareqval.pm89
1 files changed, 0 insertions, 89 deletions
diff --git a/common/scripts/Vareqval.pm b/common/scripts/Vareqval.pm
deleted file mode 100755
index 110ad4ec..00000000
--- a/common/scripts/Vareqval.pm
+++ /dev/null
@@ -1,89 +0,0 @@
-#!/usr/bin/perl -w
-
-# Author Philippe Hétroy, phetroy@mandrakesoft.com
-# $Id: Vareqval.pm,v 1.3 2002-09-03 15:11:43 adesmons Exp $
-
-# Module for loding and committing informations in a VAR = value file type
-
-package Vareqval;
-use lib('./');
-use strict;
-use Data::Dumper;
-
-
-# Get all useful content of the config file
-# Return a hash containg the key and the value
-# ATTENTION : in the conf file, an empty value is returnes as a spaced value (mandatory because of XML compatibility)
-sub get {
- my $self = shift;
- my $file = shift;
- my %l;
- local *F; open F, $file or return;
- local $_;
-
- while (<F>) {
-
- my ($v, $val, $val2) =
- /^\s* # leading space
- (\w+)\s*=\s* # variable
- (
- "(.*)" # double-quoted text
- | '(.*)' # single-quoted text
- | [^'"\s]* # normal text
- )
- \s*$ # end of line
- /x;
- no warnings;
- next if (!defined $v || $v eq "");
- $l{$v} = defined $val2 ? $val2 : $val;
- }
-
- %l;
-}
-
-# Commits changes in conf files and ifconfig
-sub commit {
- my $self = shift;
- my ($file, $hash) = @_;
- local *F;
-
- my $output = "";
- if (open(F, $file)) {
- local $_;
-
- while (<F>) {
- my ($pre, $key, $eq, $val, $rest) = /(^\s*)(\w+)(\s*=\s*"*'*)([^'"\s]*)(.*)/x;
-
- if (!defined $key) {
- $output .= $_;
- next;
- };
- next if (!exists $hash->{$key}); #Elt has been removed
- no warnings;
- $val = $hash->{$key};
- delete $hash->{$key};
- $output .= defined $val ? $pre . $key . $eq . $val . $rest . "\n" : $pre . $key . $eq . $val . $rest;
-# $output .= $pre . $key . $eq . $val . $rest . "\n";
- }
- #appending added parameters
- foreach (keys %$hash) {
- $output .= $_ . "=" . $hash->{$_} . "\n";
- }
-
- } else { #the file does not exist
- print STDERR "File $file will be created\n";
- foreach (keys %$hash) {
- $output .= defined $hash->{$_} ? $_ . "=" . $hash->{$_} . "\n" : $_ . "=\n";
- }
- }
-
-#print $output;
-#print "\n------------------\n";
-
- # outputing the new conf
- open(F, "> $file") or return;
- print F $output;
- close(F);
-}
-
-1;