Prezentprogramo 3.1__py3-none-any.whl

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 (94) hide show
  1. hovercraft/__init__.py +435 -0
  2. hovercraft/generate.py +473 -0
  3. hovercraft/parse.py +275 -0
  4. hovercraft/position.py +269 -0
  5. hovercraft/template.py +237 -0
  6. hovercraft/templates/default/css/highlight.css +61 -0
  7. hovercraft/templates/default/css/hovercraft.css +67 -0
  8. hovercraft/templates/default/js/MathJax/es5/a11y/assistive-mml.js +1 -0
  9. hovercraft/templates/default/js/MathJax/es5/a11y/complexity.js +1 -0
  10. hovercraft/templates/default/js/MathJax/es5/a11y/explorer.js +1 -0
  11. hovercraft/templates/default/js/MathJax/es5/a11y/semantic-enrich.js +1 -0
  12. hovercraft/templates/default/js/MathJax/es5/a11y/sre.js +1 -0
  13. hovercraft/templates/default/js/MathJax/es5/adaptors/liteDOM.js +1 -0
  14. hovercraft/templates/default/js/MathJax/es5/core.js +1 -0
  15. hovercraft/templates/default/js/MathJax/es5/input/asciimath.js +1 -0
  16. hovercraft/templates/default/js/MathJax/es5/input/mml/entities.js +1 -0
  17. hovercraft/templates/default/js/MathJax/es5/input/mml/extensions/mml3.js +1 -0
  18. hovercraft/templates/default/js/MathJax/es5/input/mml.js +1 -0
  19. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/action.js +1 -0
  20. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/all-packages.js +34 -0
  21. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/ams.js +1 -0
  22. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/amscd.js +1 -0
  23. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/autoload.js +1 -0
  24. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/bbox.js +1 -0
  25. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/boldsymbol.js +1 -0
  26. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/braket.js +1 -0
  27. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/bussproofs.js +1 -0
  28. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/cancel.js +1 -0
  29. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/cases.js +1 -0
  30. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/centernot.js +1 -0
  31. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/color.js +1 -0
  32. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/colortbl.js +1 -0
  33. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/colorv2.js +1 -0
  34. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/configmacros.js +1 -0
  35. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/empheq.js +1 -0
  36. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/enclose.js +1 -0
  37. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/extpfeil.js +1 -0
  38. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/gensymb.js +1 -0
  39. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/html.js +1 -0
  40. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/mathtools.js +1 -0
  41. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/mhchem.js +34 -0
  42. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/newcommand.js +1 -0
  43. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/noerrors.js +1 -0
  44. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/noundefined.js +1 -0
  45. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/physics.js +1 -0
  46. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/require.js +1 -0
  47. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/setoptions.js +1 -0
  48. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/tagformat.js +1 -0
  49. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/textcomp.js +1 -0
  50. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/textmacros.js +1 -0
  51. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/unicode.js +1 -0
  52. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/upgreek.js +1 -0
  53. hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/verb.js +1 -0
  54. hovercraft/templates/default/js/MathJax/es5/input/tex-base.js +1 -0
  55. hovercraft/templates/default/js/MathJax/es5/input/tex-full.js +34 -0
  56. hovercraft/templates/default/js/MathJax/es5/input/tex.js +1 -0
  57. hovercraft/templates/default/js/MathJax/es5/latest.js +1 -0
  58. hovercraft/templates/default/js/MathJax/es5/loader.js +1 -0
  59. hovercraft/templates/default/js/MathJax/es5/mml-chtml.js +1 -0
  60. hovercraft/templates/default/js/MathJax/es5/mml-svg.js +1 -0
  61. hovercraft/templates/default/js/MathJax/es5/node-main.js +1 -0
  62. hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/tex.js +1 -0
  63. hovercraft/templates/default/js/MathJax/es5/output/chtml.js +1 -0
  64. hovercraft/templates/default/js/MathJax/es5/output/svg/fonts/tex.js +1 -0
  65. hovercraft/templates/default/js/MathJax/es5/output/svg.js +1 -0
  66. hovercraft/templates/default/js/MathJax/es5/startup.js +1 -0
  67. hovercraft/templates/default/js/MathJax/es5/tex-chtml-full-speech.js +34 -0
  68. hovercraft/templates/default/js/MathJax/es5/tex-chtml-full.js +34 -0
  69. hovercraft/templates/default/js/MathJax/es5/tex-chtml.js +1 -0
  70. hovercraft/templates/default/js/MathJax/es5/tex-mml-chtml.js +1 -0
  71. hovercraft/templates/default/js/MathJax/es5/tex-mml-svg.js +1 -0
  72. hovercraft/templates/default/js/MathJax/es5/tex-svg-full.js +34 -0
  73. hovercraft/templates/default/js/MathJax/es5/tex-svg.js +1 -0
  74. hovercraft/templates/default/js/MathJax/es5/ui/lazy.js +1 -0
  75. hovercraft/templates/default/js/MathJax/es5/ui/menu.js +1 -0
  76. hovercraft/templates/default/js/MathJax/es5/ui/safe.js +1 -0
  77. hovercraft/templates/default/js/gotoSlide.js +51 -0
  78. hovercraft/templates/default/js/hovercraft.js +58 -0
  79. hovercraft/templates/default/js/impress.js +5009 -0
  80. hovercraft/templates/default/template.cfg +11 -0
  81. hovercraft/templates/default/template.xsl +161 -0
  82. hovercraft/templates/reST.xsl +535 -0
  83. hovercraft/templates/simple/css/highlight.css +61 -0
  84. hovercraft/templates/simple/css/hovercraft.css +67 -0
  85. hovercraft/templates/simple/js/hovercraft.js +58 -0
  86. hovercraft/templates/simple/js/impress.js +5009 -0
  87. hovercraft/templates/simple/template.cfg +10 -0
  88. hovercraft/templates/simple/template.xsl +162 -0
  89. prezentprogramo-3.1.dist-info/METADATA +143 -0
  90. prezentprogramo-3.1.dist-info/RECORD +94 -0
  91. prezentprogramo-3.1.dist-info/WHEEL +5 -0
  92. prezentprogramo-3.1.dist-info/entry_points.txt +5 -0
  93. prezentprogramo-3.1.dist-info/licenses/LICENSE.txt +254 -0
  94. prezentprogramo-3.1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,10 @@
1
+ [hovercraft]
2
+ template = template.xsl
3
+
4
+ css = css/hovercraft.css
5
+ css/highlight.css
6
+
7
+ js-body = js/impress.js
8
+ js/gotoSlide.js
9
+ js/hovercraft.js
10
+ js/MathJax/es5/tex-mml-chtml.js
@@ -0,0 +1,162 @@
1
+ <?xml version="1.0"?>
2
+
3
+ <xsl:stylesheet version="1.0"
4
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
5
+ xmlns="http://www.w3.org/1999/xhtml">
6
+
7
+ <xsl:import href="resource:templates/reST.xsl" />
8
+
9
+ <xsl:template match="step" name="step">
10
+ <div class="step">
11
+ <xsl:copy-of select="@*"/>
12
+ <xsl:apply-templates />
13
+ </div>
14
+ </xsl:template>
15
+
16
+ <xsl:template match="note" name="note">
17
+ <div class="notes"><xsl:apply-templates /></div>
18
+ </xsl:template>
19
+
20
+ <xsl:template match="/" name="main">
21
+ <html>
22
+ <head>
23
+ <title><xsl:value-of select="/document/@title"/></title>
24
+
25
+ <meta charset="UTF-8"/>
26
+ <meta name="generator" content="prezentprogramo 1.0 https://github.com/yoosofan/prezentprogramo"/>
27
+ <xsl:if test="/document/author"> <!-- Author is a child to the document, everything else become attributes -->
28
+ <meta name="author">
29
+ <xsl:attribute name="content">
30
+ <xsl:value-of select="/document/author" />
31
+ </xsl:attribute>
32
+ </meta>
33
+ </xsl:if>
34
+ <xsl:if test="/document/@description">
35
+ <meta name="description">
36
+ <xsl:attribute name="content">
37
+ <xsl:value-of select="/document/@description" />
38
+ </xsl:attribute>
39
+ </meta>
40
+ </xsl:if>
41
+ <xsl:if test="/document/@keywords">
42
+ <meta name="keywords">
43
+ <xsl:attribute name="content">
44
+ <xsl:value-of select="/document/@keywords" />
45
+ </xsl:attribute>
46
+ </meta>
47
+ </xsl:if>
48
+
49
+ <xsl:for-each select="/document/templateinfo/header/css">
50
+ <link rel="stylesheet">
51
+ <xsl:copy-of select="@*"/>
52
+ </link>
53
+ </xsl:for-each>
54
+
55
+ <script type="text/x-mathjax-config">
56
+ MathJax.Hub.Config({
57
+ showProcessingMessages: false,
58
+ messageStyle: "none",
59
+ TeX : { extensions : ['color.js'] }
60
+ });
61
+ </script>
62
+
63
+ <xsl:for-each select="/document/templateinfo/header/js">
64
+ <script type="text/javascript">
65
+ <xsl:copy-of select="@*"/>
66
+ </script>
67
+ </xsl:for-each>
68
+
69
+
70
+ </head>
71
+ <body class="impress-not-supported">
72
+ <xsl:if test="not(/document/@skip-help)">
73
+ <div id="impress-help"/>
74
+ </xsl:if>
75
+ <xsl:for-each select="/document">
76
+ <xsl:for-each select="decoration/header">
77
+ <div class="header">
78
+ <xsl:apply-templates />
79
+ </div>
80
+ </xsl:for-each>
81
+
82
+ <div id="impress">
83
+ <xsl:if test="@data-width">
84
+ <xsl:attribute name="data-width">
85
+ <xsl:value-of select="@data-width" />
86
+ </xsl:attribute>
87
+ </xsl:if>
88
+ <xsl:if test="@data-height">
89
+ <xsl:attribute name="data-height">
90
+ <xsl:value-of select="@data-height" />
91
+ </xsl:attribute>
92
+ </xsl:if>
93
+ <xsl:if test="@data-max-scale">
94
+ <xsl:attribute name="data-max-scale">
95
+ <xsl:value-of select="@data-max-scale" />
96
+ </xsl:attribute>
97
+ </xsl:if>
98
+ <xsl:if test="@data-min-scale">
99
+ <xsl:attribute name="data-min-scale">
100
+ <xsl:value-of select="@data-min-scale" />
101
+ </xsl:attribute>
102
+ </xsl:if>
103
+ <xsl:if test="@data-perspective">
104
+ <xsl:attribute name="data-perspective">
105
+ <xsl:value-of select="@data-perspective" />
106
+ </xsl:attribute>
107
+ </xsl:if>
108
+ <xsl:if test="@data-transition-duration">
109
+ <xsl:attribute name="data-transition-duration">
110
+ <xsl:value-of select="@data-transition-duration" />
111
+ </xsl:attribute>
112
+ </xsl:if>
113
+ <xsl:if test="@auto-console">
114
+ <xsl:attribute name="auto-console">
115
+ <xsl:value-of select="@auto-console" />
116
+ </xsl:attribute>
117
+ </xsl:if>
118
+ <xsl:if test="/document/@css-console">
119
+ <xsl:attribute name="data-console-css">
120
+ <xsl:value-of select="/document/@css-console" />
121
+ </xsl:attribute>
122
+ </xsl:if>
123
+ <xsl:if test="/document/@css-preview">
124
+ <xsl:attribute name="data-console-css-iframe">
125
+ <xsl:value-of select="/document/@css-preview" />
126
+ </xsl:attribute>
127
+ </xsl:if>
128
+ <xsl:for-each select="step">
129
+ <div class="step">
130
+ <xsl:copy-of select="@*"/>
131
+ <xsl:apply-templates />
132
+ </div>
133
+ </xsl:for-each>
134
+ </div>
135
+ <xsl:for-each select="decoration/footer">
136
+ <div class="footer">
137
+ <xsl:apply-templates />
138
+ </div>
139
+ </xsl:for-each>
140
+ </xsl:for-each>
141
+ <xsl:if test="/document/@slide-numbers">
142
+ <div id="slide-number" class="slide-number">
143
+ 1
144
+ </div>
145
+ </xsl:if>
146
+
147
+ <xsl:for-each select="/document/templateinfo/body/js">
148
+ <script type="text/javascript">
149
+ <xsl:copy-of select="@*"/>
150
+ </script>
151
+ </xsl:for-each>
152
+ <xsl:if test="/document/@slide-numbers">
153
+ <script type="text/javascript">
154
+ document.getElementById("impress").addEventListener("impress:stepenter", update_slide_number, false);
155
+ </script>
156
+ </xsl:if>
157
+
158
+ </body>
159
+ </html>
160
+ </xsl:template>
161
+
162
+ </xsl:stylesheet>
@@ -0,0 +1,143 @@
1
+ Metadata-Version: 2.4
2
+ Name: Prezentprogramo
3
+ Version: 3.1
4
+ Summary: Makes impress.js presentations from reStructuredText
5
+ Author-email: Ahmad Yoosofan <yoosofan@gmx.com>
6
+ License-Expression: GPL-3.0-or-later
7
+ Project-URL: Homepage, https://github.com/yoosofan/prezentprogramo
8
+ Project-URL: Issues, https://github.com/yoosofan/prezentprogramo/issues
9
+ Keywords: presentations,restructuredtext
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: Development Status :: 5 - Production/Stable
13
+ Classifier: Topic :: Multimedia :: Graphics :: Presentation
14
+ Classifier: Topic :: Text Processing
15
+ Classifier: Programming Language :: Python :: 3 :: Only
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Requires-Python: >=3.10
21
+ Description-Content-Type: text/x-rst
22
+ License-File: LICENSE.txt
23
+ Requires-Dist: wheel
24
+ Requires-Dist: docutils>=0.21
25
+ Requires-Dist: lxml>=3.1.0
26
+ Requires-Dist: svg.path
27
+ Requires-Dist: pygments
28
+ Requires-Dist: watchdog
29
+ Requires-Dist: ghostscript
30
+ Requires-Dist: pyhtml2pdf
31
+ Requires-Dist: screeninfo
32
+ Requires-Dist: graphviz
33
+ Requires-Dist: beautifulsoup4
34
+ Provides-Extra: test
35
+ Requires-Dist: pytest; extra == "test"
36
+ Requires-Dist: pytest-cov; extra == "test"
37
+ Requires-Dist: manuel; extra == "test"
38
+ Provides-Extra: testing
39
+ Requires-Dist: manuel; extra == "testing"
40
+ Dynamic: license-file
41
+
42
+ Prezentprogramo
43
+ ===============
44
+ Prezentprogramo is a tool to make impress.js_ presentations from
45
+ reStructuredText. For a quick explanation, see the demo_.
46
+
47
+ Based on `Hovercraft! <https://github.com/regebro/hovercraft>`_
48
+
49
+ Features
50
+ --------
51
+ * Write your presentations in a text markup language. No slow, limiting GUI, no annoying HTML!
52
+ * Pan, rotate and zoom in 3D, with automatic repositioning of slides!
53
+ * A presenter console with notes and slide previews!
54
+ * Support for showing mathematical formulas.
55
+ * Styling is easy with CSS.
56
+ * The slide show generated is in HTML, so you only need a web browser to show it.
57
+ * Easy sharing, as it can be put up on a website for anyone to see!
58
+
59
+ Full documentation of Hovercraft is available at readthedocs.org_, and also in the
60
+ documentation subdirectory.
61
+
62
+ Installation
63
+ ------------
64
+ Prezentprogramo requires Python 3 and can be installed like any Python package.
65
+
66
+ It is better to use virtual environment::
67
+
68
+ $ cd ~/virtual_environment/path/
69
+ $ python -m venv myvenv
70
+ $ source myvenv/bin/activate
71
+
72
+ The easiest way to install prezentprogramo is by using pip_ and git, then run::
73
+
74
+ $ pip3 install git+https://github.com/yoosofan/prezentprogramo
75
+
76
+ Or download the code in a directory let's name it `~/path/prezentprogramo/` then::
77
+
78
+ $ pip3 install ~/path/prezentprogramo/
79
+
80
+ or
81
+
82
+ $ python3 -m pip install ~/path/prezentprogramo/
83
+
84
+
85
+ Use prezentprogramo::
86
+
87
+ $ prezentprogramo prezentprogramo/docs/examples/tutorial.rst
88
+
89
+ Then you can deactivate virtual environment::
90
+
91
+ $ deactivate
92
+
93
+ Juan Bondi has made videos of how to install Hovercraft:
94
+
95
+ * Installation on Ubuntu and Debian based computers: https://www.youtube.com/watch?v=tHSJLF9OnKQ
96
+ * Installation on Windows: https://www.youtube.com/watch?v=I63I8Az24d8
97
+
98
+ Chromium-chromedriver is needed to generate PDF from RST presentations files (You can only Install Chrome Browser)
99
+
100
+ Hovercraft is untested on Windows, but there is no reason it shouldn't work, at least in theory.
101
+
102
+ TODO
103
+ ----
104
+ * Copy MathJax fonts prezentprogramo/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/woff-v2
105
+ * Remove extra files:
106
+ * Prevent making extra grap_ii.png for changing yographviz
107
+ * G.draw("test.svg", prog= 'dot', format='svg:cairo')
108
+ * https://stackoverflow.com/a/72152677/886607
109
+ * https://github.com/liuyug/python-docutils-graphviz/tree/master
110
+ * https://github.com/liuyug/python-docutils-graphviz/blob/master/docutils_graphviz.py
111
+ * https://developer.mozilla.org/en-US/docs/Learn/HTML/Multimedia_and_embedding/Adding_vector_graphics_to_the_Web
112
+ * https://docutils-ext.readthedocs.io/en/latest/svgt.html
113
+ * Add an option to run a new instance of web browser
114
+ * Replace `pyhtml2pdf` by `selenium` because of the following vulnerability:
115
+ * https://security.snyk.io/vuln/SNYK-PYTHON-PYHTML2PDF-6254644
116
+ * https://vuldb.com/?id.254137
117
+ * https://vulners.com/github/GHSA-P3RV-QJ56-2FQX
118
+ * https://www.cvedetails.com/cve/CVE-2024-1647/
119
+ * https://cert.ir/node/6248
120
+ * https://nvd.nist.gov/vuln/detail/CVE-2024-1647
121
+
122
+ * https://github.com/xhtml2pdf/xhtml2pdf
123
+ * https://github.com/CourtBouillon/weasyprint-samples/tree/master
124
+ * https://github.com/Kozea/WeasyPrint/tree/main
125
+
126
+
127
+ * https://github.com/plotly/plotly.py
128
+ * https://plotly.com/python/static-image-export/
129
+ * https://plotly.com/python/bar-charts/
130
+
131
+ * return [nodes.raw('', parsed, format='html')] # https://snyk.io/advisor/python/docutils/functions/docutils.parsers.rst.directives.register_directive
132
+ * https://github.com/renatopp/pyramid-blog/blob/7dba5a948af8a61e00fea303367be12e5de6f788/blog/blog/libs/rest/reSTpygments.py#L73
133
+ * https://github.com/renatopp/pyramid-blog/tree/master/blog/blog/libs/rest
134
+ * https://github.com/renatopp/pyramid-blog/blob/master/blog/blog/libs/rest/reSTpygments.py
135
+ * https://github.com/renatopp/pyramid-blog/blob/4cc950d6a82eeaa912c9e1111fe25a8cb836d660/blog/blog/libs/rest/reSTpygments.py#L73
136
+
137
+ * https://pygraphviz.github.io/documentation/stable/install.html
138
+ * Remove MathJax and use current default as --output-math=MathML
139
+
140
+ .. _impress.js: http://github.com/bartaz/impress.js
141
+ .. _demo: https://regebro.github.io/hovercraft
142
+ .. _readthedocs.org: https://hovercraft.readthedocs.io/
143
+ .. _pip: http://www.pip-installer.org/en/latest/
@@ -0,0 +1,94 @@
1
+ hovercraft/__init__.py,sha256=DzVKS56pEbRQJHzDrymPOa_kYKUYy6ejhLixPfmoLRU,13808
2
+ hovercraft/generate.py,sha256=pRjJZR07HRV7jmI8itJMJrjTQYqaaBg2NlDq3aaIWHk,16222
3
+ hovercraft/parse.py,sha256=AY4zJQBkIk6AjzwIOcw0CC1nmZ3NjnitgaCPETOrRiQ,9160
4
+ hovercraft/position.py,sha256=6r2aLCmJ1KfYeinlqJMY9JcQXUEsLcMWUYgscCeWzJU,8351
5
+ hovercraft/template.py,sha256=wHjlFY34nO5nWUVfF8smF0novpL6zHFR_oSi63d9-yc,8143
6
+ hovercraft/templates/reST.xsl,sha256=IZiRxILllhIVlY9bQhmDOt7HQeTzqtBtfS3pXYypjZk,14997
7
+ hovercraft/templates/default/template.cfg,sha256=i4ReK16L0Q0F5urU8HUOsvJ_nt8NlOG6xM4nU407axk,208
8
+ hovercraft/templates/default/template.xsl,sha256=o-FvVn9QMCASfIH6KgOz9SgPXO8i2P4sMfJnpbT5y78,4979
9
+ hovercraft/templates/default/css/highlight.css,sha256=0souFR8p9WLMYyul8Q_t47DKEywepH-4ezktGuN5vZ0,3895
10
+ hovercraft/templates/default/css/hovercraft.css,sha256=raTLhxh4eYWPY3JHo9x2zNEL3373bkjRrhea-UAJheg,1321
11
+ hovercraft/templates/default/js/gotoSlide.js,sha256=Zr4__57H_COcLh4HtQosgD51T-Ux9dyi1Bq9PVKp2kU,1342
12
+ hovercraft/templates/default/js/hovercraft.js,sha256=7BkrpM9LgFJ5eD-d63Hudj3Y_Va7x2G5WirpGdnw5CI,1960
13
+ hovercraft/templates/default/js/impress.js,sha256=1tzX7okhg4_cUrQEC9L07q7tjkJYoLHCRZtFpAlzyp8,186005
14
+ hovercraft/templates/default/js/MathJax/es5/core.js,sha256=RNnCn3fYlTfgJNFl4sDX6YGpjXXtU7bCNvrIme1jGrs,218533
15
+ hovercraft/templates/default/js/MathJax/es5/latest.js,sha256=pvqmS54Zv9Pua8WSE2zp-qBspNDHleumFLGn7qiTaj0,5090
16
+ hovercraft/templates/default/js/MathJax/es5/loader.js,sha256=pBO8GMd-2ntdKdRMTTMR3nh0LLXJdRtw4psBPqz7tW8,18439
17
+ hovercraft/templates/default/js/MathJax/es5/mml-chtml.js,sha256=3sN7JrncRK5BDMb4EuNQHrkt9zStP2UW_wI_YQDNZ7g,997633
18
+ hovercraft/templates/default/js/MathJax/es5/mml-svg.js,sha256=9tschYLKVGlcXyyNnw-Z0zECwvILHICkmrGsYF4DDNw,1945224
19
+ hovercraft/templates/default/js/MathJax/es5/node-main.js,sha256=o-b49p-3p4b0tNCPDxd4E4GZbsLCeKD0BvnoEv-oCbI,265880
20
+ hovercraft/templates/default/js/MathJax/es5/startup.js,sha256=hPTsSQQbEqba3F0Wibq8gPQXQ1z8vYkOxxLjdBUru4g,29566
21
+ hovercraft/templates/default/js/MathJax/es5/tex-chtml-full-speech.js,sha256=5djIbKva7z6_AQi2M4xCDAIfGcTtfjYpq6JmIC9Seac,2091263
22
+ hovercraft/templates/default/js/MathJax/es5/tex-chtml-full.js,sha256=kbAFUDxdHwlYv01zraGjvjNZayxKtdoiJ38bDTFJtaQ,1327522
23
+ hovercraft/templates/default/js/MathJax/es5/tex-chtml.js,sha256=Cm3tWrvOEzMWWN0jnzQ4Kr0GSSx0txth6MqoES7FX6U,1160989
24
+ hovercraft/templates/default/js/MathJax/es5/tex-mml-chtml.js,sha256=MASABpB4tYktI2Oitl4t-78w_lyA-D7b_s9GEP0JOGI,1173007
25
+ hovercraft/templates/default/js/MathJax/es5/tex-mml-svg.js,sha256=Hxen7ZX_Sksn0Wvw-1-AuRVobuhnPoKYOih27PjLn64,2120598
26
+ hovercraft/templates/default/js/MathJax/es5/tex-svg-full.js,sha256=pDVP-U_YaK6gzG6qp5pX_aBYhkb8Ru43AKNJ7goRy-Y,2275113
27
+ hovercraft/templates/default/js/MathJax/es5/tex-svg.js,sha256=1CldwzdEg2k1wTmf7s5RWVd7NMXI_7nxxjJM2C4DqII,2108580
28
+ hovercraft/templates/default/js/MathJax/es5/a11y/assistive-mml.js,sha256=W4QU42zWPRVLkL6rZ-XjOZx0Oa_5f0tVZ2EiT4F29lc,6460
29
+ hovercraft/templates/default/js/MathJax/es5/a11y/complexity.js,sha256=zAXtycnq0blyQQ0OfBuGEcVlqH_lE4IrzpQmiVTQNGM,18034
30
+ hovercraft/templates/default/js/MathJax/es5/a11y/explorer.js,sha256=hymwm38jknxySgpQKwSsst8JQxCbt1YCwm22jLh2Q6w,36348
31
+ hovercraft/templates/default/js/MathJax/es5/a11y/semantic-enrich.js,sha256=Nm6Uy_PKSThkE9ZKkQ7PXbAYRJ--0DJ1-T1vLoHVxZY,8084
32
+ hovercraft/templates/default/js/MathJax/es5/a11y/sre.js,sha256=pB3EhwN7ddba51Z342_i8D0dJoTyMtlvBCKhGzUFFmA,337064
33
+ hovercraft/templates/default/js/MathJax/es5/adaptors/liteDOM.js,sha256=MOfT8jHlyGsMbs3Cg-W28qRtbd7hQHRaBQvVzP5is-8,22827
34
+ hovercraft/templates/default/js/MathJax/es5/input/asciimath.js,sha256=GbE25F7YLmkKn_mac5LnE987RTiiN1NKS8uhfcJa6Ec,107781
35
+ hovercraft/templates/default/js/MathJax/es5/input/mml.js,sha256=Zckyd9mAhg80NBESxZUgudJ0XNRigNnC_gNnGLgmYk0,14583
36
+ hovercraft/templates/default/js/MathJax/es5/input/tex-base.js,sha256=hHnexq8g0B7MqPl4VgnG2A_54_wv9OA4QAYy54zsbFE,135594
37
+ hovercraft/templates/default/js/MathJax/es5/input/tex-full.js,sha256=3naxUTVTBL3oIX2AViZNnCvsL0est__U0ULL4U9bADU,345624
38
+ hovercraft/templates/default/js/MathJax/es5/input/tex.js,sha256=-mUkxbFsIL7T8EDJgz6Ix7irJf_piK-c2oOVAWoLZDw,179888
39
+ hovercraft/templates/default/js/MathJax/es5/input/mml/entities.js,sha256=kO8PzwAqN8tss9HxFIzqS_y-d_mymCYrJgyHKgZu-XQ,51126
40
+ hovercraft/templates/default/js/MathJax/es5/input/mml/extensions/mml3.js,sha256=F-jxoub89f4TdpMY8qDuZGvWC2QYXkQBIHFl8GjmH_c,28862
41
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/action.js,sha256=N7RJZYk9r7QkgR86eHGKuiz9RQziqTRLU6Wn4k8odKc,2611
42
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/all-packages.js,sha256=tEZh_BNKW1OtPvW_TVh-m0Eul0Ic8z4NqyCV6g6KNJE,215178
43
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/ams.js,sha256=Yk1ZuLhYXT1pqBBrh7rGL4oklbbK6nkGoljOHxX_HqQ,29459
44
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/amscd.js,sha256=fcclbrxYIjec359QRVkwnZfF8m4J4hUNJd1G41pqz5Q,6769
45
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/autoload.js,sha256=dla8Rxy3WkMWf2vesoTJXzIzF4k9Jt9M6qZ21Amsnb8,6357
46
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/bbox.js,sha256=c9IIo0Je0n3qftYfWYS0Osz7qJSbrXB30-rEfmaLp2Q,3006
47
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/boldsymbol.js,sha256=1ncf7gdy2yZXeWyNDiDhh4uzI39tPtHoKOGDSk_3Q8o,4056
48
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/braket.js,sha256=KrsDLKDq_5-yMiootdFLoFjnk00-VpdMVfV0BZ6Qekw,6729
49
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/bussproofs.js,sha256=R8RuARlJ8HAO0CaYsaf8JDzA36lSnkmTXkXuXgkpm9o,18344
50
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/cancel.js,sha256=DSY-zyZx0cwTE1uLSvzcpNQBUamupRtpQC5ord5M-Mk,3326
51
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/cases.js,sha256=nBHgZE2r21rfkGWt739iJDQOrsuW5Ip86aJ948cFbzw,7064
52
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/centernot.js,sha256=oeS-HiDRkKVTx0eWBUM19fd5BBTeuWbNyKeOlBooo1E,3477
53
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/color.js,sha256=f9yPfNoWMPNczVeTeboErdnexQxmzrvAWksSkCezJDU,8627
54
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/colortbl.js,sha256=2cDjljT0Pw4pxtboKjYk4J-YNXR_rlulYVZmD9Sqt5s,5392
55
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/colorv2.js,sha256=MMCcoZtdd4wXGMR-49drCjAd0gQPEfC0rjstWdZ__iE,1998
56
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/configmacros.js,sha256=ptRgTL06fnuWkesQgpHd0Ak7l1A1U1dHjGtjeq0NVBk,4676
57
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/empheq.js,sha256=9CW4Na605Dc7YXa2IlkNcmkvGoXwUBjhA1-_z8O-GEI,11100
58
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/enclose.js,sha256=iAT3VvNplGkZw4j1h_gM8tH9kVH3btN1cNAa-Nf7P0w,2387
59
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/extpfeil.js,sha256=2NXs11q8Qwam1YlELfpmpDRd7hKINHWRvdrxlVE4gWM,3451
60
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/gensymb.js,sha256=n1WvJWYEuJp5gLn5A8bzPOPC0OJ5_TR7mkM_5MWN55Q,2104
61
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/html.js,sha256=42R8hI8mrSKNBwQ_HmPFamRtqdIKbA8YCkBn-p4Q-sw,2969
62
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/mathtools.js,sha256=BCctaaC2R4PNW2aCDW-CIO5RBAnQsSw4YmQEvp7ZaJw,31845
63
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/mhchem.js,sha256=rsLh4cQjEpzz0v6GmAZCM1En0RYXNP_kfdme1nYDhic,38270
64
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/newcommand.js,sha256=pBZppK6SSrg8vD0I-VrpBJCjPNZJ7YZeg2dQEbhwirk,11768
65
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/noerrors.js,sha256=kxejOwDhFOZ5uzzwffBhAjQhMUEqPaztJbcz2jNPLM0,1226
66
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/noundefined.js,sha256=uQ7Pg4pvU2OyYKTdTpOYEquvBi-RI0_iD9Y9HH6IpD8,1852
67
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/physics.js,sha256=g9WtQ-pHi6-FXg75RW1j0tc10Qx4q3VEAZ4MsLgIOoM,24029
68
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/require.js,sha256=1Qj4I8LPOVCb3QiPbdF_3iC0gaix1wKqJAYaAPOABsM,6286
69
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/setoptions.js,sha256=olm4bJ9J_qCKu8Bb9OXtUQ5lhwudfRJ0BOhIZJO4rUA,5549
70
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/tagformat.js,sha256=oUB_C6ar3fU-0wSKrux9UpDfohOHgYFnn0pixgRRV4Q,2864
71
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/textcomp.js,sha256=bqpMk4FFpqzgQoBrLQxxDI1NgGOGyX6dDsDG1uX8MM8,6808
72
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/textmacros.js,sha256=zXg_BI9k9qN1DXFq8OEO0vZTnNGB2s8SBOMj4uQb1kA,16138
73
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/unicode.js,sha256=kD59DRHV1jnrE5Mf09p41Ju_nFm1foKpRdqft7cQE30,3450
74
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/upgreek.js,sha256=QzXXImcbdxhtZJDjJq2tX3J-0tuVTer-zi0QgDy2UaE,2676
75
+ hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/verb.js,sha256=_a-s48E9TyqeMBO_mG_KBNYxdcae7JmxdwXwBqZSjcc,2562
76
+ hovercraft/templates/default/js/MathJax/es5/output/chtml.js,sha256=KHAipWcssCEIEE32oMTRriGcydnlPgbMuMAjxH_4Z84,221887
77
+ hovercraft/templates/default/js/MathJax/es5/output/svg.js,sha256=b97lmbJAhR_SezEBfhoYgC2ZdDrE-uggSZiZcXZkdgk,208515
78
+ hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/tex.js,sha256=tSW3HkGn_bEk72orRNUlDLf8L1bX5zSUrQPQkNDk8oo,104800
79
+ hovercraft/templates/default/js/MathJax/es5/output/svg/fonts/tex.js,sha256=avuOf09_GSVcSxEfSgDAZxa3Dqm5d1FhJ8BU53mdLaQ,1065875
80
+ hovercraft/templates/default/js/MathJax/es5/ui/lazy.js,sha256=ZMtTU_yXZrdgmhSAbbAw_mPuIfdrMfpE0v4xRecSJH4,11148
81
+ hovercraft/templates/default/js/MathJax/es5/ui/menu.js,sha256=qPZaEwV0qXmqZ6wi3WGDRqz7d_-pfN4RJJiwl7zxlw0,425918
82
+ hovercraft/templates/default/js/MathJax/es5/ui/safe.js,sha256=n-9I2GgneovBhS97p5azPq2BLTiRanExsKKepIlhpqQ,11189
83
+ hovercraft/templates/simple/template.cfg,sha256=88SDfYZY-4tHEvhmtcRMYa0a9_HiEqB3qsOb-VwFUU4,207
84
+ hovercraft/templates/simple/template.xsl,sha256=-1JNInuFIWPPtv6SQy0uY9O1u8vXQi-FO5H6uOTxrfY,4980
85
+ hovercraft/templates/simple/css/highlight.css,sha256=0souFR8p9WLMYyul8Q_t47DKEywepH-4ezktGuN5vZ0,3895
86
+ hovercraft/templates/simple/css/hovercraft.css,sha256=raTLhxh4eYWPY3JHo9x2zNEL3373bkjRrhea-UAJheg,1321
87
+ hovercraft/templates/simple/js/hovercraft.js,sha256=7BkrpM9LgFJ5eD-d63Hudj3Y_Va7x2G5WirpGdnw5CI,1960
88
+ hovercraft/templates/simple/js/impress.js,sha256=1tzX7okhg4_cUrQEC9L07q7tjkJYoLHCRZtFpAlzyp8,186005
89
+ prezentprogramo-3.1.dist-info/licenses/LICENSE.txt,sha256=m_xJ4OD1tJkQlH-QoI3zuswEDucZnC4z9vSLvroRJWc,35798
90
+ prezentprogramo-3.1.dist-info/METADATA,sha256=ma-LabcQckVHEHcHaEZ3FoyHh9h4w9Eli1NOZV7S6CE,5845
91
+ prezentprogramo-3.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
92
+ prezentprogramo-3.1.dist-info/entry_points.txt,sha256=hVPJB8vxe93n4BV5yEvBxxaEdCYFtbTWDVHoglMEcJw,105
93
+ prezentprogramo-3.1.dist-info/top_level.txt,sha256=sxpLF19tlLMsJol4psQrjiVCNKppMjVQB8NHBSjybVM,11
94
+ prezentprogramo-3.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,5 @@
1
+ [console_scripts]
2
+ prezentprogramo = hovercraft:main
3
+
4
+ [hovercraft.main]
5
+ prezentprogramo = hovercraft:main