Diff for /cdli/cdli_files.py between versions 1.80.2.16 and 1.80.2.17

version 1.80.2.16, 2008/01/14 18:54:46 version 1.80.2.17, 2008/01/14 19:15:33
Line 2238  class CDLIRoot(Folder): Line 2238  class CDLIRoot(Folder):
         # split search terms again (for grapheme search with words)          # split search terms again (for grapheme search with words)
         splitwords = dict(((w,self.splitter[indexName].process([w])) for w in words))          splitwords = dict(((w,self.splitter[indexName].process([w])) for w in words))
                           
         for line in file.linesplit():          for line in file.splitlines():
             line = unicodify(line)              line = unicodify(line)
             # ignore lemma and other lines              # ignore lemma and other lines
             if line.lstrip().startswith('#lem:'):              if line.lstrip().startswith('#lem:'):

Removed from v.1.80.2.16  
changed lines
  Added in v.1.80.2.17


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>