Changeset 135

Show
Ignore:
Timestamp:
08/29/07 19:38:02 (1 year ago)
Author:
chris
Message:

Show transliterated text instead of raw Amsterdam data in clause navigator.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • lex/trunk/jsp/navclause.jsp

    r114 r135  
    284284                        "       GET bart_gloss "+ 
    285285                        "       [clause "+ 
    286                         "        [word GET lexeme]"+ 
     286                        "        [word GET lexeme, graphical_preformative, " + 
     287                        "         graphical_root_formation, graphical_lexeme, " + 
     288                        "         graphical_verbal_ending, graphical_pron_suffix]" + 
    287289                        "       ]"+ 
    288290                        "      ]"); 
     
    308310                                        MatchedObject word = 
    309311                                                word_iter.next().const_iterator().next(); 
    310                                         lexemes += word.getEMdFValue("lexeme").getString(); 
     312                                                 
     313                                        // lexemes += word.getEMdFValue("lexeme").getString(); 
     314                                        lexemes += HebrewConverter.wordToHtml(word); 
     315                                         
    311316                                        if (word_iter.hasNext())  
     317                                        { 
    312318                                                lexemes += " "; 
     319                                        } 
    313320                                } 
    314321