Prezentprogramo 3.1__tar.gz → 3.3__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 (191) hide show
  1. prezentprogramo-3.3/PKG-INFO +247 -0
  2. prezentprogramo-3.3/README.rst +203 -0
  3. prezentprogramo-3.3/docs/examples/cpu/css/style.css +218 -0
  4. prezentprogramo-3.3/docs/examples/cpu.rst +945 -0
  5. prezentprogramo-3.3/docs/examples/style.css +218 -0
  6. prezentprogramo-3.3/docs/todo.rst +272 -0
  7. {prezentprogramo-3.1 → prezentprogramo-3.3}/pyproject.toml +44 -16
  8. prezentprogramo-3.3/src/Prezentprogramo.egg-info/PKG-INFO +247 -0
  9. prezentprogramo-3.3/src/Prezentprogramo.egg-info/SOURCES.txt +183 -0
  10. prezentprogramo-3.3/src/Prezentprogramo.egg-info/entry_points.txt +3 -0
  11. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/Prezentprogramo.egg-info/requires.txt +5 -3
  12. prezentprogramo-3.3/src/Prezentprogramo.egg-info/top_level.txt +2 -0
  13. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/__init__.py +17 -2
  14. prezentprogramo-3.3/src/hovercraft/converter.py +179 -0
  15. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/generate.py +16 -8
  16. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/template.py +9 -0
  17. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/CONTRIBUTING.md +314 -0
  18. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/LICENSE +202 -0
  19. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/README.md +237 -0
  20. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/bower.json +11 -0
  21. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/composer.json +14 -0
  22. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/input/mml/extensions/mml3.sef.json +1 -0
  23. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff +0 -0
  24. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff +0 -0
  25. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff +0 -0
  26. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff +0 -0
  27. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff +0 -0
  28. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff +0 -0
  29. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff +0 -0
  30. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff +0 -0
  31. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff +0 -0
  32. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff +0 -0
  33. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff +0 -0
  34. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff +0 -0
  35. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff +0 -0
  36. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff +0 -0
  37. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff +0 -0
  38. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff +0 -0
  39. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff +0 -0
  40. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff +0 -0
  41. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff +0 -0
  42. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff +0 -0
  43. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff +0 -0
  44. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff +0 -0
  45. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Zero.woff +0 -0
  46. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/sre/mathmaps/base.json +29 -0
  47. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/sre/mathmaps/ca.json +140 -0
  48. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/sre/mathmaps/da.json +140 -0
  49. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/sre/mathmaps/de.json +146 -0
  50. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/sre/mathmaps/en.json +158 -0
  51. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/sre/mathmaps/es.json +140 -0
  52. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/sre/mathmaps/fr.json +146 -0
  53. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/sre/mathmaps/hi.json +146 -0
  54. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/sre/mathmaps/it.json +146 -0
  55. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/sre/mathmaps/nb.json +146 -0
  56. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/sre/mathmaps/nemeth.json +125 -0
  57. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/sre/mathmaps/nn.json +146 -0
  58. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/es5/sre/mathmaps/sv.json +146 -0
  59. prezentprogramo-3.3/src/hovercraft/templates/default/js/MathJax/package.json +59 -0
  60. prezentprogramo-3.3/src/hovercraft/templates/simple/css/highlight.css +61 -0
  61. prezentprogramo-3.3/src/hovercraft/templates/simple/css/hovercraft.css +67 -0
  62. prezentprogramo-3.3/src/prezentprogramo/__init__.py +0 -0
  63. prezentprogramo-3.3/src/prezentprogramo/core.py +41 -0
  64. prezentprogramo-3.3/src/prezentprogramo/data/config.cfg +1 -0
  65. prezentprogramo-3.3/src/prezentprogramo/directives.py +30 -0
  66. prezentprogramo-3.3/src/prezentprogramo/main.py +160 -0
  67. prezentprogramo-3.3/src/prezentprogramo/old1_writers.py +96 -0
  68. prezentprogramo-3.3/src/prezentprogramo/readers.py +98 -0
  69. prezentprogramo-3.3/src/prezentprogramo/run.py +430 -0
  70. prezentprogramo-3.3/src/prezentprogramo/run10.py +224 -0
  71. prezentprogramo-3.3/src/prezentprogramo/run2.py +307 -0
  72. prezentprogramo-3.3/src/prezentprogramo/run3.py +358 -0
  73. prezentprogramo-3.3/src/prezentprogramo/run4.py +302 -0
  74. prezentprogramo-3.3/src/prezentprogramo/run5.py +304 -0
  75. prezentprogramo-3.3/src/prezentprogramo/run6.py +369 -0
  76. prezentprogramo-3.3/src/prezentprogramo/run7.py +373 -0
  77. prezentprogramo-3.3/src/prezentprogramo/run8.py +180 -0
  78. prezentprogramo-3.3/src/prezentprogramo/writers.py +125 -0
  79. prezentprogramo-3.1/PKG-INFO +0 -143
  80. prezentprogramo-3.1/Prezentprogramo.egg-info/PKG-INFO +0 -143
  81. prezentprogramo-3.1/Prezentprogramo.egg-info/SOURCES.txt +0 -116
  82. prezentprogramo-3.1/Prezentprogramo.egg-info/entry_points.txt +0 -5
  83. prezentprogramo-3.1/Prezentprogramo.egg-info/top_level.txt +0 -1
  84. prezentprogramo-3.1/README.rst +0 -102
  85. {prezentprogramo-3.1 → prezentprogramo-3.3}/.coveragerc +0 -0
  86. {prezentprogramo-3.1 → prezentprogramo-3.3}/CONTRIBUTORS.txt +0 -0
  87. {prezentprogramo-3.1 → prezentprogramo-3.3}/LICENSE.txt +0 -0
  88. {prezentprogramo-3.1 → prezentprogramo-3.3}/MANIFEST.in +0 -0
  89. {prezentprogramo-3.1 → prezentprogramo-3.3}/Makefile +0 -0
  90. {prezentprogramo-3.1 → prezentprogramo-3.3}/docs/Makefile +0 -0
  91. {prezentprogramo-3.1 → prezentprogramo-3.3}/docs/conf.py +0 -0
  92. {prezentprogramo-3.1 → prezentprogramo-3.3}/docs/designing.rst +0 -0
  93. {prezentprogramo-3.1/hovercraft/templates/default → prezentprogramo-3.3/docs/examples/cpu}/css/highlight.css +0 -0
  94. {prezentprogramo-3.1/hovercraft/templates/default → prezentprogramo-3.3/docs/examples/cpu}/css/hovercraft.css +0 -0
  95. {prezentprogramo-3.1 → prezentprogramo-3.3}/docs/examples/hovercraft.css +0 -0
  96. {prezentprogramo-3.1 → prezentprogramo-3.3}/docs/examples/hovercraft.rst +0 -0
  97. {prezentprogramo-3.1 → prezentprogramo-3.3}/docs/examples/images/hovercraft_logo.png +0 -0
  98. {prezentprogramo-3.1 → prezentprogramo-3.3}/docs/examples/positions.rst +0 -0
  99. {prezentprogramo-3.1 → prezentprogramo-3.3}/docs/examples/tutorial.css +0 -0
  100. {prezentprogramo-3.1 → prezentprogramo-3.3}/docs/examples/tutorial.rst +0 -0
  101. {prezentprogramo-3.1 → prezentprogramo-3.3}/docs/index.rst +0 -0
  102. {prezentprogramo-3.1 → prezentprogramo-3.3}/docs/introduction.rst +0 -0
  103. {prezentprogramo-3.1 → prezentprogramo-3.3}/docs/make.bat +0 -0
  104. {prezentprogramo-3.1 → prezentprogramo-3.3}/docs/presentations.rst +0 -0
  105. {prezentprogramo-3.1 → prezentprogramo-3.3}/docs/templates.rst +0 -0
  106. {prezentprogramo-3.1 → prezentprogramo-3.3}/docs/usage.rst +0 -0
  107. {prezentprogramo-3.1 → prezentprogramo-3.3}/setup.cfg +0 -0
  108. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/Prezentprogramo.egg-info/dependency_links.txt +0 -0
  109. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/parse.py +0 -0
  110. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/position.py +0 -0
  111. {prezentprogramo-3.1/hovercraft/templates/simple → prezentprogramo-3.3/src/hovercraft/templates/default}/css/highlight.css +0 -0
  112. {prezentprogramo-3.1/hovercraft/templates/simple → prezentprogramo-3.3/src/hovercraft/templates/default}/css/hovercraft.css +0 -0
  113. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/a11y/assistive-mml.js +0 -0
  114. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/a11y/complexity.js +0 -0
  115. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/a11y/explorer.js +0 -0
  116. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/a11y/semantic-enrich.js +0 -0
  117. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/a11y/sre.js +0 -0
  118. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/adaptors/liteDOM.js +0 -0
  119. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/core.js +0 -0
  120. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/asciimath.js +0 -0
  121. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/mml/entities.js +0 -0
  122. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/mml/extensions/mml3.js +0 -0
  123. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/mml.js +0 -0
  124. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/action.js +0 -0
  125. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/all-packages.js +0 -0
  126. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/ams.js +0 -0
  127. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/amscd.js +0 -0
  128. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/autoload.js +0 -0
  129. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/bbox.js +0 -0
  130. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/boldsymbol.js +0 -0
  131. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/braket.js +0 -0
  132. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/bussproofs.js +0 -0
  133. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/cancel.js +0 -0
  134. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/cases.js +0 -0
  135. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/centernot.js +0 -0
  136. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/color.js +0 -0
  137. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/colortbl.js +0 -0
  138. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/colorv2.js +0 -0
  139. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/configmacros.js +0 -0
  140. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/empheq.js +0 -0
  141. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/enclose.js +0 -0
  142. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/extpfeil.js +0 -0
  143. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/gensymb.js +0 -0
  144. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/html.js +0 -0
  145. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/mathtools.js +0 -0
  146. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/mhchem.js +0 -0
  147. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/newcommand.js +0 -0
  148. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/noerrors.js +0 -0
  149. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/noundefined.js +0 -0
  150. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/physics.js +0 -0
  151. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/require.js +0 -0
  152. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/setoptions.js +0 -0
  153. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/tagformat.js +0 -0
  154. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/textcomp.js +0 -0
  155. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/textmacros.js +0 -0
  156. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/unicode.js +0 -0
  157. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/upgreek.js +0 -0
  158. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex/extensions/verb.js +0 -0
  159. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex-base.js +0 -0
  160. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex-full.js +0 -0
  161. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/input/tex.js +0 -0
  162. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/latest.js +0 -0
  163. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/loader.js +0 -0
  164. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/mml-chtml.js +0 -0
  165. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/mml-svg.js +0 -0
  166. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/node-main.js +0 -0
  167. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/output/chtml/fonts/tex.js +0 -0
  168. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/output/chtml.js +0 -0
  169. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/output/svg/fonts/tex.js +0 -0
  170. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/output/svg.js +0 -0
  171. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/startup.js +0 -0
  172. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/tex-chtml-full-speech.js +0 -0
  173. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/tex-chtml-full.js +0 -0
  174. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/tex-chtml.js +0 -0
  175. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/tex-mml-chtml.js +0 -0
  176. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/tex-mml-svg.js +0 -0
  177. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/tex-svg-full.js +0 -0
  178. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/tex-svg.js +0 -0
  179. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/ui/lazy.js +0 -0
  180. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/ui/menu.js +0 -0
  181. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/MathJax/es5/ui/safe.js +0 -0
  182. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/gotoSlide.js +0 -0
  183. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/hovercraft.js +0 -0
  184. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/js/impress.js +0 -0
  185. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/template.cfg +0 -0
  186. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/default/template.xsl +0 -0
  187. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/reST.xsl +0 -0
  188. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/simple/js/hovercraft.js +0 -0
  189. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/simple/js/impress.js +0 -0
  190. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/simple/template.cfg +0 -0
  191. {prezentprogramo-3.1 → prezentprogramo-3.3/src}/hovercraft/templates/simple/template.xsl +0 -0
@@ -0,0 +1,247 @@
1
+ Metadata-Version: 2.4
2
+ Name: Prezentprogramo
3
+ Version: 3.3
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
+ Classifier: Programming Language :: Python :: 3.14
21
+ Requires-Python: >=3.10
22
+ Description-Content-Type: text/x-rst
23
+ License-File: LICENSE.txt
24
+ Requires-Dist: wheel
25
+ Requires-Dist: docutils>=0.21
26
+ Requires-Dist: lxml>=3.1.0
27
+ Requires-Dist: svg.path
28
+ Requires-Dist: pygments
29
+ Requires-Dist: watchdog
30
+ Requires-Dist: ghostscript
31
+ Requires-Dist: packaging
32
+ Requires-Dist: selenium
33
+ Requires-Dist: webdriver_manager
34
+ Requires-Dist: screeninfo
35
+ Requires-Dist: graphviz
36
+ Requires-Dist: beautifulsoup4
37
+ Provides-Extra: test
38
+ Requires-Dist: pytest; extra == "test"
39
+ Requires-Dist: pytest-cov; extra == "test"
40
+ Requires-Dist: manual; extra == "test"
41
+ Provides-Extra: testing
42
+ Requires-Dist: manual; extra == "testing"
43
+ Dynamic: license-file
44
+
45
+ Prezentprogramo
46
+ ===============
47
+ Prezentprogramo is a tool to make `impress.js <https://github.com/impress/impress.js>`_ presentations from
48
+ reStructuredText. For a quick explanation, see one of my `slides <https://yoosofan.github.io/slide/os/ps>`_ or check list of them https://yoosofan.github.io/slide/
49
+
50
+ Based on `Hovercraft! <https://github.com/regebro/hovercraft>`_
51
+
52
+ Features
53
+ --------
54
+ * Write your presentations in a text markup language. No slow, limiting GUI, no annoying HTML!
55
+ * Pan, rotate and zoom in 3D, with automatic repositioning of slides!
56
+ * A presenter console with notes and slide previews!
57
+ * Support for showing mathematical formulas.
58
+ * Styling is easy with CSS.
59
+ * The slide show generated is in HTML, so you only need a web browser to show it.
60
+ * Easy sharing, as it can be put up on a website for anyone to see!
61
+
62
+ Full documentation of Hovercraft is available at https://hovercraft.readthedocs.io/en/latest/ , and also in the
63
+ documentation subdirectory.
64
+
65
+ Installation
66
+ ------------
67
+ Simple but not the best way to install
68
+
69
+ .. code:: sh
70
+
71
+ pip3 install prezentprogramo
72
+
73
+ uv
74
+ ^^
75
+ `uv <https://github.com/astral-sh/uv>`_ is a Python package and project manager.
76
+ Using uv has multiple benefits including installing any version of python3 and
77
+ related packages on it. uv can reduce many conflicts and problems you may face if you use pip alone.
78
+ While it is not necessary but I would recommend to use it instead of pip.
79
+ At first, install `curl <https://curl.se/download.html>`_
80
+
81
+ .. code:: sh
82
+
83
+ curl -LsSf https://astral.sh/uv/install.sh | sh
84
+ uv python install 3.14
85
+ uv venv --python 3.14 myvenv
86
+ source myvenv/bin/activate
87
+ uv tool install prezentprogramo
88
+
89
+ Usage
90
+ -----
91
+ .. code:: sh
92
+
93
+ cd prezentprogramo/docs/examples/
94
+ prezentprogramo cpu.rst
95
+
96
+ It will automatically open browser if it is possible.
97
+ If the browser did not open then run your browser
98
+ and type the following link in your browser.
99
+
100
+ .. code:: sh
101
+
102
+ http://127.0.0.1: 8000
103
+
104
+ Prezentprogramo creates a directory by the name of slide if it is possible.
105
+ However, it is possible to create a seperate directory too.
106
+ For Example you can use my `computer courses slide <https://github.com/yoosofan/slide>`_
107
+ to test it
108
+
109
+ .. code:: sh
110
+
111
+ cd projects/slide/os
112
+ prezentprogramo cpu.rst cpu_htmls/
113
+
114
+ Convert to pdf
115
+ -----------------
116
+ Install google-chrome
117
+
118
+ .. code:: sh
119
+
120
+ prezentprogramo cpu.rst --pdf cpu.pdf
121
+
122
+ Old methods for hovercraft
123
+ --------------------------
124
+ Run hovercraft
125
+ ^^^^^^^^^^^^^^^
126
+ .. code:: sh
127
+
128
+ cd os
129
+ prezentprogramo mem.rst
130
+
131
+ ### Run browser
132
+
133
+ ### Type 127.0.0.1:8000
134
+
135
+ Mothods
136
+ ^^^^^^^^
137
+ Screen Shot
138
+ ```````````````
139
+ #. Take screen shot by operating system
140
+ 1. for ubuntu-mate use short cut < Shift + PrtSc >
141
+ 2. Select the area
142
+ 3. Save
143
+ #. Or use browser screenshot
144
+ #. like https://browsernative.com/screenshot-extension/
145
+ #. convert images to pdf
146
+ 1. Install tools lilke image magic
147
+ 2. sudo apt-get install imagemagick --fix-missing
148
+ 3. link https://help.ubuntu.com/community/ImageMagick
149
+ 4. convert `*.png` mem1.pdf
150
+
151
+ dectape: Convert to pdf
152
+ ```````````````````````````
153
+ https://github.com/astefanutti/decktape
154
+
155
+ https://awesomeopensource.com/project/astefanutti/decktape?categoryPage=29
156
+
157
+ Installation
158
+ ~~~~~~~~~~~~~~~~
159
+ .. code:: sh
160
+
161
+ sudo apt update
162
+ sudo apt install nodejs
163
+ sudo npm install -g npm@latest
164
+ sudo npm install puppeteer --unsafe-perm
165
+ # export PUPPETEER_SKIP_DOWNLOAD='true' #npm i puppeteer
166
+ sudo npm install -g decktape
167
+
168
+ .. code:: sh
169
+
170
+ npm install decktape
171
+ `npm bin`/decktape
172
+
173
+ https://github.com/puppeteer/puppeteer/issues/5656#issuecomment-641412196
174
+ https://stackoverflow.com/questions/63187371/puppeteer-not-able-to-install-error-failed-to-set-up-chromium-r782078-set-pu
175
+
176
+ .. code::
177
+
178
+ ls -l /etc/apt/sources.list.d/
179
+ ls -l /usr/share/keyrings/
180
+
181
+ rm /usr/share/keyrings/nodesource.gpg
182
+ rm /etc/apt/sources.list.d/nodesource.list.save
183
+
184
+ https://unix.stackexchange.com/questions/541939/whats-going-wrong-with-my-attempt-to-install-upgrade-node-js-in-linux
185
+
186
+ .. code:: sh
187
+
188
+ # Using Ubuntu
189
+ curl -k -fsSL https://deb.nodesource.com/setup_15.x | sudo -E bash -
190
+ curl -k -fsSL https://deb.nodesource.com/setup_14.x | sudo -E bash -
191
+ sudo apt-get install -y nodej
192
+
193
+ sudo apt-get remove nodejs npm node
194
+ sudo apt-get purge nodejs
195
+
196
+ sudo rm -rf /usr/local/bin/npm
197
+ sudo rm -rf /usr/local/share/man/man1/node*
198
+ sudo rm -rf /usr/local/lib/dtrace/node.d
199
+ sudo rm -rf ~/.npm
200
+ sudo rm -rf ~/.node-gyp
201
+ sudo rm -rf /opt/local/bin/node
202
+ sudo rm -rf opt/local/include/node
203
+ sudo rm -rf /opt/local/lib/node_modules
204
+
205
+ sudo rm -rf /usr/local/lib/node*
206
+ sudo rm -rf /usr/local/include/node*
207
+ sudo rm -rf /usr/local/bin/node
208
+
209
+ Instructions
210
+ ~~~~~~~~~~~~~~~
211
+ .. code:: sh
212
+
213
+ `npm bin`/decktape --slides 1-70 --chrome-path /usr/bin/google-chrome impress http://127.0.0.1:8000/ ~/os922.pdf
214
+ decktape --chrome-path /usr/bin/google-chrome impress http://127.0.0.1:8000/ ~/os915.pdf
215
+ decktape --slides 1,111-273 --chrome-path /usr/bin/google-chrome impress http://127.0.0.1:8000/ ~/os913.pdf
216
+ decktape --slides 1-120 --chrome-path /usr/bin/google-chrome impress http://127.0.0.1:8000/ ~/830.pdf
217
+ decktape --slides 1-120 --chrome-path /usr/bin/google-chrome impress http://127.0.0.1:8000/ ~/d/830.pdf
218
+ decktape --slides 1-111 --chrome-path /usr/bin/google-chrome impress http://127.0.0.1:8000/ ~/901.pdf
219
+ decktape impress http://127.0.0.1:8000/ ~/test/f4.pdf
220
+ decktape --chrome-path /usr/bin/google-chrome impress http://127.0.0.1:8000/ ~/test/dectape/f1.pdf
221
+ decktape --slides 1,2,3 --chrome-path /usr/bin/google-chrome impress http://127.0.0.1:8000/ ~/test/dectape/f2.pdf
222
+ decktape --slides 1,13,116,117 --chrome-path /usr/bin/google-chrome impress http://127.0.0.1:8000/ ~/test/dectape/f3.pdf
223
+ decktape --chrome-path /usr/bin/google-chrome impress http://127.0.0.1:8000/ ~/test/dectape/f4.pdf
224
+
225
+ Errors "decktape" "TimeoutError:" Navigation timeout of 20000 ms exceeded
226
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
227
+ * https://giters.com/astefanutti/decktape/issues/224
228
+ * https://github.com/astefanutti/decktape/blob/9874f9e708b3eebcfa7e3061b591070e395c1fb3/decktape.js#L220
229
+ * https://github.com/puppeteer/puppeteer/issues/782
230
+ * https://ourcodeworld.com/articles/read/1106/how-to-solve-puppeteer-timeouterror-navigation-timeout-of-30000-ms-exceeded
231
+ * https://www.bountysource.com/teams/decktape/issues
232
+ * https://www.barelysignificant.com/IMSB2020/slides/Cours05#/79
233
+
234
+ Samples
235
+ ~~~~~~~~~
236
+ .. code:: sh
237
+
238
+ # Capture a single slide
239
+ $ decktape --slides 1
240
+ # Capture a series of slides
241
+ $ decktape --slides 1,3,5
242
+ # Capture a range of slides
243
+ $ decktape --slides 1-10
244
+ # Capture a combination of slides and ranges
245
+ $ decktape --slides 1,2,5-10
246
+ $ decktape --slides 1,2,5-10 -s 1024x768
247
+
@@ -0,0 +1,203 @@
1
+ Prezentprogramo
2
+ ===============
3
+ Prezentprogramo is a tool to make `impress.js <https://github.com/impress/impress.js>`_ presentations from
4
+ reStructuredText. For a quick explanation, see one of my `slides <https://yoosofan.github.io/slide/os/ps>`_ or check list of them https://yoosofan.github.io/slide/
5
+
6
+ Based on `Hovercraft! <https://github.com/regebro/hovercraft>`_
7
+
8
+ Features
9
+ --------
10
+ * Write your presentations in a text markup language. No slow, limiting GUI, no annoying HTML!
11
+ * Pan, rotate and zoom in 3D, with automatic repositioning of slides!
12
+ * A presenter console with notes and slide previews!
13
+ * Support for showing mathematical formulas.
14
+ * Styling is easy with CSS.
15
+ * The slide show generated is in HTML, so you only need a web browser to show it.
16
+ * Easy sharing, as it can be put up on a website for anyone to see!
17
+
18
+ Full documentation of Hovercraft is available at https://hovercraft.readthedocs.io/en/latest/ , and also in the
19
+ documentation subdirectory.
20
+
21
+ Installation
22
+ ------------
23
+ Simple but not the best way to install
24
+
25
+ .. code:: sh
26
+
27
+ pip3 install prezentprogramo
28
+
29
+ uv
30
+ ^^
31
+ `uv <https://github.com/astral-sh/uv>`_ is a Python package and project manager.
32
+ Using uv has multiple benefits including installing any version of python3 and
33
+ related packages on it. uv can reduce many conflicts and problems you may face if you use pip alone.
34
+ While it is not necessary but I would recommend to use it instead of pip.
35
+ At first, install `curl <https://curl.se/download.html>`_
36
+
37
+ .. code:: sh
38
+
39
+ curl -LsSf https://astral.sh/uv/install.sh | sh
40
+ uv python install 3.14
41
+ uv venv --python 3.14 myvenv
42
+ source myvenv/bin/activate
43
+ uv tool install prezentprogramo
44
+
45
+ Usage
46
+ -----
47
+ .. code:: sh
48
+
49
+ cd prezentprogramo/docs/examples/
50
+ prezentprogramo cpu.rst
51
+
52
+ It will automatically open browser if it is possible.
53
+ If the browser did not open then run your browser
54
+ and type the following link in your browser.
55
+
56
+ .. code:: sh
57
+
58
+ http://127.0.0.1: 8000
59
+
60
+ Prezentprogramo creates a directory by the name of slide if it is possible.
61
+ However, it is possible to create a seperate directory too.
62
+ For Example you can use my `computer courses slide <https://github.com/yoosofan/slide>`_
63
+ to test it
64
+
65
+ .. code:: sh
66
+
67
+ cd projects/slide/os
68
+ prezentprogramo cpu.rst cpu_htmls/
69
+
70
+ Convert to pdf
71
+ -----------------
72
+ Install google-chrome
73
+
74
+ .. code:: sh
75
+
76
+ prezentprogramo cpu.rst --pdf cpu.pdf
77
+
78
+ Old methods for hovercraft
79
+ --------------------------
80
+ Run hovercraft
81
+ ^^^^^^^^^^^^^^^
82
+ .. code:: sh
83
+
84
+ cd os
85
+ prezentprogramo mem.rst
86
+
87
+ ### Run browser
88
+
89
+ ### Type 127.0.0.1:8000
90
+
91
+ Mothods
92
+ ^^^^^^^^
93
+ Screen Shot
94
+ ```````````````
95
+ #. Take screen shot by operating system
96
+ 1. for ubuntu-mate use short cut < Shift + PrtSc >
97
+ 2. Select the area
98
+ 3. Save
99
+ #. Or use browser screenshot
100
+ #. like https://browsernative.com/screenshot-extension/
101
+ #. convert images to pdf
102
+ 1. Install tools lilke image magic
103
+ 2. sudo apt-get install imagemagick --fix-missing
104
+ 3. link https://help.ubuntu.com/community/ImageMagick
105
+ 4. convert `*.png` mem1.pdf
106
+
107
+ dectape: Convert to pdf
108
+ ```````````````````````````
109
+ https://github.com/astefanutti/decktape
110
+
111
+ https://awesomeopensource.com/project/astefanutti/decktape?categoryPage=29
112
+
113
+ Installation
114
+ ~~~~~~~~~~~~~~~~
115
+ .. code:: sh
116
+
117
+ sudo apt update
118
+ sudo apt install nodejs
119
+ sudo npm install -g npm@latest
120
+ sudo npm install puppeteer --unsafe-perm
121
+ # export PUPPETEER_SKIP_DOWNLOAD='true' #npm i puppeteer
122
+ sudo npm install -g decktape
123
+
124
+ .. code:: sh
125
+
126
+ npm install decktape
127
+ `npm bin`/decktape
128
+
129
+ https://github.com/puppeteer/puppeteer/issues/5656#issuecomment-641412196
130
+ https://stackoverflow.com/questions/63187371/puppeteer-not-able-to-install-error-failed-to-set-up-chromium-r782078-set-pu
131
+
132
+ .. code::
133
+
134
+ ls -l /etc/apt/sources.list.d/
135
+ ls -l /usr/share/keyrings/
136
+
137
+ rm /usr/share/keyrings/nodesource.gpg
138
+ rm /etc/apt/sources.list.d/nodesource.list.save
139
+
140
+ https://unix.stackexchange.com/questions/541939/whats-going-wrong-with-my-attempt-to-install-upgrade-node-js-in-linux
141
+
142
+ .. code:: sh
143
+
144
+ # Using Ubuntu
145
+ curl -k -fsSL https://deb.nodesource.com/setup_15.x | sudo -E bash -
146
+ curl -k -fsSL https://deb.nodesource.com/setup_14.x | sudo -E bash -
147
+ sudo apt-get install -y nodej
148
+
149
+ sudo apt-get remove nodejs npm node
150
+ sudo apt-get purge nodejs
151
+
152
+ sudo rm -rf /usr/local/bin/npm
153
+ sudo rm -rf /usr/local/share/man/man1/node*
154
+ sudo rm -rf /usr/local/lib/dtrace/node.d
155
+ sudo rm -rf ~/.npm
156
+ sudo rm -rf ~/.node-gyp
157
+ sudo rm -rf /opt/local/bin/node
158
+ sudo rm -rf opt/local/include/node
159
+ sudo rm -rf /opt/local/lib/node_modules
160
+
161
+ sudo rm -rf /usr/local/lib/node*
162
+ sudo rm -rf /usr/local/include/node*
163
+ sudo rm -rf /usr/local/bin/node
164
+
165
+ Instructions
166
+ ~~~~~~~~~~~~~~~
167
+ .. code:: sh
168
+
169
+ `npm bin`/decktape --slides 1-70 --chrome-path /usr/bin/google-chrome impress http://127.0.0.1:8000/ ~/os922.pdf
170
+ decktape --chrome-path /usr/bin/google-chrome impress http://127.0.0.1:8000/ ~/os915.pdf
171
+ decktape --slides 1,111-273 --chrome-path /usr/bin/google-chrome impress http://127.0.0.1:8000/ ~/os913.pdf
172
+ decktape --slides 1-120 --chrome-path /usr/bin/google-chrome impress http://127.0.0.1:8000/ ~/830.pdf
173
+ decktape --slides 1-120 --chrome-path /usr/bin/google-chrome impress http://127.0.0.1:8000/ ~/d/830.pdf
174
+ decktape --slides 1-111 --chrome-path /usr/bin/google-chrome impress http://127.0.0.1:8000/ ~/901.pdf
175
+ decktape impress http://127.0.0.1:8000/ ~/test/f4.pdf
176
+ decktape --chrome-path /usr/bin/google-chrome impress http://127.0.0.1:8000/ ~/test/dectape/f1.pdf
177
+ decktape --slides 1,2,3 --chrome-path /usr/bin/google-chrome impress http://127.0.0.1:8000/ ~/test/dectape/f2.pdf
178
+ decktape --slides 1,13,116,117 --chrome-path /usr/bin/google-chrome impress http://127.0.0.1:8000/ ~/test/dectape/f3.pdf
179
+ decktape --chrome-path /usr/bin/google-chrome impress http://127.0.0.1:8000/ ~/test/dectape/f4.pdf
180
+
181
+ Errors "decktape" "TimeoutError:" Navigation timeout of 20000 ms exceeded
182
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
183
+ * https://giters.com/astefanutti/decktape/issues/224
184
+ * https://github.com/astefanutti/decktape/blob/9874f9e708b3eebcfa7e3061b591070e395c1fb3/decktape.js#L220
185
+ * https://github.com/puppeteer/puppeteer/issues/782
186
+ * https://ourcodeworld.com/articles/read/1106/how-to-solve-puppeteer-timeouterror-navigation-timeout-of-30000-ms-exceeded
187
+ * https://www.bountysource.com/teams/decktape/issues
188
+ * https://www.barelysignificant.com/IMSB2020/slides/Cours05#/79
189
+
190
+ Samples
191
+ ~~~~~~~~~
192
+ .. code:: sh
193
+
194
+ # Capture a single slide
195
+ $ decktape --slides 1
196
+ # Capture a series of slides
197
+ $ decktape --slides 1,3,5
198
+ # Capture a range of slides
199
+ $ decktape --slides 1-10
200
+ # Capture a combination of slides and ranges
201
+ $ decktape --slides 1,2,5-10
202
+ $ decktape --slides 1,2,5-10 -s 1024x768
203
+
@@ -0,0 +1,218 @@
1
+ body {
2
+ text-align: center; /*font-family: DejaVu Serif, Liberation Serif, FreeSerif;*/
3
+ font-size: large; /* font-family: Nazli, Libre Baskerville; background-color: white #EBEEEE #E8E0F1 #F0F1E0 #E0EAF1 #E2E5E7 #ECEFDE #DEEFDE #007bff #00b2e3 #D0F0D0 #F3E2E2 #D1D8E4; #728ec2;*/
4
+ }
5
+
6
+ #step-X html,body{ /* https://stackoverflow.com/questions/37560602/how-to-fill-the-screen-with-image-in-impress-js */
7
+ margin:0;
8
+ height:100%;
9
+ overflow:hidden;
10
+ }
11
+ #step-X img{
12
+ min-height:100%;
13
+ min-width:100%;
14
+ height:auto;
15
+ width:auto;
16
+ position:absolute;
17
+ top:-100%; bottom:-100%;
18
+ left:-100%; right:-100%;
19
+ margin:auto;
20
+ }
21
+
22
+ p {
23
+ font-size: 120%;
24
+ font-weight: normal;
25
+ margin-bottom: 0.3em;
26
+ margin-top: 0.3em;
27
+ }
28
+
29
+ em { /*font-family: Satisfy;*/
30
+ font-size: 122%;
31
+ }
32
+
33
+ strong { /*font-family: Racing Sans One;*/
34
+ font-size: 117%;
35
+ letter-spacing: -2px;
36
+ }
37
+
38
+ h1, h2, h3, h4 {
39
+ font-weight: normal;
40
+ margin-bottom: 0.3em;
41
+ margin-top: 0.3em;
42
+ }
43
+
44
+ ul, ol, pre.code{
45
+ text-align: left;
46
+ font-size: 120%;
47
+ }
48
+
49
+ pre.code{font-size:120%; font-family: monospace; padding-top: 0.1em; padding-bottom: 0.1em; padding-left: 0.2em; padding-right: 0.2em; border-style: solid; border-left-width: 0.5em; border-top-width: thin; border-right-width: thin; border-bottom-width: thin; border-color: #95ABD0;} /*justify-self: center;*/
50
+ pre.code > .ln {background-color: #DFE5F1;}
51
+ pre.code { background-color:#f0f0f0;}
52
+ pre.console{background-color: #F9E0E0;}
53
+ ol.trace-code{
54
+ background-color: #F3F2CD;
55
+ color: #27435F/* #466E95*/;
56
+ padding-left: 1.5em;
57
+ padding-right: 1em;
58
+ list-style: none;
59
+ counter-reset: my-awesome-counter; /* justify-self: start; */
60
+ }
61
+ ol.trace-code li {
62
+ counter-increment: my-awesome-counter;
63
+ }
64
+ ol.trace-code li::before {
65
+ content: counter(my-awesome-counter) ". ";
66
+ color: red;
67
+ font-weight: bold;
68
+ }
69
+
70
+ #ThreeD H1 {
71
+ font-family: Racing Sans One;
72
+ font-size: 300%;
73
+ }
74
+
75
+ #thequestion p {
76
+ font-family: Racing Sans One;
77
+ }
78
+
79
+ .footer {
80
+ position: absolute;
81
+ top: 95%;
82
+ font-size: 50%;
83
+ }
84
+
85
+ table.smallerelementwithfullborder, table.smallerelementwithfullborder tr, table.smallerelementwithfullborder td, table.smallerelementwithfullborder th {
86
+ border: 1px solid black;
87
+ font-size: 90%;
88
+ }
89
+ .rtl {direction:rtl;text-align:right;font-family:Nazli;font-size:large;}
90
+ .ltr {direction:ltr;text-align:left;}
91
+
92
+ .rtl-h1{
93
+ direction: rtl;
94
+ font-size: xx-large;
95
+ text-align: center;
96
+ margin-bottom: 0.1em;
97
+ margin-top: 0.1em;
98
+ font-family: Nazli;
99
+ }
100
+
101
+ .rtl-h2{
102
+ direction: rtl;
103
+ font-size: x-large;
104
+ text-align: center;
105
+ margin-bottom: 0.1em;
106
+ margin-top: 0.1em;
107
+ font-family: Nazli;
108
+ }
109
+
110
+ .rtl-h3{
111
+ direction: rtl;
112
+ font-size: large;
113
+ text-align: center;
114
+ margin-bottom: 0.1em;
115
+ margin-top: 0.1em;
116
+ font-family: Nazli;
117
+ }
118
+
119
+ ol.rtl-h1, ol.rtl-h2, ol.rtl-h3, ul.rtl-h1, ul.rtl-h2, ul.rtl-h3{
120
+ text-align: right;
121
+ font-size: large;
122
+ }
123
+
124
+ ol.rtl-h1 li, ol.rtl-h2 li, ol.rtl-h3 li, ul.rtl-h1 li, ul.rtl-h2 li, ul.rtl-h3 li{
125
+ text-align: right;
126
+ font-size: large;
127
+ }
128
+
129
+ table.smallerelementwithfullborder th, table.smallerelementwithfullborder th p{
130
+ font-weight: bold;
131
+ }
132
+
133
+ #imporatnce-of-track-or-cylinder-id > ol {direction: rtl; text-align: right;}
134
+
135
+ .grid-2col-class{
136
+ display: grid;
137
+ grid-template-columns: 1fr 1fr;
138
+ align-items: stretch; /* overflow: scroll;*/
139
+ }
140
+
141
+ .grid-2col1fr2fr-class{
142
+ display: grid;
143
+ grid-template-columns: 1fr 2fr;
144
+ align-items: stretch;
145
+ overflow: scroll;
146
+ }
147
+
148
+ .grid-3col{
149
+ display: grid;
150
+ grid-template-columns: auto auto auto;
151
+ justify-items: center;
152
+ align-items: center ;
153
+ gap: 2px ;
154
+ }
155
+
156
+ div.yoo-grid-auto-flow-column{
157
+ display: grid;
158
+ gap: 2rem;
159
+ grid-auto-flow: column;
160
+ grid-template-columns: repeat(auto-fit, minmax(min-content, 1fr));
161
+ justify-items: stretch;
162
+ padding: 10px;
163
+ /* https://theindustrydirect.com/notes/spaces/space-database/css-cascading-style-sheets/css-notes-database/flexbox-like-quotjust-put-elements-in-a-rowquot-with-css-grid
164
+ * https://css-tricks.com/flexbox-like-just-put-elements-in-a-row-with-css-grid/
165
+ */
166
+ }
167
+ div.t2c{
168
+ display: grid;
169
+ grid-template-columns: auto auto;
170
+ justify-items: center;
171
+ align-items: center ;
172
+ gap: 10px ;
173
+ }
174
+ div.t2c > h1, div.t2c > .rtl-h1{
175
+ grid-column: 1 / 3;
176
+ background-color: #E6F4FA;
177
+ }
178
+ div.scrollbar-box800x500px-overflow{
179
+ width: 800px;
180
+ height: 500px;
181
+ overflow: scroll;
182
+ }
183
+ .tableheaderwithgraybackground th {
184
+ font-weight: bold;
185
+ background-color: #BFBFBF;
186
+ }
187
+
188
+ table.yoo-gantt-chart tr td { border: solid 1px;}
189
+ table.yoo-gantt-chart tr:nth-of-type(1) td:last-of-type{
190
+ border: 0;
191
+ }
192
+ table.yoo-gantt-chart tr:nth-of-type(2) td{
193
+ border: 0;
194
+ text-align: left;
195
+ }
196
+
197
+ table.yoo-memory {width: 98%;}
198
+ table.yoo-memory tr td { border: solid 1px;}
199
+ table.yoo-memory tr:nth-of-type(1) td{
200
+ text-align: center;
201
+ }
202
+ table.yoo-memory tr:nth-of-type(2) td{
203
+ border: 0;
204
+ text-align: left;
205
+ }
206
+ table.yoo-memory tr:nth-of-type(1) td:last-of-type{
207
+ border: 0;
208
+ text-align: right;
209
+ visible: false;
210
+ }
211
+
212
+ table.borderless * {border: 0;}
213
+
214
+ .center {
215
+ margin: auto; /*width: 50%;*/
216
+ padding: 5px;
217
+ text-align: center;
218
+ }