Coverage for modules/org/openteacher/logic/saver/saver : 38%
Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
|
#! /usr/bin/env python3 # -*- coding: utf-8 -*-
# Copyright 2011-2013, Marten de Vries # Copyright 2011, Milan Boers # # This file is part of OpenTeacher. # # OpenTeacher 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 3 of the License, or # (at your option) any later version. # # OpenTeacher is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with OpenTeacher. If not, see <http://www.gnu.org/licenses/>.
super().__init__(*args, **kwargs)
self.module = module self.dataType = dataType self.lesson = lesson self.path = path
self.module.save(self.dataType, self.lesson, self.path)
self._mm.mods(type="save"), ) self._mm.mods(type="lessonTracker"), )
def usableExtensions(self): dataType = self._lessonTracker.currentLesson.dataType
#Collect exts the loader modules support, if there is a gui #module for the data type(s) they can provide result = [] for module in self._modules.sort("active", type="save"): formats = module.saves.get(dataType, {}).items() for ext, name in sorted(formats, key=lambda extAndName: extAndName[1]): result.append((ext, name)) return result
def saveSupport(self): return self._lessonTracker.currentLesson is not None and self.usableExtensions
dataType = self._lessonTracker.currentLesson.dataType savers = [ Saver(module, dataType, self._lessonTracker.currentLesson, path) for module in self._modules.sort("active", type="save") for ext in module.saves.get(dataType, []) if path.endswith(ext) ]
if not savers: raise NotImplementedError()
saver = savers[0] #Save saver.save()
self.active = False
del self._modules del self._lessonTracker
|