summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter von Kaehne <refdoc@gmx.net>2018-05-31 10:21:44 +0000
committerPeter von Kaehne <refdoc@gmx.net>2018-05-31 10:21:44 +0000
commit2c9e49345a39258436eb28f74b0e28d170a0b74d (patch)
treea0d7e1e3cfba8c08b33ab306ec0eae1224422ffc
parentfa49744a2519197736629b5605349cc78166b52b (diff)
downloadsword-tools-2c9e49345a39258436eb28f74b0e28d170a0b74d.tar.gz
support for OSISMorphSegmentation filter added
git-svn-id: https://www.crosswire.org/svn/sword-tools/trunk@527 07627401-56e2-0310-80f4-f8cd0041bdcd
-rwxr-xr-xmodules/conf/confmaker.pl29
1 files changed, 15 insertions, 14 deletions
diff --git a/modules/conf/confmaker.pl b/modules/conf/confmaker.pl
index 6a72c7f..612c4f7 100755
--- a/modules/conf/confmaker.pl
+++ b/modules/conf/confmaker.pl
@@ -189,29 +189,30 @@ for my $header ($doc->getElementsByTagName('header')) {
##GlobalOptionsFilter - prepare
-my @doc_features = ('title', 'note', 'reference', 'q', 'figure', 'rdg');
+my @doc_features = ('title', 'note', 'reference', 'q', 'figure', 'rdg', 'seg');
my @word_features = ('lemma', 'strong', 'gloss', 'morph',);
my @char_features = ('Hebrew Vowel Points', 'Arabic Vowel Points', 'Hebrew Cantillation', 'Greek Accents');
-my %doc_filters = ( 'title' => "OSISHeadings",
- 'note' => "OSISFootnotes",
- 'reference' => "OSISScripref",
- 'gloss' => "OSISGlosses",
- 'lemma' => "OSISLemma",
- 'strong' => "OSISStrongs",
- 'morph' => "OSISMorph",
- 'q' => "OSISRedLetterWords",
- 'rdg' => 'OSISVariants',
- 'enum' => 'OSISEnum',
- 'xlit' => 'OSISXlit'
+my %doc_filters = ( 'title' => "OSISHeadings",
+ 'note' => "OSISFootnotes",
+ 'reference' => "OSISScripref",
+ 'gloss' => "OSISGlosses",
+ 'lemma' => "OSISLemma",
+ 'strong' => "OSISStrongs",
+ 'morph' => "OSISMorph",
+ 'q' => "OSISRedLetterWords",
+ 'rdg' => 'OSISVariants',
+ 'enum' => 'OSISEnum',
+ 'xlit' => 'OSISXlit',
+ 'seg' => 'OSISMorphSegmentation'
);
my %doc_feature = ( 'strong' => 'StrongsNumbers',
'figure' => 'Images',
- 'p' => 'NoParagraphs',
-
+ 'p' => 'NoParagraphs'
+
);
my %diacritics = ( 'Hebrew Vowel Points' => "UTF8HebrewPoints",