Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/gui/lessonplanwidget.py
diff options
context:
space:
mode:
Diffstat (limited to 'gui/lessonplanwidget.py')
-rw-r--r--gui/lessonplanwidget.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/gui/lessonplanwidget.py b/gui/lessonplanwidget.py
index 5b6e021..3d4a100 100644
--- a/gui/lessonplanwidget.py
+++ b/gui/lessonplanwidget.py
@@ -1,3 +1,5 @@
+# Copyright 2007 World Wide Workshop Foundation
+#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
@@ -12,6 +14,9 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
+# If you find this activity useful or end up using parts of it in one of your
+# own creations we would love to hear from you at info@WorldWideWorkshop.org !
+#
import os
import locale
@@ -56,7 +61,7 @@ class LessonPlanWidget(gtk.Notebook):
files = filter(lambda x: os.path.exists(x), files)
# On jhbuild, the first works, on XO image 432 the second works:
try:
- canvas.load_file('file://%s' % files[0], 'text/plain')
+ canvas.load_file('file://%s' % files[0], 'application/x-abiword')
except:
canvas.load_file('file://%s' % files[0])
canvas.view_online_layout()