excel2moodle 0.3.2__tar.gz → 0.3.4__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 (53) hide show
  1. {excel2moodle-0.3.2/excel2moodle.egg-info → excel2moodle-0.3.4}/PKG-INFO +7 -6
  2. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/docs/_build/html/excel2moodle.core.html +4 -4
  3. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/docs/_build/html/excel2moodle.extra.html +3 -3
  4. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/docs/_build/html/excel2moodle.html +3 -4
  5. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/docs/_build/html/excel2moodle.ui.html +4 -10
  6. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/docs/_build/html/excel2moodle.usage.html +213 -27
  7. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/docs/_build/html/genindex.html +3 -5
  8. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/docs/_build/html/index.html +15 -5
  9. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/docs/_build/html/modules.html +3 -3
  10. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/docs/_build/html/py-modindex.html +3 -3
  11. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/docs/_build/html/search.html +3 -3
  12. excel2moodle-0.3.4/excel2moodle/__init__.py +136 -0
  13. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle/__main__.py +5 -15
  14. excel2moodle-0.3.4/excel2moodle/core/category.py +99 -0
  15. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle/core/dataStructure.py +87 -52
  16. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle/core/etHelpers.py +21 -16
  17. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle/core/exceptions.py +11 -4
  18. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle/core/globals.py +41 -28
  19. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle/core/numericMultiQ.py +18 -13
  20. excel2moodle-0.3.4/excel2moodle/core/parser.py +376 -0
  21. excel2moodle-0.3.4/excel2moodle/core/question.py +175 -0
  22. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle/core/questionValidator.py +48 -37
  23. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle/core/stringHelpers.py +41 -23
  24. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle/extra/__init__.py +1 -3
  25. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle/extra/equationVerification.py +40 -22
  26. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle/ui/appUi.py +113 -69
  27. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle/ui/dialogs.py +36 -19
  28. excel2moodle-0.3.4/excel2moodle/ui/settings.py +72 -0
  29. {excel2moodle-0.3.2 → excel2moodle-0.3.4/excel2moodle.egg-info}/PKG-INFO +7 -6
  30. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle.egg-info/SOURCES.txt +1 -0
  31. excel2moodle-0.3.4/excel2moodle.egg-info/entry_points.txt +2 -0
  32. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle.egg-info/requires.txt +3 -2
  33. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/pyproject.toml +10 -6
  34. excel2moodle-0.3.2/excel2moodle/__init__.py +0 -113
  35. excel2moodle-0.3.2/excel2moodle/core/category.py +0 -108
  36. excel2moodle-0.3.2/excel2moodle/core/parser.py +0 -323
  37. excel2moodle-0.3.2/excel2moodle/core/question.py +0 -106
  38. excel2moodle-0.3.2/excel2moodle/ui/settings.py +0 -34
  39. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/LICENSE +0 -0
  40. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/MANIFEST.in +0 -0
  41. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/README.md +0 -0
  42. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle/core/__init__.py +0 -0
  43. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle/core/questionWriter.py +0 -0
  44. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle/ui/__init__.py +0 -0
  45. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle/ui/questionPreviewDialog.py +0 -0
  46. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle/ui/treewidget.py +0 -0
  47. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle/ui/variantDialog.py +0 -0
  48. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle/ui/windowDoc.py +0 -0
  49. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle/ui/windowEquationChecker.py +0 -0
  50. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle/ui/windowMain.py +0 -0
  51. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle.egg-info/dependency_links.txt +0 -0
  52. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/excel2moodle.egg-info/top_level.txt +0 -0
  53. {excel2moodle-0.3.2 → excel2moodle-0.3.4}/setup.cfg +0 -0
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: excel2moodle
3
- Version: 0.3.2
4
- Summary: A Package for Converting Questions input into a spreadsheet, to valid moodle-xml
3
+ Version: 0.3.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
7
- Project-URL: Homepage, https://gitlab.com/jbosse3/excel2moodle
8
- Project-URL: documentation, https://jbosse3.gitlab.io/excel2moodle
7
+ Project-URL: Repository, https://gitlab.com/jbosse3/excel2moodle.git
8
+ Project-URL: Documentation, https://jbosse3.gitlab.io/excel2moodle
9
9
  Keywords: moodle,XML,teaching,question,converter
10
10
  Classifier: Programming Language :: Python :: 3
11
11
  Classifier: Operating System :: OS Independent
@@ -15,8 +15,9 @@ License-File: LICENSE
15
15
  Requires-Dist: pyside6>=6.8.0
16
16
  Requires-Dist: pandas>=2.1.3
17
17
  Requires-Dist: openpyxl>=3.1.5
18
- Requires-Dist: asteval
19
- Requires-Dist: odfpy
18
+ Requires-Dist: lxml>=5.4.0
19
+ Requires-Dist: odfpy>=1.4.1
20
+ Requires-Dist: asteval>=1.0.6
20
21
  Dynamic: license-file
21
22
 
22
23
  # excel 2 Moodle
@@ -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.3.1 documentation</title>
7
+ <title>excel2moodle.core package &mdash; excel2moodle 0.3.2 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=3e6abc0e"></script>
18
+ <script src="_static/documentation_options.js?v=e28bfb85"></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.3.1
40
+ 0.3.2
41
41
  </div>
42
42
  <div role="search">
43
43
  <form id="rtd-search-form" class="wy-form" action="search.html" method="get">
@@ -362,7 +362,7 @@
362
362
 
363
363
  <dl class="py attribute">
364
364
  <dt class="sig sig-object py" id="excel2moodle.core.dataStructure.QuestionDB.dataChanged">
365
- <span class="sig-name descname"><span class="pre">dataChanged</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.QSignaler(0x557dae37fad0)&gt;</span></em><a class="headerlink" href="#excel2moodle.core.dataStructure.QuestionDB.dataChanged" title="Link to this definition"></a></dt>
365
+ <span class="sig-name descname"><span class="pre">dataChanged</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.QSignaler(0x5c309993c2c0)&gt;</span></em><a class="headerlink" href="#excel2moodle.core.dataStructure.QuestionDB.dataChanged" title="Link to this definition"></a></dt>
366
366
  <dd></dd></dl>
367
367
 
368
368
  <dl class="py method">
@@ -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.3.1 documentation</title>
7
+ <title>excel2moodle.extra package &mdash; excel2moodle 0.3.2 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=3e6abc0e"></script>
18
+ <script src="_static/documentation_options.js?v=e28bfb85"></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.3.1
40
+ 0.3.2
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.3.1 documentation</title>
7
+ <title>excel2moodle package &mdash; excel2moodle 0.3.2 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=3e6abc0e"></script>
18
+ <script src="_static/documentation_options.js?v=e28bfb85"></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>
@@ -35,7 +35,7 @@
35
35
  excel2moodle
36
36
  </a>
37
37
  <div class="version">
38
- 0.3.1
38
+ 0.3.2
39
39
  </div>
40
40
  <div role="search">
41
41
  <form id="rtd-search-form" class="wy-form" action="search.html" method="get">
@@ -332,7 +332,6 @@ raises a NotImplementedError.</p>
332
332
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.ui.html#excel2moodle.ui.appUi.MainWindow.onSelectionChanged"><code class="docutils literal notranslate"><span class="pre">MainWindow.onSelectionChanged()</span></code></a></li>
333
333
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.ui.html#excel2moodle.ui.appUi.MainWindow.onSheetPathChanged"><code class="docutils literal notranslate"><span class="pre">MainWindow.onSheetPathChanged()</span></code></a></li>
334
334
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.ui.html#excel2moodle.ui.appUi.MainWindow.previewQ"><code class="docutils literal notranslate"><span class="pre">MainWindow.previewQ()</span></code></a></li>
335
- <li class="toctree-l4"><a class="reference internal" href="excel2moodle.ui.html#excel2moodle.ui.appUi.MainWindow.refreshList"><code class="docutils literal notranslate"><span class="pre">MainWindow.refreshList()</span></code></a></li>
336
335
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.ui.html#excel2moodle.ui.appUi.MainWindow.setIncludeCategoriesSetting"><code class="docutils literal notranslate"><span class="pre">MainWindow.setIncludeCategoriesSetting()</span></code></a></li>
337
336
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.ui.html#excel2moodle.ui.appUi.MainWindow.setStatus"><code class="docutils literal notranslate"><span class="pre">MainWindow.setStatus()</span></code></a></li>
338
337
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.ui.html#excel2moodle.ui.appUi.MainWindow.staticMetaObject"><code class="docutils literal notranslate"><span class="pre">MainWindow.staticMetaObject</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.3.1 documentation</title>
7
+ <title>excel2moodle.ui package &mdash; excel2moodle 0.3.2 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=3e6abc0e"></script>
18
+ <script src="_static/documentation_options.js?v=e28bfb85"></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.3.1
39
+ 0.3.2
40
40
  </div>
41
41
  <div role="search">
42
42
  <form id="rtd-search-form" class="wy-form" action="search.html" method="get">
@@ -69,7 +69,6 @@
69
69
  <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.ui.appUi.MainWindow.onSelectionChanged"><code class="docutils literal notranslate"><span class="pre">MainWindow.onSelectionChanged()</span></code></a></li>
70
70
  <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.ui.appUi.MainWindow.onSheetPathChanged"><code class="docutils literal notranslate"><span class="pre">MainWindow.onSheetPathChanged()</span></code></a></li>
71
71
  <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.ui.appUi.MainWindow.previewQ"><code class="docutils literal notranslate"><span class="pre">MainWindow.previewQ()</span></code></a></li>
72
- <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.ui.appUi.MainWindow.refreshList"><code class="docutils literal notranslate"><span class="pre">MainWindow.refreshList()</span></code></a></li>
73
72
  <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.ui.appUi.MainWindow.setIncludeCategoriesSetting"><code class="docutils literal notranslate"><span class="pre">MainWindow.setIncludeCategoriesSetting()</span></code></a></li>
74
73
  <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.ui.appUi.MainWindow.setStatus"><code class="docutils literal notranslate"><span class="pre">MainWindow.setStatus()</span></code></a></li>
75
74
  <li class="toctree-l4"><a class="reference internal" href="#excel2moodle.ui.appUi.MainWindow.staticMetaObject"><code class="docutils literal notranslate"><span class="pre">MainWindow.staticMetaObject</span></code></a></li>
@@ -313,11 +312,6 @@ If successful it prints out a list of all exported Questions</p>
313
312
  </dl>
314
313
  </dd></dl>
315
314
 
316
- <dl class="py method">
317
- <dt class="sig sig-object py" id="excel2moodle.ui.appUi.MainWindow.refreshList">
318
- <span class="sig-name descname"><span class="pre">refreshList</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="reference internal" href="_modules/excel2moodle/ui/appUi.html#MainWindow.refreshList"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#excel2moodle.ui.appUi.MainWindow.refreshList" title="Link to this definition"></a></dt>
319
- <dd></dd></dl>
320
-
321
315
  <dl class="py method">
322
316
  <dt class="sig sig-object py" id="excel2moodle.ui.appUi.MainWindow.setIncludeCategoriesSetting">
323
317
  <span class="sig-name descname"><span class="pre">setIncludeCategoriesSetting</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="reference internal" href="_modules/excel2moodle/ui/appUi.html#MainWindow.setIncludeCategoriesSetting"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#excel2moodle.ui.appUi.MainWindow.setIncludeCategoriesSetting" title="Link to this definition"></a></dt>
@@ -330,7 +324,7 @@ If successful it prints out a list of all exported Questions</p>
330
324
 
331
325
  <dl class="py attribute">
332
326
  <dt class="sig sig-object py" id="excel2moodle.ui.appUi.MainWindow.staticMetaObject">
333
- <span class="sig-name descname"><span class="pre">staticMetaObject</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">PySide6.QtCore.QMetaObject(&quot;MainWindow&quot;</span> <span class="pre">inherits</span> <span class="pre">&quot;QMainWindow&quot;:</span> <span class="pre">Methods:</span>&#160;&#160; <span class="pre">#39</span> <span class="pre">type=Slot,</span> <span class="pre">signature=onSheetPathChanged(PyObject),</span> <span class="pre">parameters=PyObject</span>&#160;&#160; <span class="pre">#40</span> <span class="pre">type=Slot,</span> <span class="pre">signature=onOpenDocumentation()</span>&#160;&#160; <span class="pre">#41</span> <span class="pre">type=Slot,</span> <span class="pre">signature=onSelectionChanged()</span>&#160;&#160; <span class="pre">#42</span> <span class="pre">type=Slot,</span> <span class="pre">signature=toggleQuestionSelectionState()</span>&#160;&#160; <span class="pre">#43</span> <span class="pre">type=Slot,</span> <span class="pre">signature=onButGenTest()</span>&#160;&#160; <span class="pre">#44</span> <span class="pre">type=Slot,</span> <span class="pre">signature=refreshList()</span>&#160;&#160; <span class="pre">#45</span> <span class="pre">type=Slot,</span> <span class="pre">signature=onButSpreadsheet()</span>&#160;&#160; <span class="pre">#46</span> <span class="pre">type=Slot,</span> <span class="pre">signature=onParseAll()</span>&#160;&#160; <span class="pre">#47</span> <span class="pre">type=Slot,</span> <span class="pre">signature=previewQ()</span>&#160;&#160; <span class="pre">#48</span> <span class="pre">type=Slot,</span> <span class="pre">signature=onButOpenEqChecker()</span> <span class="pre">)</span></em><a class="headerlink" href="#excel2moodle.ui.appUi.MainWindow.staticMetaObject" title="Link to this definition"></a></dt>
327
+ <span class="sig-name descname"><span class="pre">staticMetaObject</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">PySide6.QtCore.QMetaObject(&quot;MainWindow&quot;</span> <span class="pre">inherits</span> <span class="pre">&quot;QMainWindow&quot;:</span> <span class="pre">Methods:</span>&#160;&#160; <span class="pre">#39</span> <span class="pre">type=Slot,</span> <span class="pre">signature=onSheetPathChanged(PyObject),</span> <span class="pre">parameters=PyObject</span>&#160;&#160; <span class="pre">#40</span> <span class="pre">type=Slot,</span> <span class="pre">signature=onOpenDocumentation()</span>&#160;&#160; <span class="pre">#41</span> <span class="pre">type=Slot,</span> <span class="pre">signature=onSelectionChanged()</span>&#160;&#160; <span class="pre">#42</span> <span class="pre">type=Slot,</span> <span class="pre">signature=toggleQuestionSelectionState()</span>&#160;&#160; <span class="pre">#43</span> <span class="pre">type=Slot,</span> <span class="pre">signature=onButGenTest()</span>&#160;&#160; <span class="pre">#44</span> <span class="pre">type=Slot,</span> <span class="pre">signature=onButSpreadsheet()</span>&#160;&#160; <span class="pre">#45</span> <span class="pre">type=Slot,</span> <span class="pre">signature=onParseAll()</span>&#160;&#160; <span class="pre">#46</span> <span class="pre">type=Slot,</span> <span class="pre">signature=previewQ()</span>&#160;&#160; <span class="pre">#47</span> <span class="pre">type=Slot,</span> <span class="pre">signature=onButOpenEqChecker()</span> <span class="pre">)</span></em><a class="headerlink" href="#excel2moodle.ui.appUi.MainWindow.staticMetaObject" title="Link to this definition"></a></dt>
334
328
  <dd></dd></dl>
335
329
 
336
330
  <dl class="py method">
@@ -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>User Guide &mdash; excel2moodle 0.3.1 documentation</title>
7
+ <title>User Guide &mdash; excel2moodle 0.3.2 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=3e6abc0e"></script>
18
+ <script src="_static/documentation_options.js?v=e28bfb85"></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.3.1
40
+ 0.3.2
41
41
  </div>
42
42
  <div role="search">
43
43
  <form id="rtd-search-form" class="wy-form" action="search.html" method="get">
@@ -51,7 +51,18 @@
51
51
  <li class="toctree-l1 current"><a class="current reference internal" href="#">User Guide</a><ul>
52
52
  <li class="toctree-l2"><a class="reference internal" href="#writing-questions-into-the-spreadsheet">Writing questions into the spreadsheet</a><ul>
53
53
  <li class="toctree-l3"><a class="reference internal" href="#question-type-agnostic-fields">Question-type agnostic fields</a></li>
54
- <li class="toctree-l3"><a class="reference internal" href="#creating-valid-questions-of-type-nfm">Creating valid questions of Type <code class="docutils literal notranslate"><span class="pre">NFM</span></code></a></li>
54
+ <li class="toctree-l3"><a class="reference internal" href="#creating-mc-questions">Creating <code class="docutils literal notranslate"><span class="pre">MC</span></code> Questions</a><ul>
55
+ <li class="toctree-l4"><a class="reference internal" href="#example-for-a-mc-question">Example for a <code class="docutils literal notranslate"><span class="pre">`MC`</span></code> Question</a></li>
56
+ </ul>
57
+ </li>
58
+ <li class="toctree-l3"><a class="reference internal" href="#creating-nf-questions">Creating <code class="docutils literal notranslate"><span class="pre">NF</span></code> Questions</a><ul>
59
+ <li class="toctree-l4"><a class="reference internal" href="#example-for-a-nf-question">Example for a <code class="docutils literal notranslate"><span class="pre">`NF`</span></code> Question</a></li>
60
+ </ul>
61
+ </li>
62
+ <li class="toctree-l3"><a class="reference internal" href="#creating-nfm-questions">Creating <code class="docutils literal notranslate"><span class="pre">NFM</span></code> Questions</a><ul>
63
+ <li class="toctree-l4"><a class="reference internal" href="#example-for-a-nfm-question">Example for a <code class="docutils literal notranslate"><span class="pre">`NFM`</span></code> Question</a></li>
64
+ </ul>
65
+ </li>
55
66
  </ul>
56
67
  </li>
57
68
  <li class="toctree-l2"><a class="reference internal" href="#generating-questions-from-the-spreadsheet">Generating questions from the spreadsheet</a></li>
@@ -99,32 +110,148 @@
99
110
  <section id="question-type-agnostic-fields">
100
111
  <h3>Question-type agnostic fields<a class="headerlink" href="#question-type-agnostic-fields" title="Link to this heading"></a></h3>
101
112
  <p>For all of the qustion types the following fields must/may be included in the spreadsheet</p>
113
+ <dl class="simple">
114
+ <dt><code class="docutils literal notranslate"><span class="pre">number</span></code><span class="classifier">mandatory</span></dt><dd><p>The number of the question</p>
115
+ </dd>
116
+ <dt><code class="docutils literal notranslate"><span class="pre">type</span></code><span class="classifier">mandatory</span></dt><dd><p>Any of <code class="docutils literal notranslate"><span class="pre">NFM</span></code>, <code class="docutils literal notranslate"><span class="pre">NF</span></code>, <code class="docutils literal notranslate"><span class="pre">MC</span></code></p>
117
+ </dd>
118
+ <dt><code class="docutils literal notranslate"><span class="pre">name</span></code><span class="classifier">mandatory</span></dt><dd><p>The internal name of the question, not the title that will be seen when the question is viewed</p>
119
+ </dd>
120
+ <dt><code class="docutils literal notranslate"><span class="pre">text</span></code><span class="classifier">mandatory</span></dt><dd><p>The question text. At least one of these must be filled out. If it occurs more than once, a new paragraph gets added for each.</p>
121
+ </dd>
122
+ <dt><code class="docutils literal notranslate"><span class="pre">picture</span></code><span class="classifier">optional</span></dt><dd><p>If left empty, no picture will be included
123
+ All pictures have to be in the folder <code class="docutils literal notranslate"><span class="pre">AbbildungenSVG/KATXX</span></code> in the same dir as the spreadsheet
124
+ If a picture should be included, <code class="docutils literal notranslate"><span class="pre">1</span></code> (like true) should be written here
125
+ If a picture from another question should be used, write:
126
+ <code class="docutils literal notranslate"><span class="pre">1=ID</span></code> where <code class="docutils literal notranslate"><span class="pre">ID</span></code> is the number of the question that the picture should be used from</p>
127
+ </dd>
128
+ </dl>
129
+ </section>
130
+ <section id="creating-mc-questions">
131
+ <h3>Creating <code class="docutils literal notranslate"><span class="pre">MC</span></code> Questions<a class="headerlink" href="#creating-mc-questions" title="Link to this heading"></a></h3>
132
+ <p><code class="docutils literal notranslate"><span class="pre">MC</span></code>-Questions are multiple choice Questions in Moodle
133
+ In addition to the standart Keys the following need to be specified for multiple choice Questions</p>
134
+ <dl class="simple">
135
+ <dt><code class="docutils literal notranslate"><span class="pre">true</span></code>: mandatory</dt><dd><p>the list of true answers</p>
136
+ </dd>
137
+ <dt><code class="docutils literal notranslate"><span class="pre">false</span></code>: mandatory</dt><dd><p>the list of false answers</p>
138
+ </dd>
139
+ <dt><code class="docutils literal notranslate"><span class="pre">answerType</span></code>: mandatory</dt><dd><p>controls the formatting of the answers
140
+ either <em>text</em>, <em>formula</em> or <em>unit</em></p>
141
+ </dd>
142
+ </dl>
143
+ <section id="example-for-a-mc-question">
144
+ <h4>Example for a <code class="docutils literal notranslate"><span class="pre">`MC`</span></code> Question<a class="headerlink" href="#example-for-a-mc-question" title="Link to this heading"></a></h4>
145
+ <table class="docutils align-default">
146
+ <thead>
147
+ <tr class="row-odd"><th class="head"><p>A</p></th>
148
+ <th class="head"><p>B</p></th>
149
+ <th class="head"><p>C</p></th>
150
+ </tr>
151
+ </thead>
152
+ <tbody>
153
+ <tr class="row-even"><td><p>number</p></td>
154
+ <td><p>1</p></td>
155
+ <td><p>2</p></td>
156
+ </tr>
157
+ <tr class="row-odd"><td><p>type</p></td>
158
+ <td><p>MC</p></td>
159
+ <td><p>MC</p></td>
160
+ </tr>
161
+ <tr class="row-even"><td><p>name</p></td>
162
+ <td><p>Multiple Choice</p></td>
163
+ <td><p>second multiple Choice</p></td>
164
+ </tr>
165
+ <tr class="row-odd"><td><p>text</p></td>
166
+ <td><p>Select the right Options</p></td>
167
+ <td><p>Click on the correct answers</p></td>
168
+ </tr>
169
+ <tr class="row-even"><td><p>text</p></td>
170
+ <td><p>The rectangle has those dimensions:</p></td>
171
+ <td><p>The rectangle has those dimensions:</p></td>
172
+ </tr>
173
+ <tr class="row-odd"><td><p>answerType</p></td>
174
+ <td><p>text</p></td>
175
+ <td><p>formula</p></td>
176
+ </tr>
177
+ <tr class="row-even"><td><p>true</p></td>
178
+ <td><p>right Answer; another correct One;</p></td>
179
+ <td><p>correct; right; correct again;</p></td>
180
+ </tr>
181
+ <tr class="row-odd"><td><p>false</p></td>
182
+ <td><p>wrong; bullshit; wrong again;</p></td>
183
+ <td><p>incorrect; not right; wrong;</p></td>
184
+ </tr>
185
+ </tbody>
186
+ </table>
187
+ </section>
188
+ </section>
189
+ <section id="creating-nf-questions">
190
+ <h3>Creating <code class="docutils literal notranslate"><span class="pre">NF</span></code> Questions<a class="headerlink" href="#creating-nf-questions" title="Link to this heading"></a></h3>
191
+ <p>The following fields must be filled out additionally to the type-agnostic ones:</p>
192
+ <dl>
193
+ <dt><code class="docutils literal notranslate"><span class="pre">bulletPoints</span></code><span class="classifier">optional</span></dt><dd><p>List of bullet points seperated by <code class="docutils literal notranslate"><span class="pre">;</span></code> it consists of four parts</p>
102
194
  <blockquote>
103
- <div><ul>
104
- <li><p><code class="docutils literal notranslate"><span class="pre">number</span></code>: <em>mandatory</em> The number of the question</p></li>
105
- <li><p><code class="docutils literal notranslate"><span class="pre">type</span></code>: <em>mandatory</em> any of <code class="docutils literal notranslate"><span class="pre">NFM</span></code>, <code class="docutils literal notranslate"><span class="pre">NF</span></code>, <code class="docutils literal notranslate"><span class="pre">MC</span></code></p></li>
106
- <li><p><code class="docutils literal notranslate"><span class="pre">name</span></code>: <em>mandatory</em> the internal name of the question, not the title that will be seen when the question is viewed</p></li>
107
- <li><p><code class="docutils literal notranslate"><span class="pre">text</span></code>: <em>mandatory</em>, the question text. At least one this must be filled out. If it occures more than once, a new paragraph gets added for each.</p></li>
108
- <li><p><code class="docutils literal notranslate"><span class="pre">picture</span></code>: <em>optional</em> if left empty, no picture will be included</p>
109
- <blockquote>
110
- <div><ul>
111
- <li><p>All pictures have to be in the folder <code class="docutils literal notranslate"><span class="pre">Abbildungen_SVG/KAT_XX</span></code> in the same dir as the spreadsheet</p></li>
112
- <li><p>if a picture should be include, <code class="docutils literal notranslate"><span class="pre">1</span></code> (like true) should be written here.</p></li>
113
- <li><p>If a picture from another Question should be used, write:</p>
114
- <blockquote>
115
- <div><ul class="simple">
116
- <li><p><code class="docutils literal notranslate"><span class="pre">1=ID</span></code> where <code class="docutils literal notranslate"><span class="pre">ID</span></code> is the number of the question that the picture should be used from.</p></li>
117
- </ul>
118
- </div></blockquote>
119
- </li>
120
- </ul>
121
- </div></blockquote>
122
- </li>
123
- </ul>
195
+ <div><ol class="arabic simple">
196
+ <li><p>Name: (Example: <em>length</em>)</p></li>
197
+ <li><p>Variable Name: (Example <em>l</em> )</p></li>
198
+ <li><p><code class="docutils literal notranslate"><span class="pre">=</span></code>-Sign</p></li>
199
+ <li><p>Value: (Example <em>5.4</em>)</p></li>
200
+ <li><p>Si-Unit: (Example <em>m</em>)</p></li>
201
+ </ol>
124
202
  </div></blockquote>
203
+ </dd>
204
+ <dt><code class="docutils literal notranslate"><span class="pre">result</span></code><span class="classifier">mandatory</span></dt><dd><p>the value of the result. Decimal separator must be a <code class="docutils literal notranslate"><span class="pre">.</span></code> dot.</p>
205
+ </dd>
206
+ </dl>
207
+ <section id="example-for-a-nf-question">
208
+ <h4>Example for a <code class="docutils literal notranslate"><span class="pre">`NF`</span></code> Question<a class="headerlink" href="#example-for-a-nf-question" title="Link to this heading"></a></h4>
209
+ <table class="docutils align-default">
210
+ <thead>
211
+ <tr class="row-odd"><th class="head"><p>A</p></th>
212
+ <th class="head"><p>B</p></th>
213
+ <th class="head"><p>C</p></th>
214
+ </tr>
215
+ </thead>
216
+ <tbody>
217
+ <tr class="row-even"><td><p>number</p></td>
218
+ <td><p>1</p></td>
219
+ <td><p>2</p></td>
220
+ </tr>
221
+ <tr class="row-odd"><td><p>type</p></td>
222
+ <td><p>NF</p></td>
223
+ <td><p>NF</p></td>
224
+ </tr>
225
+ <tr class="row-even"><td><p>name</p></td>
226
+ <td><p>Area Calculation</p></td>
227
+ <td><p>Circumference Calculation</p></td>
228
+ </tr>
229
+ <tr class="row-odd"><td><p>text</p></td>
230
+ <td><p>calculate the area of the rectangle</p></td>
231
+ <td><p>Calculate the circumference of the rectangle</p></td>
232
+ </tr>
233
+ <tr class="row-even"><td><p>text</p></td>
234
+ <td><p>the result should be in meters [m]</p></td>
235
+ <td><p>the result should be in meters [m]</p></td>
236
+ </tr>
237
+ <tr class="row-odd"><td><p>text</p></td>
238
+ <td><p>The rectangle has those dimensions:</p></td>
239
+ <td><p>The rectangle has those dimensions:</p></td>
240
+ </tr>
241
+ <tr class="row-even"><td><p>bulletPoints</p></td>
242
+ <td><p>length a = 5 m; with b = 2 m</p></td>
243
+ <td><p>length a = 5 m; with b = 2 m</p></td>
244
+ </tr>
245
+ <tr class="row-odd"><td><p>result</p></td>
246
+ <td><p>10</p></td>
247
+ <td><p>14</p></td>
248
+ </tr>
249
+ </tbody>
250
+ </table>
251
+ </section>
125
252
  </section>
126
- <section id="creating-valid-questions-of-type-nfm">
127
- <h3>Creating valid questions of Type <code class="docutils literal notranslate"><span class="pre">NFM</span></code><a class="headerlink" href="#creating-valid-questions-of-type-nfm" title="Link to this heading"></a></h3>
253
+ <section id="creating-nfm-questions">
254
+ <h3>Creating <code class="docutils literal notranslate"><span class="pre">NFM</span></code> Questions<a class="headerlink" href="#creating-nfm-questions" title="Link to this heading"></a></h3>
128
255
  <p>The following fields must be filled out additionally to the type-agnostic ones:</p>
129
256
  <blockquote>
130
257
  <div><ul>
@@ -153,6 +280,65 @@
153
280
  <li><p><code class="docutils literal notranslate"><span class="pre">firstResult</span></code>: <em>optional</em> but recommended to verify the <em>formula</em> inside <code class="docutils literal notranslate"><span class="pre">result</span></code> with the equation-checker tool.</p></li>
154
281
  </ul>
155
282
  </div></blockquote>
283
+ <section id="example-for-a-nfm-question">
284
+ <h4>Example for a <code class="docutils literal notranslate"><span class="pre">`NFM`</span></code> Question<a class="headerlink" href="#example-for-a-nfm-question" title="Link to this heading"></a></h4>
285
+ <table class="docutils align-default">
286
+ <tbody>
287
+ <tr class="row-odd"><td><p>A</p></td>
288
+ <td><p>B</p></td>
289
+ <td><p>C</p></td>
290
+ </tr>
291
+ <tr class="row-even"><td><p>number</p></td>
292
+ <td><p>1</p></td>
293
+ <td><p>2</p></td>
294
+ </tr>
295
+ <tr class="row-odd"><td><p>type</p></td>
296
+ <td><p>NFM</p></td>
297
+ <td><p>NFM</p></td>
298
+ </tr>
299
+ <tr class="row-even"><td><p>name</p></td>
300
+ <td><p>Area Calculation</p></td>
301
+ <td><p>Circumference Calculation</p></td>
302
+ </tr>
303
+ <tr class="row-odd"><td><p>text</p></td>
304
+ <td><p>calculate the area of the rectangle</p></td>
305
+ <td><p>Calculate the circumference of the rectangle</p></td>
306
+ </tr>
307
+ <tr class="row-even"><td><p>text</p></td>
308
+ <td><p>the result should be in meters [m]</p></td>
309
+ <td><p>the result should be in meters [m]</p></td>
310
+ </tr>
311
+ <tr class="row-odd"><td><p>text</p></td>
312
+ <td><p>The rectangle has those dimensions:</p></td>
313
+ <td><p>The rectangle has those dimensions:</p></td>
314
+ </tr>
315
+ <tr class="row-even"><td><p>bulletPoints</p></td>
316
+ <td><p>length a = {a} m; with b = {b} m</p></td>
317
+ <td><p>length a = {a} m; with b = {b} m</p></td>
318
+ </tr>
319
+ <tr class="row-odd"><td><p>result</p></td>
320
+ <td><p>a * b</p></td>
321
+ <td><p>2*a + 2*b</p></td>
322
+ </tr>
323
+ <tr class="row-even"><td><p>a</p></td>
324
+ <td><p>5;3;7</p></td>
325
+ <td><p>5;3;7</p></td>
326
+ </tr>
327
+ <tr class="row-odd"><td><p>b</p></td>
328
+ <td><p>2;2;1</p></td>
329
+ <td><p>2;2;1</p></td>
330
+ </tr>
331
+ <tr class="row-even"><td><p>...</p></td>
332
+ <td><p>...</p></td>
333
+ <td></td>
334
+ </tr>
335
+ <tr class="row-odd"><td><p>firstResult</p></td>
336
+ <td><p>10</p></td>
337
+ <td><p>14</p></td>
338
+ </tr>
339
+ </tbody>
340
+ </table>
341
+ </section>
156
342
  </section>
157
343
  </section>
158
344
  <section id="generating-questions-from-the-spreadsheet">
@@ -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.3.1 documentation</title>
6
+ <title>Index &mdash; excel2moodle 0.3.2 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=3e6abc0e"></script>
17
+ <script src="_static/documentation_options.js?v=e28bfb85"></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.3.1
37
+ 0.3.2
38
38
  </div>
39
39
  <div role="search">
40
40
  <form id="rtd-search-form" class="wy-form" action="search.html" method="get">
@@ -654,8 +654,6 @@
654
654
  <h2 id="R">R</h2>
655
655
  <table style="width: 100%" class="indextable genindextable"><tr>
656
656
  <td style="width: 33%; vertical-align: top;"><ul>
657
- <li><a href="excel2moodle.ui.html#excel2moodle.ui.appUi.MainWindow.refreshList">refreshList() (excel2moodle.ui.appUi.MainWindow method)</a>
658
- </li>
659
657
  <li><a href="excel2moodle.core.html#excel2moodle.core.globals.DFIndex.RESULT">RESULT (excel2moodle.core.globals.DFIndex attribute)</a>
660
658
  </li>
661
659
  <li><a href="excel2moodle.ui.html#excel2moodle.ui.questionPreviewDialog.Ui_QuestionPrevDialog.retranslateUi">retranslateUi() (excel2moodle.ui.questionPreviewDialog.Ui_QuestionPrevDialog method)</a>
@@ -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 documentation &mdash; excel2moodle 0.3.1 documentation</title>
7
+ <title>excel2moodle documentation &mdash; excel2moodle 0.3.2 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=3e6abc0e"></script>
18
+ <script src="_static/documentation_options.js?v=e28bfb85"></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.3.1
39
+ 0.3.2
40
40
  </div>
41
41
  <div role="search">
42
42
  <form id="rtd-search-form" class="wy-form" action="search.html" method="get">
@@ -148,7 +148,18 @@ The most of this documentation is relevant for developement purpose</p>
148
148
  <li class="toctree-l1"><a class="reference internal" href="excel2moodle.usage.html">User Guide</a><ul>
149
149
  <li class="toctree-l2"><a class="reference internal" href="excel2moodle.usage.html#writing-questions-into-the-spreadsheet">Writing questions into the spreadsheet</a><ul>
150
150
  <li class="toctree-l3"><a class="reference internal" href="excel2moodle.usage.html#question-type-agnostic-fields">Question-type agnostic fields</a></li>
151
- <li class="toctree-l3"><a class="reference internal" href="excel2moodle.usage.html#creating-valid-questions-of-type-nfm">Creating valid questions of Type <code class="docutils literal notranslate"><span class="pre">NFM</span></code></a></li>
151
+ <li class="toctree-l3"><a class="reference internal" href="excel2moodle.usage.html#creating-mc-questions">Creating <code class="docutils literal notranslate"><span class="pre">MC</span></code> Questions</a><ul>
152
+ <li class="toctree-l4"><a class="reference internal" href="excel2moodle.usage.html#example-for-a-mc-question">Example for a <code class="docutils literal notranslate"><span class="pre">`MC`</span></code> Question</a></li>
153
+ </ul>
154
+ </li>
155
+ <li class="toctree-l3"><a class="reference internal" href="excel2moodle.usage.html#creating-nf-questions">Creating <code class="docutils literal notranslate"><span class="pre">NF</span></code> Questions</a><ul>
156
+ <li class="toctree-l4"><a class="reference internal" href="excel2moodle.usage.html#example-for-a-nf-question">Example for a <code class="docutils literal notranslate"><span class="pre">`NF`</span></code> Question</a></li>
157
+ </ul>
158
+ </li>
159
+ <li class="toctree-l3"><a class="reference internal" href="excel2moodle.usage.html#creating-nfm-questions">Creating <code class="docutils literal notranslate"><span class="pre">NFM</span></code> Questions</a><ul>
160
+ <li class="toctree-l4"><a class="reference internal" href="excel2moodle.usage.html#example-for-a-nfm-question">Example for a <code class="docutils literal notranslate"><span class="pre">`NFM`</span></code> Question</a></li>
161
+ </ul>
162
+ </li>
152
163
  </ul>
153
164
  </li>
154
165
  <li class="toctree-l2"><a class="reference internal" href="excel2moodle.usage.html#generating-questions-from-the-spreadsheet">Generating questions from the spreadsheet</a></li>
@@ -354,7 +365,6 @@ The most of this documentation is relevant for developement purpose</p>
354
365
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.ui.html#excel2moodle.ui.appUi.MainWindow.onSelectionChanged"><code class="docutils literal notranslate"><span class="pre">MainWindow.onSelectionChanged()</span></code></a></li>
355
366
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.ui.html#excel2moodle.ui.appUi.MainWindow.onSheetPathChanged"><code class="docutils literal notranslate"><span class="pre">MainWindow.onSheetPathChanged()</span></code></a></li>
356
367
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.ui.html#excel2moodle.ui.appUi.MainWindow.previewQ"><code class="docutils literal notranslate"><span class="pre">MainWindow.previewQ()</span></code></a></li>
357
- <li class="toctree-l4"><a class="reference internal" href="excel2moodle.ui.html#excel2moodle.ui.appUi.MainWindow.refreshList"><code class="docutils literal notranslate"><span class="pre">MainWindow.refreshList()</span></code></a></li>
358
368
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.ui.html#excel2moodle.ui.appUi.MainWindow.setIncludeCategoriesSetting"><code class="docutils literal notranslate"><span class="pre">MainWindow.setIncludeCategoriesSetting()</span></code></a></li>
359
369
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.ui.html#excel2moodle.ui.appUi.MainWindow.setStatus"><code class="docutils literal notranslate"><span class="pre">MainWindow.setStatus()</span></code></a></li>
360
370
  <li class="toctree-l4"><a class="reference internal" href="excel2moodle.ui.html#excel2moodle.ui.appUi.MainWindow.staticMetaObject"><code class="docutils literal notranslate"><span class="pre">MainWindow.staticMetaObject</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 &mdash; excel2moodle 0.3.1 documentation</title>
7
+ <title>excel2moodle &mdash; excel2moodle 0.3.2 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=3e6abc0e"></script>
18
+ <script src="_static/documentation_options.js?v=e28bfb85"></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>
@@ -35,7 +35,7 @@
35
35
  excel2moodle
36
36
  </a>
37
37
  <div class="version">
38
- 0.3.1
38
+ 0.3.2
39
39
  </div>
40
40
  <div role="search">
41
41
  <form id="rtd-search-form" class="wy-form" action="search.html" method="get">