excel2moodle 0.4.3__tar.gz → 0.5.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {excel2moodle-0.4.3/excel2moodle.egg-info → excel2moodle-0.5.0}/PKG-INFO +1 -1
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/docs/_build/html/exampleQuestions.html +99 -8
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/docs/_build/html/excel2moodle.core.html +67 -73
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/docs/_build/html/excel2moodle.extra.html +3 -3
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/docs/_build/html/excel2moodle.html +10 -20
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/docs/_build/html/excel2moodle.ui.html +18 -18
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/docs/_build/html/genindex.html +24 -26
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/docs/_build/html/howto.html +25 -17
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/docs/_build/html/index.html +4 -15
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/docs/_build/html/py-modindex.html +3 -3
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/docs/_build/html/search.html +3 -3
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/docs/_build/html/userReference.html +107 -36
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/core/category.py +14 -6
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/core/dataStructure.py +46 -38
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/core/parser.py +6 -1
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/core/question.py +39 -15
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/core/settings.py +6 -5
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/core/validator.py +3 -3
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/logger.py +16 -1
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/question_types/mc.py +3 -3
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/ui/dialogs.py +24 -13
- {excel2moodle-0.4.3 → excel2moodle-0.5.0/excel2moodle.egg-info}/PKG-INFO +1 -1
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/pyproject.toml +6 -1
- excel2moodle-0.5.0/test/test_nfmParsing.py +30 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/test/test_picture.py +16 -14
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/test/test_questionDataGet.py +31 -9
- excel2moodle-0.4.3/test/test_nfmParsing.py +0 -61
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/LICENSE +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/MANIFEST.in +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/README.md +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/__init__.py +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/__main__.py +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/core/__init__.py +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/core/etHelpers.py +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/core/exceptions.py +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/core/globals.py +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/core/numericMultiQ.py +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/core/stringHelpers.py +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/extra/__init__.py +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/extra/equationVerification.py +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/question_types/__init__.py +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/question_types/cloze.py +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/question_types/nf.py +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/question_types/nfm.py +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/ui/UI_equationChecker.py +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/ui/UI_exportSettingsDialog.py +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/ui/UI_mainWindow.py +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/ui/UI_variantDialog.py +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/ui/__init__.py +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/ui/appUi.py +1 -1
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/ui/equationChecker.py +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/ui/treewidget.py +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle/ui/windowDoc.py +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle.egg-info/SOURCES.txt +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle.egg-info/dependency_links.txt +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle.egg-info/entry_points.txt +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle.egg-info/requires.txt +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/excel2moodle.egg-info/top_level.txt +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/setup.cfg +0 -0
- {excel2moodle-0.4.3 → excel2moodle-0.5.0}/test/test_parseQuestion.py +0 -0
@@ -4,7 +4,7 @@
|
|
4
4
|
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
|
5
5
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
7
|
-
<title>Fragenbeispiele — excel2moodle 0.
|
7
|
+
<title>Fragenbeispiele — excel2moodle 0.5.0 documentation</title>
|
8
8
|
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b86133f3" />
|
9
9
|
<link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=19f00094" />
|
10
10
|
|
@@ -15,7 +15,7 @@
|
|
15
15
|
|
16
16
|
<script src="_static/jquery.js?v=5d32c60e"></script>
|
17
17
|
<script src="_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
|
18
|
-
<script src="_static/documentation_options.js?v=
|
18
|
+
<script src="_static/documentation_options.js?v=1dd76d02"></script>
|
19
19
|
<script src="_static/doctools.js?v=9bcbadda"></script>
|
20
20
|
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
|
21
21
|
<script async="async" src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
|
@@ -38,7 +38,7 @@
|
|
38
38
|
excel2moodle
|
39
39
|
</a>
|
40
40
|
<div class="version">
|
41
|
-
0.
|
41
|
+
0.5.0
|
42
42
|
</div>
|
43
43
|
<div role="search">
|
44
44
|
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
|
@@ -211,11 +211,11 @@ Es ist zu erkennen, wie die Antworten texte mit LaTex formatiert werden.</p>
|
|
211
211
|
<p class="admonition-title">Note</p>
|
212
212
|
<p>Die Fragentypen <code class="docutils literal notranslate"><span class="pre">NF</span></code> (numerisches Format) und <code class="docutils literal notranslate"><span class="pre">NFM</span></code> (multi numerisches Format)
|
213
213
|
werden als <code class="docutils literal notranslate"><span class="pre">numerical</span></code> in moodle exportiert. Sie unterscheiden sich daher nicht.
|
214
|
-
Daher ist Die Tabelle oben identisch mit der unten, wenn die
|
214
|
+
Daher ist Die Tabelle oben identisch mit der unten, wenn die Fragenvariante 1 gewählt ist.
|
215
215
|
Ansonsten unterscheiden sich die Zahlenwerte.</p>
|
216
216
|
</div>
|
217
217
|
<p>Die Tabelle <a class="reference internal" href="#tablekategorie1"><span class="std std-ref">Example Kategorie 02 Fragen NF und NFM Flächenberechnung</span></a> zeigt gegenübergestellt eine NF und eine NFM Frage, die beide in Moodle identisch dargestellt werden.
|
218
|
-
Das Ergebnis in Moodle zeigt das Bild unten <a class="reference internal" href="#imgfrage10101"><span class="std std-ref">Frage 1, bzw 2:
|
218
|
+
Das Ergebnis in Moodle zeigt das Bild unten <a class="reference internal" href="#imgfrage10101"><span class="std std-ref">Frage 1, bzw 2: Variante 1 wie sie in Moodle importiert ist.</span></a></p>
|
219
219
|
<span id="tablekategorie1"></span><table class="docutils align-default" id="id3">
|
220
220
|
<caption><span class="caption-text">Example Kategorie 02 Fragen NF und NFM Flächenberechnung</span><a class="headerlink" href="#id3" title="Link to this table"></a></caption>
|
221
221
|
<tbody>
|
@@ -281,9 +281,9 @@ Das Ergebnis in Moodle zeigt das Bild unten <a class="reference internal" href="
|
|
281
281
|
<span id="imgfrage10101"></span><a class="reference internal image-reference" href="_images/moodleDok_frage10101imMoodle.png"><img alt="Die obige Frage wie sie in Moodle erscheint" src="_images/moodleDok_frage10101imMoodle.png" style="width: 100%;" />
|
282
282
|
</a>
|
283
283
|
<figcaption>
|
284
|
-
<p><span class="caption-text">Frage <em>1, bzw 2:
|
284
|
+
<p><span class="caption-text">Frage <em>1, bzw 2: Variante 1</em> wie sie in Moodle importiert ist.</span><a class="headerlink" href="#id4" title="Link to this image"></a></p>
|
285
285
|
<div class="legend">
|
286
|
-
<p>Es handelt sich um die
|
286
|
+
<p>Es handelt sich um die Variante 1, zu erkennen, an dem ersten Satz an Variablen (b = 2,1; l = 3,4)
|
287
287
|
Die normalen Nutzer sehen nur die beiden blauen Bereiche, nicht den Namen der Frage</p>
|
288
288
|
</div>
|
289
289
|
</figcaption>
|
@@ -299,7 +299,98 @@ Beispiel: <code class="docutils literal notranslate"><span class="pre">\(</span>
|
|
299
299
|
</section>
|
300
300
|
<section id="example-of-cloze-questions">
|
301
301
|
<span id="examplecloze"></span><h3>Example of CLOZE questions<a class="headerlink" href="#example-of-cloze-questions" title="Link to this heading"></a></h3>
|
302
|
-
<
|
302
|
+
<table class="docutils align-default" id="id5">
|
303
|
+
<caption><span class="caption-text">Example CLOZE Fragen Flächenberechnung</span><a class="headerlink" href="#id5" title="Link to this table"></a></caption>
|
304
|
+
<tbody>
|
305
|
+
<tr class="row-odd"><td><p>number</p></td>
|
306
|
+
<td><p>1</p></td>
|
307
|
+
</tr>
|
308
|
+
<tr class="row-even"><td><p>type</p></td>
|
309
|
+
<td><p>CLOZE</p></td>
|
310
|
+
</tr>
|
311
|
+
<tr class="row-odd"><td><p>name</p></td>
|
312
|
+
<td><p>Flächenberechnung, Inhalt und Umfang in einer Frage</p></td>
|
313
|
+
</tr>
|
314
|
+
<tr class="row-even"><td><p>text</p></td>
|
315
|
+
<td><p>Bestimmen Sie nacheinander die Unten aufgeführten Fragen.</p></td>
|
316
|
+
</tr>
|
317
|
+
<tr class="row-odd"><td><p>text</p></td>
|
318
|
+
<td><p>Es geht um die Geometrie eines Rechtecks</p></td>
|
319
|
+
</tr>
|
320
|
+
<tr class="row-even"><td><p>text</p></td>
|
321
|
+
<td><p>Verwenden sie konsequent die Einheit (mathrm{[m]})</p></td>
|
322
|
+
</tr>
|
323
|
+
<tr class="row-odd"><td><p>text</p></td>
|
324
|
+
<td><p>Gehen Sie dabei von folgenden Abmessungen des Rechtecks aus:</p></td>
|
325
|
+
</tr>
|
326
|
+
<tr class="row-even"><td><p>bulletPoint</p></td>
|
327
|
+
<td><p>Breite b = {breite} m</p></td>
|
328
|
+
</tr>
|
329
|
+
<tr class="row-odd"><td><p>bulletPoint</p></td>
|
330
|
+
<td><p>Länge l = {lange} m</p></td>
|
331
|
+
</tr>
|
332
|
+
<tr class="row-even"><td><p>breite</p></td>
|
333
|
+
<td><p>3; 2,5; 3,4</p></td>
|
334
|
+
</tr>
|
335
|
+
<tr class="row-odd"><td><p>lange</p></td>
|
336
|
+
<td><p>4; 3,8; 3,6</p></td>
|
337
|
+
</tr>
|
338
|
+
<tr class="row-even"><td><p>picture</p></td>
|
339
|
+
<td><p>true</p></td>
|
340
|
+
</tr>
|
341
|
+
<tr class="row-odd"><td><p>WrongSignCount</p></td>
|
342
|
+
<td><p>50</p></td>
|
343
|
+
</tr>
|
344
|
+
<tr class="row-even"><td></td>
|
345
|
+
<td></td>
|
346
|
+
</tr>
|
347
|
+
<tr class="row-odd"><td><p>Part:1</p></td>
|
348
|
+
<td><p>Bestimmen sie den Flächeninhalt ( A )</p></td>
|
349
|
+
</tr>
|
350
|
+
<tr class="row-even"><td><p>Result:1</p></td>
|
351
|
+
<td><p>breite*lange</p></td>
|
352
|
+
</tr>
|
353
|
+
<tr class="row-odd"><td><p>Points:1</p></td>
|
354
|
+
<td></td>
|
355
|
+
</tr>
|
356
|
+
<tr class="row-even"><td><p>FirstResult:1</p></td>
|
357
|
+
<td><p>12</p></td>
|
358
|
+
</tr>
|
359
|
+
<tr class="row-odd"><td><p>Part:2</p></td>
|
360
|
+
<td><p>Bestimmen sie den Rechteck Umfang</p></td>
|
361
|
+
</tr>
|
362
|
+
<tr class="row-even"><td><p>Result:2</p></td>
|
363
|
+
<td><p>2*(lange+breite)</p></td>
|
364
|
+
</tr>
|
365
|
+
<tr class="row-odd"><td><p>Points:2</p></td>
|
366
|
+
<td></td>
|
367
|
+
</tr>
|
368
|
+
<tr class="row-even"><td><p>FirstResult:2</p></td>
|
369
|
+
<td><p>14</p></td>
|
370
|
+
</tr>
|
371
|
+
<tr class="row-odd"><td><p>Part:3</p></td>
|
372
|
+
<td><p>Bestimmen Sie die Diagonale (d)</p></td>
|
373
|
+
</tr>
|
374
|
+
<tr class="row-even"><td><p>Result:3</p></td>
|
375
|
+
<td><p>sqrt(lange**2+breite**2)</p></td>
|
376
|
+
</tr>
|
377
|
+
<tr class="row-odd"><td><p>First Result:3</p></td>
|
378
|
+
<td><p>5</p></td>
|
379
|
+
</tr>
|
380
|
+
</tbody>
|
381
|
+
</table>
|
382
|
+
<figure class="align-default" id="id6" style="width: 90%">
|
383
|
+
<a class="reference internal image-reference" href="_images/moodleDok_frageCLOZE.png"><img alt="Die obige Frage wie sie in Moodle erscheint" src="_images/moodleDok_frageCLOZE.png" style="width: 100%;" />
|
384
|
+
</a>
|
385
|
+
<figcaption>
|
386
|
+
<p><span class="caption-text">Zu sehen ist die CLOZE Frage. Es handelt sich um die gleichen Fragen wie bei der NFM Frage,
|
387
|
+
nur ist hier noch ein zweiter Teil angefügt, der nach dem Rechteckumfang fragt.</span><a class="headerlink" href="#id6" title="Link to this image"></a></p>
|
388
|
+
<div class="legend">
|
389
|
+
<p>An der Bewertung ist zu sehen, dass <code class="docutils literal notranslate"><span class="pre">wrongSignCount=50</span></code> zu der halben Punktzahl bei der Antwort mit falschem Vorzeichen führt.
|
390
|
+
Außerdem ist zu sehen, dass <span class="math notranslate nohighlight">\(1\%\)</span> Antwort Toleranz angewendet wurde.</p>
|
391
|
+
</div>
|
392
|
+
</figcaption>
|
393
|
+
</figure>
|
303
394
|
</section>
|
304
395
|
</section>
|
305
396
|
<section id="example-for-a-mc-question">
|