-
Notifications
You must be signed in to change notification settings - Fork 0
/
rechtschreibung.py
662 lines (508 loc) · 23 KB
/
rechtschreibung.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
# coding: utf-8
# This file is part of https://github.com/marcus67/rechtschreibung
import string
import console
import ui
import speech
import threading
import copy
import os
import time
import webbrowser as wb
import six
import log
import defaults
import view_punctuation
import spelling_mode
import rulesets
import words
import sentences
import util
import ui_util
import sample_text
import popup
import mode_manager
import mode_selector
import mode_saver
import statistics_view
import config
import app_config
import statistics
import rules_doc_manager
if six.PY3:
from importlib import reload
reload(log)
reload(ui_util)
reload(view_punctuation)
reload(spelling_mode)
reload(rulesets)
reload(words)
reload(sentences)
reload(util)
reload(sample_text)
reload(popup)
reload(mode_manager)
reload(mode_selector)
reload(mode_saver)
reload(statistics_view)
reload(config)
reload(app_config)
reload(statistics)
reload(rules_doc_manager)
global logger
# Location of the application global configuration file. This will be automatically updated after
# any change in the configuration.
CONFIG_FILE = 'etc/rechtschreibung_config.txt'
# Sample configuration file with default values for all settings. This file will be copied to
# the filename above if no configuration file is found (upon the first start of the application).
SAMPLE_CONFIG_FILE = 'etc/sample_rechtschreibung_config.txt'
NAME_NAVIGATION_VIEW = 'top_navigation_view'
NAME_NAVIGATION_VIEW_TOP_LEVEL = 'Regeln'
# Filename of the application icon
IMAGE_URL_RECHTSCHREIBUNG = 'lib/rechtschreibung_32.png'
# URL of the GitHub home of the source code
GITHUB_URL_RECHTSCHREIBUNG = 'https://github.com/marcus67/rechtschreibung'
# Enumeration of the two modes for the method 'load_mode_start':
LOAD_MODE_RULESET = 1 # load a current ruleset for 'testing' new variations
LOAD_MODE_REFERENCE = 2 # load a refernece ruleset for comparison with the current rule set
FULL_FEATURE_VIEWS = [
'label_save_mode',
'button_load_mode',
'button_save_mode',
'textfield_current_mode_name',
'button_open_statistics_view']
VIEW_NAME_LABEL_SAVE_MODE = 'label_save_mode'
class MainViewController ( ui_util.ViewController ):
"""
The view controller handles the top view of the Rechtschreibing application.
"""
def __init__(self, p_document_directory):
"""
Create an instance of the MainViewCntroller
:param conf: instance of the application configuration class
:type conf: app_config.AppConfig
"""
super(MainViewController, self).__init__()
self._document_directory = p_document_directory
fmt = "App is running with document directory %s" % self._document_directory
logger.info(fmt)
self._save_timer = None
# True to activate the saving of configs
self._save_timer_active = False
# Store the text as it was before the most recent ruleset change. This text is used to derive
# the changes between the previous ruleset settings and the current ones.
self.previous_sample_text = None
# Store the text as it right now according the currently active ruleset.
self.current_sample_text = None
# Variable which is true after the specific time in which the changes are visible. So this
# variable is only relevant for conf.state.switch_auto_hide=True.
self.suppress_highlight_changes = False
# Temporary variable to postpone the instant highlighting of changes in the ruleset.
# When active the highlighting is delayed until the text becomes visible again. Note that
# this setting is only relevant for the iPhone mode since in iPad mode the text is always
# visible so changes can always be highlighted immediately.
self.delay_highlight_changes = False
# The rule_doc_manager can generate information texts for rules. They are used in popups which
# which can be activated using the 'i' icons next to the rule switches.
self.rule_doc_manager = rules_doc_manager.RulesDocManager(rules_doc_manager.RULE_DOC_FILE)
# View controller for loading a spelling ruleset
self.select_mode_vc = mode_selector.SpellingModeSelector(self)
# View controller for saving a spelling ruleset
self.select_mode_for_save_vc = mode_saver.SpellingModeSaver(self)
# View controller for displaying the statistical diagrams of the spelling ruleset
self.statistics_view_vc = statistics_view.StatisticsViewController(self)
# View controller for displaying information on rules
self.info_popup = popup.PopupViewController()
# Current reference ruleset. It will be used in highlighting mode HIGHLIGHT_REFERENCE to compare
# the current ruleset. The reference rule set must never set directly but only by calling
# method set_reference_ruleset.
self.reference_mode = None
# Ruleset that had been loaded most recently. Note that the current ruleset (see below) may have
# been changed already since the last load. This ruleset is used to determine whether the current
# ruleset is equivalent to the one most previously loaded. If they match the ruleset name in the view
# will be displayed in black, otherwise it will be grayed out.
self.loaded_mode = spelling_mode.spelling_mode()
# Current ruleset as it is used to display the current text. This one represents the current
# settings of the ruleset switches.
self.current_mode = spelling_mode.spelling_mode()
# This variable holds the selected load mode (see LOAD_MODE_* above) between calls to
# methods load_mode_start and load_mode_finish
self.load_mode_type = None
# Adapt the orientation of the GUI to the format of the physical screen
if ui_util.is_iphone():
self.orientations = ( 'portrait', )
else:
self.orientations = ( 'landscape', )
# Path to the directory where files can be stored. Under Pythonista this
# defaults to the local directory. On the target device this will the document directory.
self._document_directory = '.'
def load_config(self, p_config_handler):
# Store the configuration instance
self._config_handler = p_config_handler
conf_file = os.path.join(self._document_directory, CONFIG_FILE)
self.conf = self._config_handler.read_config_file(conf_file, SAMPLE_CONFIG_FILE)
self.retrieve_from_model(self.conf.state)
def select_reference_rule_set(self):
# Set the first available ruleset reference as the default reference rule set
#self.set_reference_mode(filter(lambda m:m.control.isReference, mode_manager.get_available_modes())[0])
reference_rulesets = [ m for m in mode_manager.get_available_modes(
p_document_directory = self._document_directory) if m.control.isReference ]
self.set_reference_mode(reference_rulesets[0])
def handle_change_in_mode(self):
self.previous_sample_text = self.current_sample_text
self.suppress_highlight_changes = False
self.update_sample_text()
def set_reference_mode(self, mode):
self.reference_mode = mode
tempStoreMode = rulesets.get_default_mode()
rulesets.set_default_mode(self.reference_mode.combination)
self.referenceSampleText = sample_text.get_sample_text()
rulesets.set_default_mode(tempStoreMode)
def handle_button_action(self, name, sender):
BUTTON_PREFIX = 'button_'
INFO_PREFIX = 'info_'
if name == 'button_start_speech':
speech.say(sample_text.get_sample_text(), 'de', 1.0 * self.conf.rechtschreibung.speech_speed / 100.0)
elif name == 'button_stop_speech':
speech.stop()
elif name == 'button_load_mode':
self.load_mode_start(LOAD_MODE_RULESET)
elif name == 'button_load_reference_mode':
self.load_mode_start(LOAD_MODE_REFERENCE)
elif name == 'button_save_mode':
self.save_mode_start()
elif name == 'button_open_app_control_view':
self.open_app_control_view()
elif name == 'button_open_top_navigation_view':
self.open_top_navigation_view()
elif name == 'button_open_statistics_view':
self.open_statistics_view()
elif name == 'button_close_top_navigation_view':
self.close_top_navigation_view()
elif name == 'button_icon_rechtschreibung':
self.button_icon_rechtschreibung()
elif name.startswith(BUTTON_PREFIX):
view_name = name[len(BUTTON_PREFIX):]
child_view = self.find_subview_by_name(view_name)
if child_view is not None:
view = self.find_subview_by_name(NAME_NAVIGATION_VIEW)
view.push_view(child_view)
return 1
else:
logger.warning("cannot find subview '%s" % view_name)
elif name.startswith(INFO_PREFIX):
info_name = name[len(INFO_PREFIX):]
rule_info = self.rule_doc_manager.get_rule_info_by_attr_name(info_name)
if rule_info is not None:
self.info_popup.present(rule_info, close_label=words.schlieszen(c=rulesets.C_BOS))
else:
logger.error("cannot find info text for %s" % info_name)
else:
super(MainViewController, self).handle_button_action(name, sender)
def handle_switch_auto_hide(self, p_value):
self.conf.state.switch_auto_hide = p_value
self._config_handler.mark_configuration_as_changed()
self.suppress_highlight_changes = self.conf.state.switch_auto_hide
self.update_sample_text()
def handle_switch_action(self, sender):
if sender.name == 'switch_auto_hide':
self.handle_switch_auto_hide(p_value=sender.value)
elif ui_util.store_in_model(sender, self.model):
self.handle_change_in_mode()
self.current_mode.mark_as_modified()
else:
super(MainViewController, self).handle_switch_action(sender)
def handle_segmented_control_action(self, sender):
if sender.name == 'segmented_control_highlighting_mode':
self.conf.state.highlighting_mode = sender.selected_index
self._config_handler.mark_configuration_as_changed()
self.update_sample_text()
elif ui_util.store_in_model(sender, self.model):
self.handle_change_in_mode()
self.current_mode.mark_as_modified()
else:
super(MainViewController, self).handle_segmented_control_action(sender)
def handle_named_action(self, name):
if name == 'load_mode_finish':
self.load_mode_finish()
elif name == 'save_mode_finish':
self.save_mode_finish()
else:
super(MainViewController, self).handle_named_action(name)
def open_top_navigation_view(self):
global logger
view = self.find_subview_by_name(NAME_NAVIGATION_VIEW)
if view is None:
logger.warning("open_top_navigation_view: cannot find view %s" % NAME_NAVIGATION_VIEW)
return
self.delay_highlight_changes = True
view.height = ui_util.PORTRAIT_SMALL_VIEW_HEIGHT + ui_util.NAVIGATION_VIEW_TITLE_HEIGHT
view.present(style='sheet' , hide_title_bar=True, orientations=self.orientations)
def close_top_navigation_view(self):
view = self.find_subview_by_name(NAME_NAVIGATION_VIEW)
view.close()
self.delay_highlight_changes = False
self.update_sample_text()
def open_app_control_view(self):
view = self.find_subview_by_name('App-Konfiguration')
view.present(style='sheet', orientations=self.orientations)
def open_statistics_view(self):
self.statistics_view_vc.present(self.referenceSampleText, self.current_sample_text)
def check_activate_hide_timer(self):
if (self.conf.state.switch_auto_hide and self.conf.state.highlighting_mode and not
(self.suppress_highlight_changes or self.delay_highlight_changes)):
self.activate_hide_timer()
def activate_hide_timer(self):
self.hideTimer = threading.Timer(
self.conf.rechtschreibung.auto_hide_delay,
lambda x:x.handle_hide_timer(), [ self ] )
self.hideTimer.start()
def activate_save_timer(self):
self._save_timer_active = True
self.start_save_timer()
def deactivate_save_timer(self):
self._save_timer_active = False
if self._save_timer is not None:
self._save_timer.cancel()
self._save_timer = None
def start_save_timer(self):
if self._save_timer_active:
self._save_timer = threading.Timer(
self.conf.rechtschreibung.save_interval,
lambda x:x.handle_save_timer(), [ self ] )
self._save_timer.start()
def handle_hide_timer(self):
self.suppress_highlight_changes = True
self.update_sample_text()
def check_write_config_file(self):
if self._config_handler is not None:
self._config_handler.write_config_file()
def check_write_current_rule_set(self):
if self.current_mode is not None:
if self.current_mode.control.is_modified:
mode_manager.write_mode(self._document_directory, self.current_mode)
def handle_save_timer(self):
try:
self.check_write_config_file()
except Exception as e:
fmt = "Exception %s while writing status configuration" % str(e)
logger.error(fmt)
try:
self.check_write_current_rule_set()
except Exception as e:
fmt = "Exception %s while writing current rule set" % str(e)
logger.error(fmt)
self.start_save_timer()
def update_sample_text(self, p_initial_update = False):
"""
:type webview: ui.View
"""
# Wait for a fraction of a second so that load_url() above (which seems to be aynchronous)
# has a chance to load the page before update_sample_text() below sets the initial content.
time.sleep(1.0 * self.conf.rechtschreibung.initial_update_sample_text_delay / 1000.0)
self.current_sample_text = sample_text.get_sample_text()
webview = self.view['webview_text_view']
if self.conf.state.highlighting_mode == app_config.HIGHLIGHT_DELTA:
compareText = self.previous_sample_text
else:
compareText = self.referenceSampleText
html_content = util.get_html_content(
compareText, self.current_sample_text,
self.conf.state.highlighting_mode and not self.suppress_highlight_changes)
webview.eval_js('document.getElementById("content").innerHTML = "%s"' % html_content)
webview.set_needs_display()
self.check_activate_hide_timer()
self.update_views()
def update_views(self):
global logger
view = self.find_subview_by_name('segmented_control_highlighting_mode')
view.selected_index = self.conf.state.highlighting_mode
view = self.find_subview_by_name('textfield_reference_mode_name')
view.enabled = False
view.text = self.reference_mode.control.name
view = self.find_subview_by_name('textfield_current_mode_name')
view.enabled = False
view.text = self.loaded_mode.control.name
if self.loaded_mode.combination == self.current_mode.combination:
view.text_color = defaults.COLOR_BLACK
else:
view.text_color = defaults.COLOR_GREY
difference_count_in_rules = util.count_differences_in_dicts(self.reference_mode.combination.__dict__, self.current_mode.combination.__dict__)
view = self.find_subview_by_name('textview_mode_statistics')
fmt = u"Regelabweichungen zur Referenz: %d\nAnzahl Zeichen:%d (Referenz:%d)\nAnzahl verschiedener Zeichen:%d (Referenz:%d)"
reference_text = rulesets.to_upper(self.referenceSampleText)
reference_letter_histogram = statistics.get_letter_histogram(reference_text)
current_text = rulesets.to_upper(self.current_sample_text)
current_letter_histogram = statistics.get_letter_histogram(current_text)
view.text = fmt % ( difference_count_in_rules, len(current_text), len(reference_text), len(current_letter_histogram), len(reference_letter_histogram) )
def load_mode_start(self, load_mode_type):
self.load_mode_type = load_mode_type
self.select_mode_vc.select(
mode_manager.get_available_modes(p_document_directory = self._document_directory),
cancel_label=words.abbrechen(c=rulesets.C_BOS),
close_label=words.schlieszen(c=rulesets.C_BOS),
title = 'Regelsatz laden' if load_mode_type == LOAD_MODE_RULESET else 'Referenz laden')
def activate_mode(self, new_mode):
logger.info("Set working mode '%s'" % new_mode.control.name)
rulesets.set_default_mode(new_mode.combination)
self.loaded_mode = copy.deepcopy(new_mode)
self.current_mode = copy.copy(new_mode)
self.set_model(self.current_mode.combination)
rulesets.set_default_mode(self.current_mode.combination)
self.handle_change_in_mode()
self.conf.state.current_rule_set_name = new_mode.control.name
self._config_handler.mark_configuration_as_changed()
def load_mode_finish(self):
selectedMode = self.select_mode_vc.get_selected_mode()
if selectedMode is not None:
if self.load_mode_type == LOAD_MODE_RULESET:
self.activate_mode(new_mode = selectedMode)
else:
logger.info("Set reference mode '%s'" % selectedMode.control.name)
self.set_reference_mode(copy.deepcopy(selectedMode))
self.update_sample_text()
self.update_views()
self.load_mode_type = None
def save_mode_start(self):
self.select_mode_for_save_vc.select(
mode_manager.get_available_modes(p_document_directory = self._document_directory),
self.current_mode,cancel_label=words.abbrechen(c=rulesets.C_BOS),
save_label=words.speichern(c=rulesets.C_BOS),
overwrite_label=words.ueberschreiben(c=rulesets.C_BOS),
style='sheet')
def save_mode_finish(self):
selectedMode = self.select_mode_for_save_vc.get_selected_mode()
if selectedMode is not None:
mode_manager.write_mode(self._document_directory, selectedMode)
self.loaded_mode = copy.copy(selectedMode)
self.handle_change_in_mode()
def button_icon_rechtschreibung(self):
global logger
logger.info("Opening URL %s" % GITHUB_URL_RECHTSCHREIBUNG)
wb.open(GITHUB_URL_RECHTSCHREIBUNG, modal=True)
def shutdown(self):
speech.stop()
self.check_write_config_file()
self.deactivate_save_timer()
def set_feature_mode(self):
"""
Deactivate the features of the full mode if the app is running in "light" mode
"""
if self.conf.rechtschreibung.full_feature_mode:
fmt = "Running in full feature mode"
logger.info(fmt)
else:
fmt = "Running in restricted feature mode"
logger.info(fmt)
for view_name in FULL_FEATURE_VIEWS:
view = self.find_subview_by_name(view_name)
if view is not None:
view.hidden = True
def load_current_rule_set(self):
filename = mode_manager.get_mode_filename(
p_document_directory = self._document_directory,
modeName = self.conf.state.current_rule_set_name)
if os.path.exists(filename):
mode = mode_manager.read_mode(
p_document_directory = self._document_directory,
modeName = self.conf.state.current_rule_set_name)
else:
mode = spelling_mode.spelling_mode()
self.activate_mode(new_mode = mode)
##### MAIN ######################
def main(p_running_on_target_device = False):
global logger
console.clear()
if p_running_on_target_device:
document_directory = ui_util.get_document_directory()
else:
document_directory = "."
logger = log.open_logging(
'rechtschreibung',
reload=True,
p_document_directory=document_directory)
logger.info("Start application")
default_mode = spelling_mode.spelling_mode()
rulesets.set_default_mode(default_mode.combination)
config_handler = config.ConfigHandler(app_config.AppConfig())
image_rechtschreibung = (
ui.Image.named(IMAGE_URL_RECHTSCHREIBUNG).with_rendering_mode(ui.RENDERING_MODE_ORIGINAL))
my_main_view_controller = MainViewController(p_document_directory=document_directory)
top_navigation_vc = ui_util.ViewController(my_main_view_controller)
navigation_vc = ui_util.ViewController(top_navigation_vc)
navigation_vc.load('top_navigation')
top_navigation_view = ui.NavigationView(navigation_vc.view, title_bar_color = defaults.COLOR_GREY)
top_navigation_view.title_bar_color = defaults.COLOR_LIGHT_GREY
top_navigation_vc.view = top_navigation_view
my_main_view_controller.add_child_controller(NAME_NAVIGATION_VIEW, top_navigation_vc)
top_navigation_view.name = NAME_NAVIGATION_VIEW
if ui_util.is_iphone():
my_main_view_controller.load('rechtschreibung_iphone')
app_control_vc = ui_util.ViewController(my_main_view_controller)
app_control_vc.load('rechtschreibung_app_control_iphone')
my_main_view_controller.add_left_button_item(
NAME_NAVIGATION_VIEW_TOP_LEVEL,
'button_close_top_navigation_view',
ui.ButtonItem(image=ui.Image.named('iob:close_round_32')))
button_item_list = [
ui.ButtonItem(
image=ui.Image.named('lib/ios7_toggle_32.png'),
action=my_main_view_controller.handle_action,
title='button_open_top_navigation_view'),
ui.ButtonItem(
image=ui.Image.named('ionicons-gear-a-32'),
action=my_main_view_controller.handle_action,
title='button_open_app_control_view'),
ui.ButtonItem(
image=image_rechtschreibung,
action=my_main_view_controller.handle_action,
title='button_icon_rechtschreibung'),
]
my_main_view_controller.set_right_button_item_list('Rechtschreibung', button_item_list)
else:
my_main_view_controller.load('rechtschreibung')
my_main_view_controller.add_right_button_item(
'Rechtschreibung',
'button_icon_rechtschreibung',
ui.ButtonItem(image=image_rechtschreibung))
my_main_view_controller.add_subview('view_container_navigation', top_navigation_vc.view)
view = my_main_view_controller.find_subview_by_name('segmented_control_highlighting_mode')
view.action = my_main_view_controller.handle_action
view_controller_capitalization = ui_util.ViewController(my_main_view_controller)
view_controller_capitalization.load('view_capitalization')
view_controller_harmonization = ui_util.ViewController(my_main_view_controller)
view_controller_harmonization.load('view_harmonization')
view = my_main_view_controller.find_subview_by_name('segmented_control_harmonization_elongation')
view.action = my_main_view_controller.handle_action
view_controller_combinations_simplification = ui_util.ViewController(my_main_view_controller)
view_controller_combinations_simplification.load('view_combinations_simplification')
view_controller_combinations_simplification_vowels = ui_util.ViewController(my_main_view_controller)
view_controller_combinations_simplification_vowels.load('view_combinations_simplification_vowels')
view_controller_punctuation = ui_util.ViewController(my_main_view_controller)
view_controller_punctuation.load('view_punctuation')
view_controller_legacy = ui_util.ViewController(my_main_view_controller)
view_controller_legacy.load('view_legacy')
view_controller_layout = ui_util.ViewController(my_main_view_controller)
view_controller_layout.load('view_layout')
view_controller_misc_rules = ui_util.ViewController(my_main_view_controller)
view_controller_misc_rules.load('view_misc_rules')
my_main_view_controller.set_model(default_mode.combination)
my_main_view_controller.load_config(config_handler)
my_main_view_controller.select_reference_rule_set()
my_main_view_controller.set_feature_mode()
my_main_view_controller.load_current_rule_set()
# Set the empty html page for displaying the sample text. The actual content will be set in
# method "update_sample_text". We use an absolute path to load the page so that the relative
# path reference to the style sheet can be derrived by the browser.
text_view = my_main_view_controller.find_subview_by_name('webview_text_view')
rel_path = os.path.join(document_directory, 'etc/text_page.html')
absolute_page_path = 'file:' + os.path.abspath(rel_path)
logger.info('Loading HTML page at %s' % absolute_page_path)
text_view.load_url(absolute_page_path)
my_main_view_controller.update_sample_text(p_initial_update = True)
my_main_view_controller.activate_save_timer()
my_main_view_controller.present('fullscreen', title_bar_color=defaults.COLOR_GREY)
my_main_view_controller.shutdown()
logger.info("Terminate application")
if __name__ == '__main__':
main()