Coverage for modules/org/openteacher/interfaces/qt/testMode/uploader/uploader : 33%
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-2012, Milan Boers # Copyright 2012, Marten de Vries # # 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/>.
"all": x, "teacher": x, "code-documentation": x, "test-suite": x, "default": -1, } self._mm.mods(type="translator"), ) self._mm.mods(type="fileDialogs"), self._mm.mods(type="testModeConnection"), self._mm.mods(type="testMenu"), self._mm.mods(type="load", loads={"otwd": ["words"]}) )
self._modules = set(self._mm.mods(type="modules")).pop() self._fileDialogs = self._modules.default("active", type="fileDialogs")
self._testMenu = self._modules.default("active", type="testMenu").menu
self._action = self._testMenu.addAction(self.priorities["default"]) self._action.triggered.handle(self.upload)
#setup translation try: translator = self._modules.default("active", type="translator") except IndexError: pass else: translator.languageChanged.handle(self._retranslate) self._retranslate()
self.active = True
global _ global ngettext
try: translator = self._modules.default("active", type="translator") except IndexError: _, ngettext = str, lambda a, b, n: a if n == 1 else b else: _, ngettext = translator.gettextFunctions( self._mm.resourcePath("translations") )
self._action.text = _("Upload lesson")
self.active = False
del self._modules del self._fileDialogs del self._testMenu del self._action
# First, login self.connection = self._modules.default("active", type="testModeConnection").getConnection() self.connection.loggedIn.handle(self.upload_)
self.loginid = uuid.uuid4() self.connection.login(self.loginid)
# Check if this is indeed from the request I sent out if loginid == self.loginid: loadModule = self._modules.default("active", type="load", loads={"otwd": ["words"]})
# Get filename result = self._fileDialogs.getLoadPath(os.path.expanduser("~"), [("otwd", loadModule.name)])
# Load the list list = loadModule.load(result)["list"]
# Save it to a json string listJson = superjson.dumps( list, #the list to save separators=(',',':'), #compact encoding default=self._serialize )
fb = self.connection.post("tests",{"list": listJson}) print(fb)
try: return obj.strftime("%Y-%m-%dT%H:%M:%S.%f") except AttributeError: raise TypeError("The type '%s' isn't JSON serializable." % obj.__class__)
|