# HG changeset patch # User casties # Date 1335444305 -7200 # Node ID f0e28d31ebc6748b283bd2a7f3021ded9c417ee2 # Parent f8a5f63eafc0c11298d871207b26e83659d934a2 fixed bug with viewmode xml. diff -r f8a5f63eafc0 -r f0e28d31ebc6 MpdlXmlTextServer.py --- a/MpdlXmlTextServer.py Fri Apr 13 16:55:16 2012 +0200 +++ b/MpdlXmlTextServer.py Thu Apr 26 14:45:05 2012 +0200 @@ -251,6 +251,10 @@ if 'dict' in modes: # dict is called textPollux in the backend textmode = 'textPollux' + elif 'xml' in modes: + # xml mode + textmode = 'xml' + textParams['characterNormalization'] = 'orig' else: # text is default mode textmode = 'text'