From 2c9e49345a39258436eb28f74b0e28d170a0b74d Mon Sep 17 00:00:00 2001 From: Peter von Kaehne Date: Thu, 31 May 2018 10:21:44 +0000 Subject: support for OSISMorphSegmentation filter added git-svn-id: https://www.crosswire.org/svn/sword-tools/trunk@527 07627401-56e2-0310-80f4-f8cd0041bdcd --- modules/conf/confmaker.pl | 29 +++++++++++++++-------------- 1 file 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", -- cgit