diff options
author | Peter von Kaehne <refdoc@gmx.net> | 2011-04-16 22:45:35 +0000 |
---|---|---|
committer | Peter von Kaehne <refdoc@gmx.net> | 2011-04-16 22:45:35 +0000 |
commit | ad82002718a1300b639f31d90d6c10883f70d15b (patch) | |
tree | 32a45e8ed0fafb95eb50164af3ae39d940fd8a22 /modules/conf/confmaker.pl | |
parent | e706ded398f7536834c798689545d7c00e5feffb (diff) | |
download | sword-tools-ad82002718a1300b639f31d90d6c10883f70d15b.tar.gz |
some mistakes, typos etc corrected
git-svn-id: https://www.crosswire.org/svn/sword-tools/trunk@320 07627401-56e2-0310-80f4-f8cd0041bdcd
Diffstat (limited to 'modules/conf/confmaker.pl')
-rwxr-xr-x | modules/conf/confmaker.pl | 31 |
1 files changed, 15 insertions, 16 deletions
diff --git a/modules/conf/confmaker.pl b/modules/conf/confmaker.pl index ef69986..9ad3d09 100755 --- a/modules/conf/confmaker.pl +++ b/modules/conf/confmaker.pl @@ -127,43 +127,42 @@ foreach my $f(@word_features) { # Assemble and print out print OUTF "[".$doc_name."]\n"; -print OUTF "Path = modules/texts/rawtext/".$doc_name."\n"; -print OUTF "Description = This is the ".$doc_name." Bible in ".I18N::LangTags::List::name($doc_lang)." language\n"; +print OUTF "Path=./modules/texts/rawtext/".$doc_name."\n"; +print OUTF "Description=This is the ".$doc_name." Bible in ".I18N::LangTags::List::name($doc_lang)." language\n"; if ($doc_type =~ m/Bible/) { print OUTF "ModDrv = rawText\n"} -else {print OUTF "ModDrv = rawUnknown\n"} +else {print OUTF "ModDrv=rawUnknown\n"} -print OUTF "Lang = ".$doc_lang."\n"; +print OUTF "Lang=".$doc_lang."\n"; foreach (@doc_features) { if ($doc_has_feature{$_}) { - print OUTF "GlobalOptionFilter = ".$doc_filters{$_}."\n" + print OUTF "GlobalOptionFilter=".$doc_filters{$_}."\n" } } foreach (@word_features) { if ($doc_has_feature{$_}) { - print OUTF "GlobalOptionFilter = ".$doc_filters{$_}."\n" + print OUTF "GlobalOptionFilter=".$doc_filters{$_}."\n" } } foreach (@doc_features) { if ($doc_has_feature{$_} && exists $doc_feature{$_}) { - print OUTF "Feature = ".$doc_feature{$_}."\n" + print OUTF "Feature=".$doc_feature{$_}."\n" } } foreach (@word_features) { if ($doc_has_feature{$_} && exists $doc_feature{$_}) { - print OUTF "Feature = ".$doc_feature{$_}."\n" + print OUTF "Feature=".$doc_feature{$_}."\n" } } -print OUTF "DistributionLicense = copyrighted. Do not distribute\n"; -print OUTF "About = This is the ".$doc_name." Bible in ".I18N::LangTags::List::name($doc_lang)." language\n"; -print OUTF "Description = This is the ".$doc_name." Bible in ".I18N::LangTags::List::name($doc_lang)." language\n"; -print OUTF "Encoding = UTF-8\n"; -print OUTF "SourceType = OSIS\n"; -print OUTF "Version = 1.0\n"; -print OUTF "History = 1.0 First release\n"; -print OUTF "LCSH = ".$doc_type.".".I18N::LangTags::List::name($doc_lang)."\n"; +print OUTF "DistributionLicense=copyrighted. Do not distribute\n"; +print OUTF "About=This is the ".$doc_name." Bible in ".I18N::LangTags::List::name($doc_lang)." language\n"; +print OUTF "Encoding=UTF-8\n"; +print OUTF "SourceType=OSIS\n"; +print OUTF "Version=1.0\n"; +print OUTF "History=1.0 First release\n"; +print OUTF "LCSH=".$doc_type.".".I18N::LangTags::List::name($doc_lang)."\n"; |