excel2moodle 0.4.4__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.
Files changed (60) hide show
  1. {excel2moodle-0.4.4/excel2moodle.egg-info → excel2moodle-0.5.0}/PKG-INFO +1 -1
  2. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/docs/_build/html/exampleQuestions.html +40 -15
  3. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/docs/_build/html/excel2moodle.core.html +31 -20
  4. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/docs/_build/html/excel2moodle.extra.html +3 -3
  5. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/docs/_build/html/excel2moodle.html +6 -4
  6. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/docs/_build/html/excel2moodle.ui.html +3 -3
  7. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/docs/_build/html/genindex.html +15 -13
  8. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/docs/_build/html/howto.html +3 -3
  9. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/docs/_build/html/index.html +4 -4
  10. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/docs/_build/html/py-modindex.html +3 -3
  11. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/docs/_build/html/search.html +3 -3
  12. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/docs/_build/html/userReference.html +65 -52
  13. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/core/category.py +14 -6
  14. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/core/dataStructure.py +46 -39
  15. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/core/parser.py +6 -1
  16. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/core/question.py +39 -15
  17. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/core/settings.py +6 -5
  18. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/logger.py +16 -1
  19. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/question_types/mc.py +3 -3
  20. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/ui/dialogs.py +24 -13
  21. {excel2moodle-0.4.4 → excel2moodle-0.5.0/excel2moodle.egg-info}/PKG-INFO +1 -1
  22. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/pyproject.toml +6 -1
  23. excel2moodle-0.5.0/test/test_nfmParsing.py +30 -0
  24. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/test/test_picture.py +16 -14
  25. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/test/test_questionDataGet.py +31 -9
  26. excel2moodle-0.4.4/test/test_nfmParsing.py +0 -61
  27. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/LICENSE +0 -0
  28. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/MANIFEST.in +0 -0
  29. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/README.md +0 -0
  30. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/__init__.py +0 -0
  31. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/__main__.py +0 -0
  32. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/core/__init__.py +0 -0
  33. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/core/etHelpers.py +0 -0
  34. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/core/exceptions.py +0 -0
  35. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/core/globals.py +0 -0
  36. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/core/numericMultiQ.py +0 -0
  37. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/core/stringHelpers.py +0 -0
  38. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/core/validator.py +0 -0
  39. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/extra/__init__.py +0 -0
  40. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/extra/equationVerification.py +0 -0
  41. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/question_types/__init__.py +0 -0
  42. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/question_types/cloze.py +0 -0
  43. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/question_types/nf.py +0 -0
  44. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/question_types/nfm.py +0 -0
  45. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/ui/UI_equationChecker.py +0 -0
  46. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/ui/UI_exportSettingsDialog.py +0 -0
  47. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/ui/UI_mainWindow.py +0 -0
  48. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/ui/UI_variantDialog.py +0 -0
  49. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/ui/__init__.py +0 -0
  50. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/ui/appUi.py +1 -1
  51. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/ui/equationChecker.py +0 -0
  52. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/ui/treewidget.py +0 -0
  53. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle/ui/windowDoc.py +0 -0
  54. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle.egg-info/SOURCES.txt +0 -0
  55. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle.egg-info/dependency_links.txt +0 -0
  56. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle.egg-info/entry_points.txt +0 -0
  57. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle.egg-info/requires.txt +0 -0
  58. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/excel2moodle.egg-info/top_level.txt +0 -0
  59. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/setup.cfg +0 -0
  60. {excel2moodle-0.4.4 → excel2moodle-0.5.0}/test/test_parseQuestion.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: excel2moodle
3
- Version: 0.4.4
3
+ Version: 0.5.0
4
4
  Summary: A package for converting questions from a spreadsheet, to valid moodle-xml
5
5
  Author: Jakob Bosse
6
6
  License-Expression: GPL-3.0-or-later
@@ -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 &mdash; excel2moodle 0.4.3 documentation</title>
7
+ <title>Fragenbeispiele &mdash; 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=5bfaad31"></script>
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.4.3
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 Fragenversion 1 gewählt ist.
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: Version 1 wie sie in Moodle importiert ist.</span></a></p>
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: Version 1</em> wie sie in Moodle importiert ist.</span><a class="headerlink" href="#id4" title="Link to this image"></a></p>
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 Version 1, zu erkennen, an dem ersten Satz an Variablen (b = 2,1; l = 3,4)
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>
@@ -330,10 +330,16 @@ Beispiel: <code class="docutils literal notranslate"><span class="pre">\(</span>
330
330
  <td><p>Länge l = {lange} m</p></td>
331
331
  </tr>
332
332
  <tr class="row-even"><td><p>breite</p></td>
333
- <td><p>2,1; 2,5; 3,4</p></td>
333
+ <td><p>3; 2,5; 3,4</p></td>
334
334
  </tr>
335
335
  <tr class="row-odd"><td><p>lange</p></td>
336
- <td><p>3,4; 3,8; 3,6</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>
337
343
  </tr>
338
344
  <tr class="row-even"><td></td>
339
345
  <td></td>
@@ -344,17 +350,32 @@ Beispiel: <code class="docutils literal notranslate"><span class="pre">\(</span>
344
350
  <tr class="row-even"><td><p>Result:1</p></td>
345
351
  <td><p>breite*lange</p></td>
346
352
  </tr>
347
- <tr class="row-odd"><td><p>FirstResult:1</p></td>
348
- <td><p>7,14</p></td>
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>
349
358
  </tr>
350
- <tr class="row-even"><td><p>Part:2</p></td>
351
- <td><p>Bestimmen sie den Rechteck Umfang ( U )</p></td>
359
+ <tr class="row-odd"><td><p>Part:2</p></td>
360
+ <td><p>Bestimmen sie den Rechteck Umfang</p></td>
352
361
  </tr>
353
- <tr class="row-odd"><td><p>Result:2</p></td>
362
+ <tr class="row-even"><td><p>Result:2</p></td>
354
363
  <td><p>2*(lange+breite)</p></td>
355
364
  </tr>
365
+ <tr class="row-odd"><td><p>Points:2</p></td>
366
+ <td></td>
367
+ </tr>
356
368
  <tr class="row-even"><td><p>FirstResult:2</p></td>
357
- <td><p>11</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>
358
379
  </tr>
359
380
  </tbody>
360
381
  </table>
@@ -364,6 +385,10 @@ Beispiel: <code class="docutils literal notranslate"><span class="pre">\(</span>
364
385
  <figcaption>
365
386
  <p><span class="caption-text">Zu sehen ist die CLOZE Frage. Es handelt sich um die gleichen Fragen wie bei der NFM Frage,
366
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>
367
392
  </figcaption>
368
393
  </figure>
369
394
  </section>
@@ -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>excel2moodle.core package &mdash; excel2moodle 0.4.3 documentation</title>
7
+ <title>excel2moodle.core package &mdash; 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=5bfaad31"></script>
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 src="_static/js/theme.js"></script>
@@ -37,7 +37,7 @@
37
37
  excel2moodle
38
38
  </a>
39
39
  <div class="version">
40
- 0.4.3
40
+ 0.5.0
41
41
  </div>
42
42
  <div role="search">
43
43
  <form id="rtd-search-form" class="wy-form" action="search.html" method="get">
@@ -62,6 +62,7 @@
62
62
  <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.core.category.Category.getCategoryHeader"><code class="docutils literal notranslate"><span class="pre">Category.getCategoryHeader()</span></code></a></li>
63
63
  <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.core.category.Category.id"><code class="docutils literal notranslate"><span class="pre">Category.id</span></code></a></li>
64
64
  <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.core.category.Category.name"><code class="docutils literal notranslate"><span class="pre">Category.name</span></code></a></li>
65
+ <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.core.category.Category.points"><code class="docutils literal notranslate"><span class="pre">Category.points</span></code></a></li>
65
66
  </ul>
66
67
  </li>
67
68
  </ul>
@@ -185,11 +186,13 @@
185
186
  <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.core.question.Question.mandatoryTags"><code class="docutils literal notranslate"><span class="pre">Question.mandatoryTags</span></code></a></li>
186
187
  <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.core.question.Question.name"><code class="docutils literal notranslate"><span class="pre">Question.name</span></code></a></li>
187
188
  <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.core.question.Question.optionalTags"><code class="docutils literal notranslate"><span class="pre">Question.optionalTags</span></code></a></li>
189
+ <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.core.question.Question.points"><code class="docutils literal notranslate"><span class="pre">Question.points</span></code></a></li>
188
190
  <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.core.question.Question.qtype"><code class="docutils literal notranslate"><span class="pre">Question.qtype</span></code></a></li>
189
191
  <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.core.question.Question.standardTags"><code class="docutils literal notranslate"><span class="pre">Question.standardTags</span></code></a></li>
190
192
  </ul>
191
193
  </li>
192
194
  <li class="toctree-l3"><a class="reference internal" href="#excel2moodle.core.question.QuestionData"><code class="docutils literal notranslate"><span class="pre">QuestionData</span></code></a><ul>
195
+ <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.core.question.QuestionData.categoryFallbacks"><code class="docutils literal notranslate"><span class="pre">QuestionData.categoryFallbacks</span></code></a></li>
193
196
  <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.core.question.QuestionData.get"><code class="docutils literal notranslate"><span class="pre">QuestionData.get()</span></code></a></li>
194
197
  </ul>
195
198
  </li>
@@ -241,7 +244,6 @@
241
244
  <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.core.settings.Tags.TOLERANCE"><code class="docutils literal notranslate"><span class="pre">Tags.TOLERANCE</span></code></a></li>
242
245
  <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.core.settings.Tags.TRUE"><code class="docutils literal notranslate"><span class="pre">Tags.TRUE</span></code></a></li>
243
246
  <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.core.settings.Tags.TYPE"><code class="docutils literal notranslate"><span class="pre">Tags.TYPE</span></code></a></li>
244
- <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.core.settings.Tags.VERSION"><code class="docutils literal notranslate"><span class="pre">Tags.VERSION</span></code></a></li>
245
247
  <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.core.settings.Tags.WRONGSIGNPERCENT"><code class="docutils literal notranslate"><span class="pre">Tags.WRONGSIGNPERCENT</span></code></a></li>
246
248
  <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.core.settings.Tags.default"><code class="docutils literal notranslate"><span class="pre">Tags.default</span></code></a></li>
247
249
  <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.core.settings.Tags.full"><code class="docutils literal notranslate"><span class="pre">Tags.full</span></code></a></li>
@@ -300,7 +302,7 @@
300
302
  <span id="excel2moodle-core-category-module"></span><h2>excel2moodle.core.category module<a class="headerlink" href="#module-excel2moodle.core.category" title="Link to this heading"></a></h2>
301
303
  <dl class="py class">
302
304
  <dt class="sig sig-object py" id="excel2moodle.core.category.Category">
303
- <em class="property"><span class="k"><span class="pre">class</span></span><span class="w"> </span></em><span class="sig-prename descclassname"><span class="pre">excel2moodle.core.category.</span></span><span class="sig-name descname"><span class="pre">Category</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">name</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">description</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">dataframe</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">points</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">0</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">version</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">0</span></span></em><span class="sig-paren">)</span><a class="reference internal" href="_modules/excel2moodle/core/category.html#Category"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#excel2moodle.core.category.Category" title="Link to this definition"></a></dt>
305
+ <em class="property"><span class="k"><span class="pre">class</span></span><span class="w"> </span></em><span class="sig-prename descclassname"><span class="pre">excel2moodle.core.category.</span></span><span class="sig-name descname"><span class="pre">Category</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">name</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">description</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">dataframe</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">settings</span></span></em><span class="sig-paren">)</span><a class="reference internal" href="_modules/excel2moodle/core/category.html#Category"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#excel2moodle.core.category.Category" title="Link to this definition"></a></dt>
304
306
  <dd><p>Bases: <code class="xref py py-class docutils literal notranslate"><span class="pre">object</span></code></p>
305
307
  <p>Category stores a list of question. And holds shared information for all.</p>
306
308
  <dl class="field-list simple">
@@ -309,8 +311,7 @@
309
311
  <li><p><strong>name</strong> (<em>str</em>)</p></li>
310
312
  <li><p><strong>description</strong> (<em>str</em>)</p></li>
311
313
  <li><p><strong>dataframe</strong> (<em>DataFrame</em>)</p></li>
312
- <li><p><strong>points</strong> (<em>float</em>)</p></li>
313
- <li><p><strong>version</strong> (<em>int</em>)</p></li>
314
+ <li><p><strong>settings</strong> (<em>dict</em><em>[</em><em>str</em><em>, </em><em>float</em><em> | </em><em>str</em><em>]</em>)</p></li>
314
315
  </ul>
315
316
  </dd>
316
317
  </dl>
@@ -335,6 +336,11 @@
335
336
  <em class="property"><span class="k"><span class="pre">property</span></span><span class="w"> </span></em><span class="sig-name descname"><span class="pre">name</span></span><em class="property"><span class="p"><span class="pre">:</span></span><span class="w"> </span><span class="pre">str</span></em><a class="headerlink" href="#excel2moodle.core.category.Category.name" title="Link to this definition"></a></dt>
336
337
  <dd></dd></dl>
337
338
 
339
+ <dl class="py property">
340
+ <dt class="sig sig-object py" id="excel2moodle.core.category.Category.points">
341
+ <em class="property"><span class="k"><span class="pre">property</span></span><span class="w"> </span></em><span class="sig-name descname"><span class="pre">points</span></span><em class="property"><span class="p"><span class="pre">:</span></span><span class="w"> </span><span class="pre">float</span></em><a class="headerlink" href="#excel2moodle.core.category.Category.points" title="Link to this definition"></a></dt>
342
+ <dd></dd></dl>
343
+
338
344
  </dd></dl>
339
345
 
340
346
  </section>
@@ -517,7 +523,7 @@ If the data is valid, the corresponding parser is fed with the data and run.</p>
517
523
  </ul>
518
524
  </dd>
519
525
  <dt class="field-even">Return type<span class="colon">:</span></dt>
520
- <dd class="field-even"><p><span class="sphinx_autodoc_typehints-type"><code class="xref py py-obj docutils literal notranslate"><span class="pre">None</span></code></span></p>
526
+ <dd class="field-even"><p><span class="sphinx_autodoc_typehints-type"><a class="reference internal" href="#excel2moodle.core.question.Question" title="excel2moodle.core.question.Question"><code class="xref py py-class docutils literal notranslate"><span class="pre">Question</span></code></a> | <code class="xref py py-obj docutils literal notranslate"><span class="pre">None</span></code></span></p>
521
527
  </dd>
522
528
  <dt class="field-odd">Parameters<span class="colon">:</span></dt>
523
529
  <dd class="field-odd"><ul class="simple">
@@ -530,7 +536,7 @@ If the data is valid, the corresponding parser is fed with the data and run.</p>
530
536
 
531
537
  <dl class="py attribute">
532
538
  <dt class="sig sig-object py" id="excel2moodle.core.dataStructure.QuestionDB.signals">
533
- <span class="sig-name descname"><span class="pre">signals</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">&lt;excel2moodle.core.dataStructure.QuestionDBSignals(0x562c77ef9c20)&gt;</span></em><a class="headerlink" href="#excel2moodle.core.dataStructure.QuestionDB.signals" title="Link to this definition"></a></dt>
539
+ <span class="sig-name descname"><span class="pre">signals</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">&lt;excel2moodle.core.dataStructure.QuestionDBSignals(0x564e5d816430)&gt;</span></em><a class="headerlink" href="#excel2moodle.core.dataStructure.QuestionDB.signals" title="Link to this definition"></a></dt>
534
540
  <dd></dd></dl>
535
541
 
536
542
  <dl class="py property">
@@ -1159,8 +1165,8 @@ if no Exceptions are raised, <code class="docutils literal notranslate"><span cl
1159
1165
  <dl class="py method">
1160
1166
  <dt class="sig sig-object py" id="excel2moodle.core.question.Picture.getImgId">
1161
1167
  <span class="sig-name descname"><span class="pre">getImgId</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">imgKey</span></span></em><span class="sig-paren">)</span><a class="reference internal" href="_modules/excel2moodle/core/question.html#Picture.getImgId"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#excel2moodle.core.question.Picture.getImgId" title="Link to this definition"></a></dt>
1162
- <dd><p>Get the image ID and width based on the given key.
1163
- The key should either be the full ID (as the question) or only the question Num.
1168
+ <dd><p>Get the image ID and width based on the given key.</p>
1169
+ <p>The key should either be the full ID (as the question) or only the question Num.
1164
1170
  If only the number is given, the category.id is prepended.
1165
1171
  The width should be specified by <cite>ID:width:XX</cite>. where xx is the px value.</p>
1166
1172
  <dl class="field-list simple">
@@ -1177,14 +1183,13 @@ The width should be specified by <cite>ID:width:XX</cite>. where xx is the px va
1177
1183
 
1178
1184
  <dl class="py class">
1179
1185
  <dt class="sig sig-object py" id="excel2moodle.core.question.Question">
1180
- <em class="property"><span class="k"><span class="pre">class</span></span><span class="w"> </span></em><span class="sig-prename descclassname"><span class="pre">excel2moodle.core.question.</span></span><span class="sig-name descname"><span class="pre">Question</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">category</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">rawData</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">parent</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">points</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">0</span></span></em><span class="sig-paren">)</span><a class="reference internal" href="_modules/excel2moodle/core/question.html#Question"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#excel2moodle.core.question.Question" title="Link to this definition"></a></dt>
1186
+ <em class="property"><span class="k"><span class="pre">class</span></span><span class="w"> </span></em><span class="sig-prename descclassname"><span class="pre">excel2moodle.core.question.</span></span><span class="sig-name descname"><span class="pre">Question</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">category</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">rawData</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">parent</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="reference internal" href="_modules/excel2moodle/core/question.html#Question"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#excel2moodle.core.question.Question" title="Link to this definition"></a></dt>
1181
1187
  <dd><p>Bases: <code class="xref py py-class docutils literal notranslate"><span class="pre">object</span></code></p>
1182
1188
  <dl class="field-list simple">
1183
1189
  <dt class="field-odd">Parameters<span class="colon">:</span></dt>
1184
1190
  <dd class="field-odd"><ul class="simple">
1185
1191
  <li><p><strong>category</strong> (<a class="reference internal" href="#excel2moodle.core.category.Category" title="excel2moodle.core.category.Category"><em>Category</em></a>)</p></li>
1186
1192
  <li><p><strong>rawData</strong> (<a class="reference internal" href="#excel2moodle.core.question.QuestionData" title="excel2moodle.core.question.QuestionData"><em>QuestionData</em></a>)</p></li>
1187
- <li><p><strong>points</strong> (<em>float</em>)</p></li>
1188
1193
  </ul>
1189
1194
  </dd>
1190
1195
  </dl>
@@ -1224,6 +1229,11 @@ The width should be specified by <cite>ID:width:XX</cite>. where xx is the px va
1224
1229
  <span class="sig-name descname"><span class="pre">optionalTags</span></span><em class="property"><span class="p"><span class="pre">:</span></span><span class="w"> </span><code class="xref py py-data docutils literal notranslate"><span class="pre">ClassVar</span></code><span class="pre">[</span><code class="xref py py-class docutils literal notranslate"><span class="pre">dict</span></code><span class="pre">[</span><a class="reference internal" href="#excel2moodle.core.settings.Tags" title="excel2moodle.core.settings.Tags"><code class="xref py py-class docutils literal notranslate"><span class="pre">Tags</span></code></a><span class="pre">,</span> <code class="xref py py-class docutils literal notranslate"><span class="pre">type</span></code> <span class="pre">|</span> <span class="pre">]]</span></em><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">{Tags.PICTURE:</span> <span class="pre">int</span> <span class="pre">|</span> <span class="pre">str}</span></em><a class="headerlink" href="#excel2moodle.core.question.Question.optionalTags" title="Link to this definition"></a></dt>
1225
1230
  <dd></dd></dl>
1226
1231
 
1232
+ <dl class="py property">
1233
+ <dt class="sig sig-object py" id="excel2moodle.core.question.Question.points">
1234
+ <em class="property"><span class="k"><span class="pre">property</span></span><span class="w"> </span></em><span class="sig-name descname"><span class="pre">points</span></span><em class="property"><span class="p"><span class="pre">:</span></span><span class="w"> </span><span class="pre">float</span></em><a class="headerlink" href="#excel2moodle.core.question.Question.points" title="Link to this definition"></a></dt>
1235
+ <dd></dd></dl>
1236
+
1227
1237
  <dl class="py property">
1228
1238
  <dt class="sig sig-object py" id="excel2moodle.core.question.Question.qtype">
1229
1239
  <em class="property"><span class="k"><span class="pre">property</span></span><span class="w"> </span></em><span class="sig-name descname"><span class="pre">qtype</span></span><em class="property"><span class="p"><span class="pre">:</span></span><span class="w"> </span><span class="pre">str</span></em><a class="headerlink" href="#excel2moodle.core.question.Question.qtype" title="Link to this definition"></a></dt>
@@ -1240,10 +1250,16 @@ The width should be specified by <cite>ID:width:XX</cite>. where xx is the px va
1240
1250
  <dt class="sig sig-object py" id="excel2moodle.core.question.QuestionData">
1241
1251
  <em class="property"><span class="k"><span class="pre">class</span></span><span class="w"> </span></em><span class="sig-prename descclassname"><span class="pre">excel2moodle.core.question.</span></span><span class="sig-name descname"><span class="pre">QuestionData</span></span><a class="reference internal" href="_modules/excel2moodle/core/question.html#QuestionData"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#excel2moodle.core.question.QuestionData" title="Link to this definition"></a></dt>
1242
1252
  <dd><p>Bases: <code class="xref py py-class docutils literal notranslate"><span class="pre">dict</span></code></p>
1253
+ <dl class="py property">
1254
+ <dt class="sig sig-object py" id="excel2moodle.core.question.QuestionData.categoryFallbacks">
1255
+ <em class="property"><span class="k"><span class="pre">property</span></span><span class="w"> </span></em><span class="sig-name descname"><span class="pre">categoryFallbacks</span></span><em class="property"><span class="p"><span class="pre">:</span></span><span class="w"> </span><span class="pre">dict</span><span class="p"><span class="pre">[</span></span><span class="pre">str</span><span class="p"><span class="pre">,</span></span><span class="w"> </span><span class="pre">float</span><span class="w"> </span><span class="p"><span class="pre">|</span></span><span class="w"> </span><span class="pre">str</span><span class="p"><span class="pre">]</span></span></em><a class="headerlink" href="#excel2moodle.core.question.QuestionData.categoryFallbacks" title="Link to this definition"></a></dt>
1256
+ <dd></dd></dl>
1257
+
1243
1258
  <dl class="py method">
1244
1259
  <dt class="sig sig-object py" id="excel2moodle.core.question.QuestionData.get">
1245
1260
  <span class="sig-name descname"><span class="pre">get</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">key</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">default</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="reference internal" href="_modules/excel2moodle/core/question.html#QuestionData.get"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#excel2moodle.core.question.QuestionData.get" title="Link to this definition"></a></dt>
1246
- <dd><p>Return the value for key if key is in the dictionary, else default.</p>
1261
+ <dd><p>Get the value for <cite>key</cite> with correct type.</p>
1262
+ <p>If <cite>key == Tags.TOLERANCE</cite> the tolerance is checked to be a perc. fraction</p>
1247
1263
  <dl class="field-list simple">
1248
1264
  <dt class="field-odd">Parameters<span class="colon">:</span></dt>
1249
1265
  <dd class="field-odd"><p><strong>key</strong> (<a class="reference internal" href="#excel2moodle.core.settings.Tags" title="excel2moodle.core.settings.Tags"><em>Tags</em></a>)</p>
@@ -1517,14 +1533,9 @@ Further, this Enum defines, which type a setting has to be.</p>
1517
1533
  <span class="sig-name descname"><span class="pre">TYPE</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">'type'</span></em><a class="headerlink" href="#excel2moodle.core.settings.Tags.TYPE" title="Link to this definition"></a></dt>
1518
1534
  <dd></dd></dl>
1519
1535
 
1520
- <dl class="py attribute">
1521
- <dt class="sig sig-object py" id="excel2moodle.core.settings.Tags.VERSION">
1522
- <span class="sig-name descname"><span class="pre">VERSION</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">'version'</span></em><a class="headerlink" href="#excel2moodle.core.settings.Tags.VERSION" title="Link to this definition"></a></dt>
1523
- <dd></dd></dl>
1524
-
1525
1536
  <dl class="py attribute">
1526
1537
  <dt class="sig sig-object py" id="excel2moodle.core.settings.Tags.WRONGSIGNPERCENT">
1527
- <span class="sig-name descname"><span class="pre">WRONGSIGNPERCENT</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">'wrongsignpercentage'</span></em><a class="headerlink" href="#excel2moodle.core.settings.Tags.WRONGSIGNPERCENT" title="Link to this definition"></a></dt>
1538
+ <span class="sig-name descname"><span class="pre">WRONGSIGNPERCENT</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">'wrongsignpercent'</span></em><a class="headerlink" href="#excel2moodle.core.settings.Tags.WRONGSIGNPERCENT" title="Link to this definition"></a></dt>
1528
1539
  <dd></dd></dl>
1529
1540
 
1530
1541
  <dl class="py property">
@@ -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>excel2moodle.extra package &mdash; excel2moodle 0.4.3 documentation</title>
7
+ <title>excel2moodle.extra package &mdash; 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=5bfaad31"></script>
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 src="_static/js/theme.js"></script>
@@ -37,7 +37,7 @@
37
37
  excel2moodle
38
38
  </a>
39
39
  <div class="version">
40
- 0.4.3
40
+ 0.5.0
41
41
  </div>
42
42
  <div role="search">
43
43
  <form id="rtd-search-form" class="wy-form" action="search.html" method="get">
@@ -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>excel2moodle package &mdash; excel2moodle 0.4.3 documentation</title>
7
+ <title>excel2moodle package &mdash; 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=5bfaad31"></script>
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 src="_static/js/theme.js"></script>
@@ -37,7 +37,7 @@
37
37
  excel2moodle
38
38
  </a>
39
39
  <div class="version">
40
- 0.4.3
40
+ 0.5.0
41
41
  </div>
42
42
  <div role="search">
43
43
  <form id="rtd-search-form" class="wy-form" action="search.html" method="get">
@@ -130,6 +130,7 @@ Furthermore the points used for grading, are set in the “Kategorien” sheet</
130
130
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.core.html#excel2moodle.core.category.Category.getCategoryHeader"><code class="docutils literal notranslate"><span class="pre">Category.getCategoryHeader()</span></code></a></li>
131
131
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.core.html#excel2moodle.core.category.Category.id"><code class="docutils literal notranslate"><span class="pre">Category.id</span></code></a></li>
132
132
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.core.html#excel2moodle.core.category.Category.name"><code class="docutils literal notranslate"><span class="pre">Category.name</span></code></a></li>
133
+ <li class="toctree-l4"><a class="reference internal" href="excel2moodle.core.html#excel2moodle.core.category.Category.points"><code class="docutils literal notranslate"><span class="pre">Category.points</span></code></a></li>
133
134
  </ul>
134
135
  </li>
135
136
  </ul>
@@ -253,11 +254,13 @@ Furthermore the points used for grading, are set in the “Kategorien” sheet</
253
254
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.core.html#excel2moodle.core.question.Question.mandatoryTags"><code class="docutils literal notranslate"><span class="pre">Question.mandatoryTags</span></code></a></li>
254
255
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.core.html#excel2moodle.core.question.Question.name"><code class="docutils literal notranslate"><span class="pre">Question.name</span></code></a></li>
255
256
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.core.html#excel2moodle.core.question.Question.optionalTags"><code class="docutils literal notranslate"><span class="pre">Question.optionalTags</span></code></a></li>
257
+ <li class="toctree-l4"><a class="reference internal" href="excel2moodle.core.html#excel2moodle.core.question.Question.points"><code class="docutils literal notranslate"><span class="pre">Question.points</span></code></a></li>
256
258
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.core.html#excel2moodle.core.question.Question.qtype"><code class="docutils literal notranslate"><span class="pre">Question.qtype</span></code></a></li>
257
259
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.core.html#excel2moodle.core.question.Question.standardTags"><code class="docutils literal notranslate"><span class="pre">Question.standardTags</span></code></a></li>
258
260
  </ul>
259
261
  </li>
260
262
  <li class="toctree-l3"><a class="reference internal" href="excel2moodle.core.html#excel2moodle.core.question.QuestionData"><code class="docutils literal notranslate"><span class="pre">QuestionData</span></code></a><ul>
263
+ <li class="toctree-l4"><a class="reference internal" href="excel2moodle.core.html#excel2moodle.core.question.QuestionData.categoryFallbacks"><code class="docutils literal notranslate"><span class="pre">QuestionData.categoryFallbacks</span></code></a></li>
261
264
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.core.html#excel2moodle.core.question.QuestionData.get"><code class="docutils literal notranslate"><span class="pre">QuestionData.get()</span></code></a></li>
262
265
  </ul>
263
266
  </li>
@@ -309,7 +312,6 @@ Furthermore the points used for grading, are set in the “Kategorien” sheet</
309
312
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.core.html#excel2moodle.core.settings.Tags.TOLERANCE"><code class="docutils literal notranslate"><span class="pre">Tags.TOLERANCE</span></code></a></li>
310
313
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.core.html#excel2moodle.core.settings.Tags.TRUE"><code class="docutils literal notranslate"><span class="pre">Tags.TRUE</span></code></a></li>
311
314
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.core.html#excel2moodle.core.settings.Tags.TYPE"><code class="docutils literal notranslate"><span class="pre">Tags.TYPE</span></code></a></li>
312
- <li class="toctree-l4"><a class="reference internal" href="excel2moodle.core.html#excel2moodle.core.settings.Tags.VERSION"><code class="docutils literal notranslate"><span class="pre">Tags.VERSION</span></code></a></li>
313
315
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.core.html#excel2moodle.core.settings.Tags.WRONGSIGNPERCENT"><code class="docutils literal notranslate"><span class="pre">Tags.WRONGSIGNPERCENT</span></code></a></li>
314
316
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.core.html#excel2moodle.core.settings.Tags.default"><code class="docutils literal notranslate"><span class="pre">Tags.default</span></code></a></li>
315
317
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.core.html#excel2moodle.core.settings.Tags.full"><code class="docutils literal notranslate"><span class="pre">Tags.full</span></code></a></li>
@@ -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>excel2moodle.ui package &mdash; excel2moodle 0.4.3 documentation</title>
7
+ <title>excel2moodle.ui package &mdash; 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=5bfaad31"></script>
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 src="_static/js/theme.js"></script>
@@ -36,7 +36,7 @@
36
36
  excel2moodle
37
37
  </a>
38
38
  <div class="version">
39
- 0.4.3
39
+ 0.5.0
40
40
  </div>
41
41
  <div role="search">
42
42
  <form id="rtd-search-form" class="wy-form" action="search.html" method="get">
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta charset="utf-8" />
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
- <title>Index &mdash; excel2moodle 0.4.3 documentation</title>
6
+ <title>Index &mdash; excel2moodle 0.5.0 documentation</title>
7
7
  <link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b86133f3" />
8
8
  <link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=19f00094" />
9
9
 
@@ -14,7 +14,7 @@
14
14
 
15
15
  <script src="_static/jquery.js?v=5d32c60e"></script>
16
16
  <script src="_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
17
- <script src="_static/documentation_options.js?v=5bfaad31"></script>
17
+ <script src="_static/documentation_options.js?v=1dd76d02"></script>
18
18
  <script src="_static/doctools.js?v=9bcbadda"></script>
19
19
  <script src="_static/sphinx_highlight.js?v=dc90522c"></script>
20
20
  <script src="_static/js/theme.js"></script>
@@ -34,7 +34,7 @@
34
34
  excel2moodle
35
35
  </a>
36
36
  <div class="version">
37
- 0.4.3
37
+ 0.5.0
38
38
  </div>
39
39
  <div role="search">
40
40
  <form id="rtd-search-form" class="wy-form" action="search.html" method="get">
@@ -151,6 +151,8 @@
151
151
  <li><a href="excel2moodle.core.html#excel2moodle.core.settings.Tags.CATEGORIESSHEET">CATEGORIESSHEET (excel2moodle.core.settings.Tags attribute)</a>
152
152
  </li>
153
153
  <li><a href="excel2moodle.core.html#excel2moodle.core.category.Category">Category (class in excel2moodle.core.category)</a>
154
+ </li>
155
+ <li><a href="excel2moodle.core.html#excel2moodle.core.question.QuestionData.categoryFallbacks">categoryFallbacks (excel2moodle.core.question.QuestionData property)</a>
154
156
  </li>
155
157
  <li><a href="excel2moodle.ui.html#excel2moodle.ui.treewidget.CategoryItem">CategoryItem (class in excel2moodle.ui.treewidget)</a>
156
158
  </li>
@@ -613,14 +615,14 @@
613
615
  </li>
614
616
  <li><a href="excel2moodle.core.html#excel2moodle.core.question.Picture">Picture (class in excel2moodle.core.question)</a>
615
617
  </li>
616
- </ul></td>
617
- <td style="width: 33%; vertical-align: top;"><ul>
618
618
  <li><a href="excel2moodle.core.html#excel2moodle.core.globals.XMLTags.PICTURE">PICTURE (excel2moodle.core.globals.XMLTags attribute)</a>
619
619
 
620
620
  <ul>
621
621
  <li><a href="excel2moodle.core.html#excel2moodle.core.settings.Tags.PICTURE">(excel2moodle.core.settings.Tags attribute)</a>
622
622
  </li>
623
623
  </ul></li>
624
+ </ul></td>
625
+ <td style="width: 33%; vertical-align: top;"><ul>
624
626
  <li><a href="excel2moodle.core.html#excel2moodle.core.settings.Tags.PICTUREFOLDER">PICTUREFOLDER (excel2moodle.core.settings.Tags attribute)</a>
625
627
  </li>
626
628
  <li><a href="excel2moodle.core.html#excel2moodle.core.settings.Tags.PICTURESUBFOLDER">PICTURESUBFOLDER (excel2moodle.core.settings.Tags attribute)</a>
@@ -630,13 +632,15 @@
630
632
  <li><a href="excel2moodle.core.html#excel2moodle.core.settings.Tags.place">place (excel2moodle.core.settings.Tags property)</a>
631
633
  </li>
632
634
  <li><a href="excel2moodle.core.html#excel2moodle.core.globals.TextElements.PLEFT">PLEFT (excel2moodle.core.globals.TextElements attribute)</a>
635
+ </li>
636
+ <li><a href="excel2moodle.core.html#excel2moodle.core.category.Category.points">points (excel2moodle.core.category.Category property)</a>
633
637
  </li>
634
638
  <li><a href="excel2moodle.core.html#excel2moodle.core.globals.XMLTags.POINTS">POINTS (excel2moodle.core.globals.XMLTags attribute)</a>
635
-
636
- <ul>
637
- <li><a href="excel2moodle.core.html#excel2moodle.core.settings.Tags.POINTS">(excel2moodle.core.settings.Tags attribute)</a>
638
639
  </li>
639
- </ul></li>
640
+ <li><a href="excel2moodle.core.html#excel2moodle.core.question.Question.points">points (excel2moodle.core.question.Question property)</a>
641
+ </li>
642
+ <li><a href="excel2moodle.core.html#excel2moodle.core.settings.Tags.POINTS">POINTS (excel2moodle.core.settings.Tags attribute)</a>
643
+ </li>
640
644
  <li><a href="excel2moodle.core.html#excel2moodle.core.stringHelpers.printDom">printDom() (in module excel2moodle.core.stringHelpers)</a>
641
645
  </li>
642
646
  <li><a href="excel2moodle.core.html#excel2moodle.core.dataStructure.processSheet">processSheet() (in module excel2moodle.core.dataStructure)</a>
@@ -842,16 +846,14 @@
842
846
  <li><a href="excel2moodle.core.html#excel2moodle.core.validator.Validator.validate">validate() (excel2moodle.core.validator.Validator method)</a>
843
847
  </li>
844
848
  <li><a href="excel2moodle.core.html#excel2moodle.core.validator.Validator">Validator (class in excel2moodle.core.validator)</a>
845
- </li>
846
- <li><a href="excel2moodle.core.html#excel2moodle.core.dataStructure.QuestionDB.validator">validator (excel2moodle.core.dataStructure.QuestionDB attribute)</a>
847
849
  </li>
848
850
  </ul></td>
849
851
  <td style="width: 33%; vertical-align: top;"><ul>
852
+ <li><a href="excel2moodle.core.html#excel2moodle.core.dataStructure.QuestionDB.validator">validator (excel2moodle.core.dataStructure.QuestionDB attribute)</a>
853
+ </li>
850
854
  <li><a href="excel2moodle.core.html#excel2moodle.core.settings.Settings.values">values (excel2moodle.core.settings.Settings attribute)</a>
851
855
  </li>
852
856
  <li><a href="excel2moodle.ui.html#excel2moodle.ui.dialogs.QuestionVariantDialog.variant">variant (excel2moodle.ui.dialogs.QuestionVariantDialog property)</a>
853
- </li>
854
- <li><a href="excel2moodle.core.html#excel2moodle.core.settings.Tags.VERSION">VERSION (excel2moodle.core.settings.Tags attribute)</a>
855
857
  </li>
856
858
  </ul></td>
857
859
  </tr></table>
@@ -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>How To - Schritt für Schritt Anleitung &mdash; excel2moodle 0.4.3 documentation</title>
7
+ <title>How To - Schritt für Schritt Anleitung &mdash; 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=5bfaad31"></script>
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 src="_static/js/theme.js"></script>
@@ -37,7 +37,7 @@
37
37
  excel2moodle
38
38
  </a>
39
39
  <div class="version">
40
- 0.4.3
40
+ 0.5.0
41
41
  </div>
42
42
  <div role="search">
43
43
  <form id="rtd-search-form" class="wy-form" action="search.html" method="get">