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.

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