* BackupPC_Admin now uses $Conf{UmaskMode}, so config.pl files
[BackupPC.git] / makeDist
1 #!/bin/perl
2 #
3 # makeDist: Build a BackupPC distribution
4 #
5 # DESCRIPTION
6 #
7 #   This script should be run with no arguments to build a
8 #   distribution.  The $Version and $ReleaseDate should be
9 #   edited below to specify the version name and the release
10 #   date.  The distribution is createede in the sub-directory
11 #   dist.  The dsitribution is in the file name:
12 #
13 #           dist/BackupPC-$Version.tar.gz.
14 #
15 #   Often the language files are not up to date, and makeDist
16 #   exits after complaining about the lang files being inconsistent.
17 #   Use the -l option to turn off that behavior.
18 #
19 # AUTHOR
20 #   Craig Barratt <cbarratt@users.sourceforge.net>
21 #
22 # COPYRIGHT
23 #   Copyright (C) 2001-2006  Craig Barratt
24 #
25 #   This program is free software; you can redistribute it and/or modify
26 #   it under the terms of the GNU General Public License as published by
27 #   the Free Software Foundation; either version 2 of the License, or
28 #   (at your option) any later version.
29 #
30 #   This program is distributed in the hope that it will be useful,
31 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
32 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
33 #   GNU General Public License for more details.
34 #
35 #   You should have received a copy of the GNU General Public License
36 #   along with this program; if not, write to the Free Software
37 #   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
38 #
39 #========================================================================
40 #
41
42 use strict;
43 use File::Path;
44 use File::Copy;
45 use Getopt::Std;
46 use lib "./lib";
47 use BackupPC::Lib;
48 use BackupPC::Config::Meta qw(:all);
49
50 my $bpc;
51 die("BackupPC::Lib->new failed\n")
52         if ( !($bpc = BackupPC::Lib->new(".", ".", "./conf", 1)) );
53
54 umask(0022);
55
56 my $Version     = "3.0.0";
57 my $ReleaseDate = "21 Jan 2007";
58 my $DistDir     = "dist/BackupPC-$Version";
59
60 my @PerlSrc = qw(
61     bin/BackupPC
62     bin/BackupPC_archive
63     bin/BackupPC_archiveHost
64     bin/BackupPC_attribPrint
65     bin/BackupPC_dump
66     bin/BackupPC_fixupBackupSummary
67     bin/BackupPC_link
68     bin/BackupPC_nightly
69     bin/BackupPC_restore
70     bin/BackupPC_sendEmail
71     bin/BackupPC_serverMesg
72     bin/BackupPC_trashClean
73     bin/BackupPC_tarExtract
74     bin/BackupPC_tarCreate
75     bin/BackupPC_tarPCCopy
76     bin/BackupPC_compressPool
77     bin/BackupPC_zipCreate
78     bin/BackupPC_zcat
79     lib/BackupPC/Attrib.pm
80     lib/BackupPC/Config.pm
81     lib/BackupPC/FileZIO.pm
82     lib/BackupPC/Lib.pm
83     lib/BackupPC/PoolWrite.pm
84     lib/BackupPC/Storage.pm
85     lib/BackupPC/View.pm
86     lib/BackupPC/CGI/AdminOptions.pm
87     lib/BackupPC/CGI/Archive.pm
88     lib/BackupPC/CGI/ArchiveInfo.pm
89     lib/BackupPC/CGI/Browse.pm
90     lib/BackupPC/CGI/DirHistory.pm
91     lib/BackupPC/CGI/EditConfig.pm
92     lib/BackupPC/CGI/EmailSummary.pm
93     lib/BackupPC/CGI/GeneralInfo.pm
94     lib/BackupPC/CGI/HostInfo.pm
95     lib/BackupPC/CGI/Lib.pm
96     lib/BackupPC/CGI/LOGlist.pm
97     lib/BackupPC/CGI/Queue.pm
98     lib/BackupPC/CGI/ReloadServer.pm
99     lib/BackupPC/CGI/RestoreFile.pm
100     lib/BackupPC/CGI/RestoreInfo.pm
101     lib/BackupPC/CGI/Restore.pm
102     lib/BackupPC/CGI/RSS.pm
103     lib/BackupPC/CGI/StartServer.pm
104     lib/BackupPC/CGI/StartStopBackup.pm
105     lib/BackupPC/CGI/StopServer.pm
106     lib/BackupPC/CGI/Summary.pm
107     lib/BackupPC/CGI/View.pm
108     lib/BackupPC/Config/Meta.pm
109     lib/BackupPC/Lang/de.pm
110     lib/BackupPC/Lang/en.pm
111     lib/BackupPC/Lang/es.pm
112     lib/BackupPC/Lang/fr.pm
113     lib/BackupPC/Lang/it.pm
114     lib/BackupPC/Lang/nl.pm
115     lib/BackupPC/Lang/pt_br.pm
116     lib/BackupPC/Storage/Text.pm
117     lib/BackupPC/Xfer/Archive.pm
118     lib/BackupPC/Xfer/BackupPCd.pm
119     lib/BackupPC/Xfer/Smb.pm
120     lib/BackupPC/Xfer/Tar.pm
121     lib/BackupPC/Xfer/Rsync.pm
122     lib/BackupPC/Xfer/RsyncDigest.pm
123     lib/BackupPC/Xfer/RsyncFileIO.pm
124     lib/BackupPC/Zip/FileMember.pm
125     cgi-bin/BackupPC_Admin
126 );
127
128 my %opts;
129 if ( !getopts("l", \%opts) || @ARGV != 0 ) {
130     print("usage: $0 [-l]\n");
131     exit(1);
132 }
133
134 #
135 # Check config parameters
136 #
137 my $ConfVars = {};
138 my $errCnt;
139
140 $errCnt += CheckConfigParams("conf/config.pl", $ConfVars, 0);
141
142 $errCnt += CheckConfigParams("doc-src/BackupPC.pod", $ConfVars, 1);
143
144 $errCnt += CheckMetaDataVsConfig($ConfVars, "lib/BackupPC/Config/Meta.pm");
145
146 $errCnt += CheckEditorVsConfig($ConfVars, "lib/BackupPC/CGI/EditConfig.pm");
147
148 #
149 # These config parameters are not used in the code, so ignore them.
150 #
151 $ConfVars->{BackupPCUser} = 2;
152 $ConfVars->{CgiDir}       = 2;
153 $ConfVars->{TopDir}       = 2;
154 $ConfVars->{LogDir}       = 2;
155 $ConfVars->{ConfDir}      = 2;
156 $ConfVars->{InstallDir}   = 2;
157 $ConfVars->{CgiImageDir}  = 2;
158
159 #
160 # These config parameters are used in the code to be backward compatible,
161 # but are not present in the current config file, so ignore them.
162 #
163 $ConfVars->{BlackoutHourBegin} = 2;
164 $ConfVars->{BlackoutHourEnd}   = 2;
165 $ConfVars->{BlackoutWeekDays}  = 2;
166 $ConfVars->{RsyncLogLevel}     = 2;
167
168 foreach my $file ( @PerlSrc ) {
169     $errCnt += CheckConfigParams($file, $ConfVars, 1);
170 }
171 if ( !$opts{l} ) {
172     $errCnt += CheckLangUsage();
173     $errCnt += CheckLangTags();
174 }
175 if ( $errCnt ) {
176     print("Exiting because of errors\n");
177     exit(1)
178 }
179
180 $errCnt = 0;
181 foreach my $var ( sort(keys(%$ConfVars) ) ) {
182     next if ( $ConfVars->{$var} >= 2 || $var =~ /^\$/ );
183     printf("Unused config parameter $var\n");
184     $errCnt++;
185 }
186 if ( $errCnt ) {
187     print("Exiting because of errors\n");
188     exit(1)
189 }
190
191 rmtree($DistDir, 0, 0);
192 mkpath($DistDir, 0, 0777);
193
194 foreach my $dir ( qw(bin doc conf images init.d/src cgi-bin
195                      lib/BackupPC/CGI
196                      lib/BackupPC/Config
197                      lib/BackupPC/Lang
198                      lib/BackupPC/Storage
199                      lib/BackupPC/Xfer
200                      lib/BackupPC/Zip
201                 ) ) {
202     mkpath("$DistDir/$dir", 0, 0777);
203 }
204
205 my %ConfName;
206 my $ConfPod = config2pod();
207 rmtree("doc", 0, 0);
208 mkpath("doc", 0, 0777);
209 InstallFile("doc-src/BackupPC.pod", "doc/BackupPC.pod");
210
211 use Pod::Html;
212 pod2html("doc/BackupPC.pod",
213         "--backlink=Back to Top",
214         "--header",
215         "--title=BackupPC",
216         "--outfile=doc/BackupPC.html");
217
218 foreach my $file ( (@PerlSrc,
219             <images/*.gif>,
220             <images/*.png>,
221             qw(
222                 conf/config.pl
223                 conf/hosts
224                 conf/BackupPC_stnd.css
225                 conf/BackupPC_stnd_orig.css
226                 init.d/README
227                 init.d/src/debian-backuppc
228                 init.d/src/gentoo-backuppc
229                 init.d/src/gentoo-backuppc.conf
230                 init.d/src/linux-backuppc
231                 init.d/src/slackware-backuppc
232                 init.d/src/solaris-backuppc
233                 init.d/src/suse-backuppc
234                 doc/BackupPC.pod
235                 doc/BackupPC.html
236                 README
237                 LICENSE
238                 ChangeLog
239                 configure.pl
240         )) ) {
241     InstallFile("$file", "$DistDir/$file");
242 }
243 rmtree("doc", 0, 0);
244 system("cd dist ; tar zcf BackupPC-$Version.tar.gz BackupPC-$Version");
245 print("Distribution written to dist/BackupPC-$Version.tar.gz\n");
246 unlink("pod2htmd.x~~");
247 unlink("pod2htmi.x~~");
248 unlink("pod2htmd.tmp");
249 unlink("pod2htmi.tmp");
250
251 ###########################################################################
252 # Subroutines
253 ###########################################################################
254
255 sub InstallFile
256 {
257     my($file, $dest) = @_;
258
259     unlink($dest) if ( -d $dest );
260     if ( $file =~ /\.gif/ || $file =~ /\.png/ ) {
261         die("can't copy($file, $dest)\n") unless copy($file, $dest);
262     } else {
263         open(FILE, $file)   || die("can't open $file for reading\n");
264         open(OUT, ">$dest") || die("can't open $dest for writing\n");
265         binmode(FILE);
266         binmode(OUT);
267         while ( <FILE> ) {
268             s/^([#*\s]+)Version \d+\.\d+[\.\w]*, released \d+ \w+ \d{4}\.?/$1Version __VERSION__, released __RELEASEDATE__./;
269             s/__VERSION__/$Version/g;
270             s/__RELEASEDATE__/$ReleaseDate/g;
271             if ( $file =~ /BackupPC\.html$/ ) {
272                 #
273                 # fixup for conf links
274                 #
275                 if ( !/A NAME="item_(%|_)conf/i ) {
276                     s/\$Conf{([^}]*)}/
277                         defined($ConfName{$1})
278                             ? "\L<a href=\"#$ConfName{$1}\">\E\$Conf{$1}<\/A>"
279                             : "\$Conf{$1}"/eg;
280                 }
281                 s/^<DD>/<DD><P>/;
282                 s/^<li><\/li>/<li>/;
283             }
284             if ( /__CONFIGPOD__/ ) {
285                 print OUT $ConfPod;
286             } elsif ( /^use lib ".*BackupPC\/lib";/
287                     || /^use lib "\/home\/pcbackup\/install\/lib";/ ) {
288                 print OUT "use lib \"__INSTALLDIR__/lib\";\n";
289             } elsif ( $file =~ /Lib.pm/ && /^(\s*\$topDir\s*=\s*)'.*'(\s*if\s.*)/ ) {
290                 print OUT "$1'__TOPDIR__'$2\n";
291             } elsif ( $file =~ /Lib.pm/ && /^(\s*\$installDir\s*=\s*)'.*'(\s*if\s.*)/ ) {
292                 print OUT "$1'__INSTALLDIR__'$2\n";
293             } elsif ( $file =~ /Lib.pm/ && /^(\s*my \$useFHS\s*=\s*)\d;/ ) {
294                 print OUT "${1}0;\n";
295             } elsif ( $file =~ /Lib.pm/ && /(.*Version *=> .*)'[\w\d\.]+',/ ) {
296                 print OUT "$1'$Version',\n";
297             } elsif ( $file =~ /configure.pl/ && /__CONFIGURE_BIN_LIST__/ ) {
298                 print OUT "        ", join("\n        ", grep(/^bin\//, @PerlSrc)), "\n";
299             } elsif ( $file =~ /configure.pl/ && /__CONFIGURE_LIB_LIST__/ ) {
300                 print OUT "        ", join("\n        ", grep(/^lib\//, @PerlSrc)), "\n";
301             } elsif ( $file =~ /BackupPC_Admin/ && /(my *\$installDir *= *)'.*'/ ) {
302                 print OUT "$1'__INSTALLDIR__/lib';\n";
303             } else {
304                 print OUT;
305             }
306         }
307         close(FILE);
308         close(OUT);
309     }
310     if ( -x $file ) {
311         chmod(0555, $dest);
312     } else {
313         chmod(0444, $dest);
314     }
315 }
316
317 sub config2pod
318 {
319     open(C, "conf/config.pl") || die("can't open conf/config.pl");
320     binmode(C);
321     my($str, $out, $getHdr, @conf);
322     my $first = 1;
323     while ( <C> ) {
324         chomp;
325         s/ +$//;
326         if ( /^#########################/ ) {
327             if ( $getHdr ) {
328                 $str =~ s/\n.*//sg;
329                 $out .= "=back\n\n" if ( !$first );
330                 $out .= "=head2 $str\n\n=over 4\n\n";
331                 $str = "";
332                 $first = 0;
333             }
334             $getHdr = !$getHdr;
335             next;
336         }
337         if ( /^#/ ) {
338             s/# ?//;
339             next if ( $str eq "" && /^$/ );
340             $str .= $_ . "\n";
341             $str .= "\n" if ( $str =~ /examples?:\n$/i );
342         } elsif ( /^\$Conf{([^}]*)/ ) {
343             my $var = $1;
344             s/  +/ /g;
345             s/;\s*#.*/;/;
346             if ( !s/\[$/[ ... ];/ && !s/<<'EOF'/.../ ) {
347                 s/([^;])\s*$/$1 .../;
348             }
349             push(@conf, $_);
350             my $text = "_conf_${var}_";
351             $text =~ s{[\W\s]}{_}g;
352             $ConfName{$var} = "item_$text";
353         } elsif ( /^$/ ) {
354             if ( $str ne "" && @conf ) {
355                 $out .= "=item " . join("\n\n=item ", @conf) . "\n\n";
356                 $out .= $str;
357                 $out .= "\n" if ( $str !~ /\n$/ );
358             }
359             $str = "";
360             @conf = ();
361         }
362     }
363     if ( $str ne "" && @conf ) {
364         $out .= "=item " . join("\n\n=item ", @conf) . "\n\n";
365         $out .= $str;
366         $out .= "\n" if ( $str !~ /\n$/ );
367     }
368     $out .= "=back\n\n" if ( !$first );
369     return $out;
370 }
371
372 sub CheckConfigParams
373 {
374     my($file, $vars, $check) = @_;
375     my $errors;
376
377     open(F, $file) || die("can't open $file\n");
378     binmode(F);
379     if ( $check ) {
380         while ( <F> ) {
381             s/\$(self|bpc)->{Conf}{([^}\$]+)}/if ( !defined($vars->{$2}) ) {
382                     print("Unexpected Conf var $2 in $file\n");
383                     $errors++;
384                 } else {
385                     $vars->{$2}++;
386                 }/eg;
387             s/\$[Cc]onf(?:->)?{([^}\$]+)}/if ( !defined($vars->{$1}) ) {
388                     print("Unexpected Conf var $1 in $file\n");
389                     $errors++;
390                 } else {
391                     $vars->{$1}++;
392                 }/eg;
393             s/UserCommandRun\("([^"]*)"/if ( !defined($vars->{$1}) ) {
394                     print("Unexpected Conf var $1 in $file\n");
395                     $errors++;
396                 } else {
397                     $vars->{$1}++;
398                 }/eg;
399         }
400     } else {
401         while ( <F> ) {
402             s/^[^#]*\$self->{Conf}{([^}]*)/$vars->{$1} = 1;/eg;
403             s/^[^#]*\$Conf{([^}]*)/$vars->{$1} = 1;/eg;
404         }
405     }
406     close(F);
407     return $errors;
408 }
409
410 sub CheckMetaDataVsConfig
411 {
412     my($confVars, $file) = @_;
413     my $done = {};
414     my $errors;
415
416     #
417     # Check that the meta file mentions all the config
418     # parameters
419     #
420     open(F, $file) || die("can't open $file");
421
422     while ( <F> ) {
423         next if ( !/^\s{4}(\w+)\s+=>/ );
424         if ( $confVars->{$1} ) {
425             $done->{$1} = 1;
426             next;
427         }
428         next if ( $1 eq "Hosts" );
429         print("$file has $1 but missing from conf/config.pl\n");
430         $errors++;
431     }
432     close(F);
433     foreach my $v ( keys(%$confVars) ) {
434         next if ( $done->{$v} );
435         print("$file missing $v from conf/config.pl\n");
436         $errors++;
437     }
438
439     #
440     # Do extra checks that the CgiUserConfigEdit hash in the Meta
441     # file matches the config file
442     #
443     foreach my $p ( keys(%{$ConfigMeta{CgiUserConfigEdit}{child}}) ) {
444         if ( !defined($bpc->{Conf}{CgiUserConfigEdit}{$p}) ) {
445             print("lib/BackupPC/Config/Meta.pm has $p in CgiUserConfigEdit,"
446                 . " but conf/config.pl CgiUserConfigEdit does not\n");
447             $errors++;
448         }
449     }
450     foreach my $p ( keys(%{$bpc->{Conf}{CgiUserConfigEdit}}) ) {
451         if ( !defined($ConfigMeta{CgiUserConfigEdit}{child}{$p}) ) {
452             print("conf/config.pl CgiUserConfigEdit has $p, but"
453                 . " lib/BackupPC/Config/Meta.pm does not\n");
454             $errors++;
455         }
456     }
457     return $errors;
458 }
459
460 sub CheckEditorVsConfig
461 {
462     my($confVars, $file) = @_;
463     my $done = {};
464     my $errors;
465
466     #
467     # Check that the config editor file mentions all the config
468     # parameters
469     #
470     open(F, $file) || die("can't open $file");
471
472     while ( <F> ) {
473         next if ( !/name\s*=>\s*"(\w+)"/ );
474         if ( $confVars->{$1} ) {
475             $done->{$1} = 1;
476             next;
477         }
478         next if ( $1 eq "Hosts" );
479         print("$file has $1 but missing from conf/config.pl\n");
480         $errors++;
481     }
482     close(F);
483     foreach my $v ( keys(%$confVars) ) {
484         next if ( $done->{$v} );
485         print("$file missing $v from conf/config.pl\n");
486         $errors++;
487     }
488     return $errors;
489 }
490
491 #
492 # Make sure that every lang variable in cgi-bin/BackupPC_Admin matches
493 # the strings in each lib/BackupPC/Lang/*.pm file.  This makes sure
494 # we didn't miss any translations in any of the languages.
495 #
496 sub CheckLangUsage
497 {
498     my $errors;
499     my $vars = {};
500
501     foreach my $file ( (
502                 qw(cgi-bin/BackupPC_Admin bin/BackupPC_sendEmail),
503                 <lib/BackupPC/CGI/*pm>,
504                 <lib/BackupPC/Lang/en.pm>,
505             ) ) {
506         open(F, $file) || die("can't open $file");
507         binmode(F);
508         while ( <F> ) {
509             next if ( /^\s*#/ );
510             s/\$Lang->{([^}]*)}/$vars->{$1} = 1;/eg;
511             s/(text|comment)\s*=>\s*"(CfgEdit_.*)"/$vars->{$2} = 1;/eg;
512         }
513         close(F);
514     }
515
516     foreach my $f ( <lib/BackupPC/Lang/*.pm> ) {
517         my $done = {};
518         open(F, $f) || die("can't open $f\n");
519         binmode(F);
520         while ( <F> ) {
521             s/#.*//g;
522             s/\$Lang{([^}]*)}/
523                     my $var = $1;
524                     next if ( $var =~ m{^(Reason_|Status_|backupType_|Disabled_)} );
525                     next if ( $var eq "Documentation" );
526                     if ( !defined($vars->{$var}) ) {
527                         print("Unexpected Lang var $var in $f\n");
528                         $errors++;
529                     } else {
530                         $done->{$var} = 1;
531                     }/eg;
532         }
533         close(F);
534         foreach my $v ( keys(%$vars) ) {
535             #
536             # skip "variables" with "$", since they are like expressions
537             #
538             next if ( $v =~ /\$/ );
539             if ( !defined($done->{$v}) ) {
540                 print("Lang var $v missing from $f\n");
541                 $errors++;
542             }
543         }
544     }
545     return $errors;
546 }
547
548 #
549 # Pedantically check that all the html tags in each language file
550 # match.
551 #
552 sub CheckLangTags
553 {
554     my($en, $enVars) = LangParse("lib/BackupPC/Lang/en.pm");
555     my($errors);
556
557     foreach my $lang ( qw(fr.pm de.pm es.pm it.pm nl.pm) ) {
558         my($d, $dVars) = LangParse("lib/BackupPC/Lang/$lang");
559         foreach my $v1 ( @$en ) {
560             my $v2 = shift(@$d);
561             if ( $v1->{var} ne $v2->{var} ) {
562                 print("Botch: got $lang var $v2->{var} vs en.pm $v1->{var}\n");
563                 exit;
564             }
565             my $t1 = LangTextStrip($v1->{val});
566             my $t2 = LangTextStrip($v2->{val});
567             if ( $t1 ne $t2 ) {
568                 my $i;
569                 for ( $i = 0 ; $i < length($t1) ; $i++ ) {
570                     last if ( substr($t1, 0, $i) ne substr($t2, 0, $i) );
571                 }
572                 print("$v1->{var}: ($i) got en.pm $t1\nvs $lang $t2\n\n");
573                 $errors++;
574             }
575         }
576     }
577     return $errors;
578 }
579
580 sub LangTextStrip
581 {
582     my($t) = @_;
583
584     $t = "" if ( $t !~ /<.*>/ );
585     $t =~ s/^[^<]*</</s;
586     $t =~ s/([}>])[^<]*</$1</g;
587     $t =~ s/>[^<]*$/>/;
588     $t =~ s/(value=)"[^"]*"/$1""/sg;
589     $t =~ s/({h[12]\()"[^"]*"/$1""/g;
590     $t =~ s/ENG[\s\n]*//sg;
591     $t =~ s/^(<<EOF;\n)[^<]*/$1/g;
592     return $t;
593 }
594
595 sub LangParse
596 {
597     my($file) = @_;
598     open(C, $file) || die("can't open $file");
599     binmode(C);
600     my($out, @lang, $var);
601     my $comment = 1;
602     my $allVars = {};
603     my $endLine = undef;
604     while ( <C> ) {
605         if ( /^#/ && !defined($endLine) ) {
606             if ( $comment ) {
607                 $out .= $_;
608             } else {
609                 if ( $out ne "" ) {
610                     $allVars->{$var} = @lang if ( defined($var) );
611                     push(@lang, {
612                         text => $out,
613                         var => $var,
614                     });
615                 }
616                 $var = undef;
617                 $comment = 1;
618                 $out = $_;
619             }
620         } elsif ( /^\s*\$Lang\{([^}]*)/ ) {
621             $comment = 0;
622             if ( defined($var) ) {
623                 $allVars->{$var} = @lang if ( defined($var) );
624                 push(@lang, {
625                     text => $out,
626                     var => $var,
627                 });
628                 $out = $_;
629             } else {
630                 $out .= $_;
631             }
632             $var = $1;
633             $endLine = $1 if ( /^\s*\$Lang\{[^}]*} *= *<<(.*);/ );
634             $endLine = $1 if ( /^\s*\$Lang\{[^}]*} *= *<<'(.*)';/ );
635         } else {
636             $endLine = undef if ( defined($endLine) && /^\Q$endLine[\n\r]*$/ );
637             $out .= $_;
638         }
639     }
640     if ( $out ne "" ) {
641         $allVars->{$var} = @lang if ( defined($var) );
642         push(@lang, {
643             text => $out,
644             var  => $var,
645         });
646     }
647     close(C);
648     foreach my $v ( @lang ) {
649         if ( $v->{text} =~ /\$Lang{$v->{var}}\s*=\s*(.*)/s ) {
650             $v->{val} = $1;
651         }
652     }
653     return (\@lang, $allVars);
654 }