You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

209 line
5.5KB

  1. <!DOCTYPE html>
  2. <html>
  3. <meta charset="utf-8">
  4. <head>
  5. <style>
  6. #header
  7. {
  8. background: #856d51;
  9. padding: 0.7em;
  10. text-align: left;
  11. }
  12. #header a
  13. {
  14. color: white;
  15. text-decoration: none;
  16. padding: 0.5em 1em 0.5em 1em;
  17. }
  18. #title
  19. {
  20. color: #433729;
  21. }
  22. iframe
  23. {
  24. width: 720px;
  25. height: 720px;
  26. }
  27. html
  28. {
  29. font-family: sans-serif;
  30. }
  31. body
  32. {
  33. line-height: 1.5em;
  34. }
  35. body
  36. {
  37. background: #FAFAFA;
  38. }
  39. table
  40. {
  41. border-collapse: collapse;
  42. width: 100%;
  43. }
  44. table, th, td
  45. {
  46. border: 1px solid #aaa;
  47. padding: 0.5em;
  48. margin-top: 0.5em;
  49. margin-bottom: 0.5em;
  50. }
  51. code, pre
  52. {
  53. font-family: monospace, serif;
  54. font-size: 1em;
  55. color: #7f0a0c;
  56. background: #f5f5f5;
  57. white-space: pre-wrap;
  58. }
  59. .contents
  60. {
  61. background: #FFFFFF;
  62. width: 720px;
  63. padding: 1em;
  64. margin-top: 2em;
  65. margin-bottom: 2em;
  66. border: 1px solid #E0E0E0;
  67. text-align: left;
  68. color: #444;
  69. }
  70. </style>
  71. <title>
  72. PSKOV - Opensource Game Studio static site generator
  73. </title>
  74. </head>
  75. <body>
  76. <div id="header">
  77. <strong id="title">PSKOV</strong>
  78. <a href="index.html">Tool</a>
  79. <a href="education.html">Education</a>
  80. </div>
  81. <center><h1>
  82. Education: 01. Why
  83. </h1></center>
  84. <center><div class="contents">
  85. <table>
  86. <thead>
  87. <tr>
  88. <th>&lt; Back</th>
  89. <th>Index</th>
  90. <th>Next &gt;</th>
  91. </tr>
  92. </thead>
  93. <tbody>
  94. <tr>
  95. <td>Not available</td>
  96. <td><a href="education.html">Education</a></td>
  97. <td><a href="education.02.deps.html">02. Dependencies</a></td>
  98. </tr>
  99. </tbody>
  100. </table>
  101. <p></div><div class="contents"></p>
  102. <p>In this document we briefly explain why <strong>PSKOV</strong> was created.</p>
  103. <p>Estimated completion time: 5 minutes.</p>
  104. <p><strong>Table of contents</strong></p>
  105. <ul>
  106. <li><a href="#why">01. Why</a></li>
  107. <li><a href="#features">02. Features</a></li>
  108. </ul>
  109. <p><a name="why"/></p>
  110. <h2 id="01why">01. Why</h2>
  111. <p>You might know there already exist quite a lot of <a href="https://medium.com/codingthesmartway-com-blog/top-static-site-generators-for-2019-26a4c8afcc05">static site generators</a>, why create another one? Because <strong>they are not good enough</strong> for <a href="http://opengamestudio.org">Opensource Game Studio</a> needs.</p>
  112. <p>Here's a list of <strong>features we don't need</strong>:</p>
  113. <table>
  114. <thead>
  115. <tr>
  116. <th>№</th>
  117. <th>Unwelcome feature</th>
  118. <th>Note</th>
  119. </tr>
  120. </thead>
  121. <tbody>
  122. <tr>
  123. <td>1</td>
  124. <td>Learning anything beyond HTML, CSS, JavaScript, and Markdown</td>
  125. <td>These technologies are enough to deliver information to users</td>
  126. </tr>
  127. <tr>
  128. <td>2</td>
  129. <td>Server side</td>
  130. <td>Nobody should be able to pull the plug on you except yourself</td>
  131. </tr>
  132. <tr>
  133. <td>3</td>
  134. <td>Installation</td>
  135. <td>We had enough updates that were never requested</td>
  136. </tr>
  137. <tr>
  138. <td>4</td>
  139. <td>Comprehensible source code</td>
  140. <td>Single file with just enough number of lines</td>
  141. </tr>
  142. </tbody>
  143. </table>
  144. <p><a name="features"/></p>
  145. <h2 id="02features">02. Features</h2>
  146. <p>Consequently, here is a list of <strong>PSKOV features</strong>:</p>
  147. <table>
  148. <thead>
  149. <tr>
  150. <th>№</th>
  151. <th>PSKOV feature</th>
  152. <th>Note</th>
  153. </tr>
  154. </thead>
  155. <tbody>
  156. <tr>
  157. <td>1</td>
  158. <td>Bare HTML, CSS, JavaScript, and Markdown</td>
  159. <td>No need for template language, web framework or anything else</td>
  160. </tr>
  161. <tr>
  162. <td>2</td>
  163. <td>Client side</td>
  164. <td><strong>PSKOV</strong> is a client side JavaScript application, it runs solely on your device</td>
  165. </tr>
  166. <tr>
  167. <td>3</td>
  168. <td>Optional installation</td>
  169. <td><strong>PSKOV</strong> is available at <a href="http://opengamestudio.org/pskov">http://opengamestudio.org/pskov</a>. However, if you want to keep <strong>PSKOV</strong> locally, you can get <strong>PSKOV</strong> single HTML file <a href="http://opengamestudio.org/pskov-201905.html">here</a> and open it locally</td>
  170. </tr>
  171. <tr>
  172. <td>4</td>
  173. <td>Comprehensible source code</td>
  174. <td><strong>PSKOV</strong> is a <a href="http://opengamestudio.org/pskov-201905.html">single HTML file</a> with less than 10000 lines of code</td>
  175. </tr>
  176. <tr>
  177. <td>5</td>
  178. <td>Decades long support (DLS)</td>
  179. <td>You can use <strong>PSKOV</strong> on both Windows 2000 and Windows 2030*</td>
  180. </tr>
  181. </tbody>
  182. </table>
  183. <p>* Windows 2030 does not (yet) exist, we simply refer to the fact that <strong>PSKOV</strong> is designed to work for operating systems released in the range of years 2000-2030</p>
  184. <p></div><div class="contents"></p>
  185. <table>
  186. <thead>
  187. <tr>
  188. <th>&lt; Back</th>
  189. <th>Index</th>
  190. <th>Next &gt;</th>
  191. </tr>
  192. </thead>
  193. <tbody>
  194. <tr>
  195. <td>Not available</td>
  196. <td><a href="education.html">Education</a></td>
  197. <td><a href="education.02.deps.html">02. Dependencies</a></td>
  198. </tr>
  199. </tbody>
  200. </table>
  201. </div></center>
  202. <script type="text/javascript">
  203. </script>
  204. </body>
  205. </html>