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.

186 lines
5.1KB

  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. html
  23. {
  24. font-family: sans-serif;
  25. }
  26. body
  27. {
  28. line-height: 1.5em;
  29. }
  30. body
  31. {
  32. background: #FAFAFA;
  33. }
  34. table
  35. {
  36. border-collapse: collapse;
  37. width: 100%;
  38. }
  39. table, th, td
  40. {
  41. border: 1px solid #aaa;
  42. padding: 0.5em;
  43. margin-top: 0.5em;
  44. margin-bottom: 0.5em;
  45. }
  46. code, pre
  47. {
  48. font-family: monospace, serif;
  49. font-size: 1em;
  50. color: #7f0a0c;
  51. background: #f5f5f5;
  52. white-space: pre-wrap;
  53. }
  54. .contents
  55. {
  56. background: #FFFFFF;
  57. width: 720px;
  58. padding: 1em;
  59. margin-top: 2em;
  60. margin-bottom: 2em;
  61. border: 1px solid #E0E0E0;
  62. text-align: left;
  63. color: #444;
  64. }
  65. #footer
  66. {
  67. text-align: center;
  68. }
  69. #lang
  70. {
  71. float: right;
  72. }
  73. </style>
  74. <title>
  75. PSKOV
  76. </title>
  77. </head>
  78. <body>
  79. <div id="header">
  80. <strong id="title">PSKOV</strong>
  81. <a href="pskov_1.0.0.html">Tool</a>
  82. <a href="education.html">Education</a>
  83. <div id="lang">
  84. <a href="../en/education.02.deps.html">EN</a>
  85. <a href="../ru/education.02.deps.html">RU</a>
  86. </div>
  87. </div>
  88. <center><h1>
  89. Education: 02. Dependencies
  90. </h1></center>
  91. <center><div class="contents">
  92. <table>
  93. <thead>
  94. <tr>
  95. <th>&lt; Back</th>
  96. <th>Index</th>
  97. <th>Next &gt;</th>
  98. </tr>
  99. </thead>
  100. <tbody>
  101. <tr>
  102. <td><a href="education.01.why.html">01. Why</a></td>
  103. <td><a href="education.html">Education</a></td>
  104. <td><a href="education.03.site.html">03. Site</a></td>
  105. </tr>
  106. </tbody>
  107. </table>
  108. <p></div><div class="contents"></p>
  109. <p>In this document we describe <strong>PSKOV</strong> dependencies and how to get them.</p>
  110. <p>Estimated completion time: 5 minutes.</p>
  111. <p><strong>Table of contents</strong></p>
  112. <ul>
  113. <li><a href="#deps">01. Dependencies</a></li>
  114. <li><a href="#details">02. Details</a></li>
  115. </ul>
  116. <p><a name="deps"/></p>
  117. <h2 id="01dependencies">01. Dependencies</h2>
  118. <p>We designed <strong>PSKOV</strong> to run inside web browsers. Here is what you need to run <strong>PSKOV</strong>:</p>
  119. <table>
  120. <thead>
  121. <tr>
  122. <th>№</th>
  123. <th>PSKOV dependency</th>
  124. <th>Notes</th>
  125. </tr>
  126. </thead>
  127. <tbody>
  128. <tr>
  129. <td>1</td>
  130. <td>Web browser of 2010 or newer</td>
  131. <td><strong>PSKOV</strong> needs ECMAScript 5 (2009), any modern web browser should work</td>
  132. </tr>
  133. <tr>
  134. <td>2</td>
  135. <td>Local file system access</td>
  136. <td><a href="http://opengamestudio.org/lfsa">LFSA</a> gives <strong>PSKOV</strong> access to your local file system. Install LFSA to be able to use <strong>PSKOV</strong>.</td>
  137. </tr>
  138. </tbody>
  139. </table>
  140. <p><strong>Note</strong>: <a href="http://opengamestudio.org/lfsa">install LFSA</a> to be able to use <strong>PSKOV</strong>.</p>
  141. <p><a name="details"/></p>
  142. <h2 id="02details">02. Details</h2>
  143. <p><strong>PSKOV</strong>:</p>
  144. <ul>
  145. <li>is a client side JavaScript application</li>
  146. <li>has no direct access to local file system</li>
  147. <li>uses <a href="http://opengamestudio.org/lfsa">LFSA</a> to access local file system</li>
  148. <li>uses <a href="https://github.com/showdownjs/showdown">Showdown</a> to convert Markdown to HTML</li>
  149. </ul>
  150. <p><strong>LFSA</strong>:</p>
  151. <ul>
  152. <li>is a tiny Python server to provide read/write access to local file system</li>
  153. <li>runs at 8000 port</li>
  154. <li>is under 200 lines of code, feel free to <a href="https://bitbucket.org/ogstudio/lfsa/src/default/lfsa_1.0.0.py">inspect it</a></li>
  155. </ul>
  156. <p></div><div class="contents"></p>
  157. <table>
  158. <thead>
  159. <tr>
  160. <th>&lt; Back</th>
  161. <th>Index</th>
  162. <th>Next &gt;</th>
  163. </tr>
  164. </thead>
  165. <tbody>
  166. <tr>
  167. <td><a href="education.01.why.html">01. Why</a></td>
  168. <td><a href="education.html">Education</a></td>
  169. <td><a href="education.03.site.html">03. Site</a></td>
  170. </tr>
  171. </tbody>
  172. </table>
  173. </div></center>
  174. <div id="footer">
  175. The site has been generated by <a href="http://opengamestudio.org/pskov">PSKOV</a>
  176. from <a href="http://github.com/ogstudio/site-pskov">this source code</a>.
  177. The site is hosted by <a href="https://pages.github.com">GitHub Pages</a>.
  178. </div>
  179. <script type="text/javascript">
  180. </script>
  181. </body>
  182. </html>