chaskiq 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (365) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +34 -0
  3. data/lib/chaskiq/version.rb +1 -1
  4. data/vendor/assets/images/animated-overlay.gif +0 -0
  5. data/vendor/assets/images/blueimp/img/error.png +0 -0
  6. data/vendor/assets/images/blueimp/img/error.svg +5 -0
  7. data/vendor/assets/images/blueimp/img/loading.gif +0 -0
  8. data/vendor/assets/images/blueimp/img/play-pause.png +0 -0
  9. data/vendor/assets/images/blueimp/img/play-pause.svg +6 -0
  10. data/vendor/assets/images/blueimp/img/video-play.png +0 -0
  11. data/vendor/assets/images/blueimp/img/video-play.svg +5 -0
  12. data/vendor/assets/images/bootstrap-colorpicker/alpha-horizontal.png +0 -0
  13. data/vendor/assets/images/bootstrap-colorpicker/alpha.png +0 -0
  14. data/vendor/assets/images/bootstrap-colorpicker/hue-horizontal.png +0 -0
  15. data/vendor/assets/images/bootstrap-colorpicker/hue.png +0 -0
  16. data/vendor/assets/images/bootstrap-colorpicker/saturation.png +0 -0
  17. data/vendor/assets/images/chosen-sprite.png +0 -0
  18. data/vendor/assets/images/chosen-sprite@2x.png +0 -0
  19. data/vendor/assets/images/green.png +0 -0
  20. data/vendor/assets/images/green@2x.png +0 -0
  21. data/vendor/assets/images/images/animated-overlay.gif +0 -0
  22. data/vendor/assets/images/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  23. data/vendor/assets/images/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  24. data/vendor/assets/images/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  25. data/vendor/assets/images/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  26. data/vendor/assets/images/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  27. data/vendor/assets/images/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  28. data/vendor/assets/images/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  29. data/vendor/assets/images/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  30. data/vendor/assets/images/images/ui-icons_222222_256x240.png +0 -0
  31. data/vendor/assets/images/images/ui-icons_2e83ff_256x240.png +0 -0
  32. data/vendor/assets/images/images/ui-icons_454545_256x240.png +0 -0
  33. data/vendor/assets/images/images/ui-icons_888888_256x240.png +0 -0
  34. data/vendor/assets/images/images/ui-icons_cd0a0a_256x240.png +0 -0
  35. data/vendor/assets/images/sort.png +0 -0
  36. data/vendor/assets/images/sort_asc.png +0 -0
  37. data/vendor/assets/images/sort_desc.png +0 -0
  38. data/vendor/assets/images/sprite-skin-flat.png +0 -0
  39. data/vendor/assets/images/sprite-skin-flat2.png +0 -0
  40. data/vendor/assets/images/sprite-skin-nice.png +0 -0
  41. data/vendor/assets/images/sprite-skin-simple.png +0 -0
  42. data/vendor/assets/images/spritemap.png +0 -0
  43. data/vendor/assets/images/spritemap@2x.png +0 -0
  44. data/vendor/assets/javascripts/backbone/backbone.min.js +2 -0
  45. data/vendor/assets/javascripts/backbone/underscore.min.js +6 -0
  46. data/vendor/assets/javascripts/chartjs/Chart.min.js +11 -0
  47. data/vendor/assets/javascripts/codemirror/codemirror.js +7830 -0
  48. data/vendor/assets/javascripts/codemirror/mode/apl/apl.js +175 -0
  49. data/vendor/assets/javascripts/codemirror/mode/apl/index.html +72 -0
  50. data/vendor/assets/javascripts/codemirror/mode/asterisk/asterisk.js +198 -0
  51. data/vendor/assets/javascripts/codemirror/mode/asterisk/index.html +154 -0
  52. data/vendor/assets/javascripts/codemirror/mode/clike/clike.js +474 -0
  53. data/vendor/assets/javascripts/codemirror/mode/clike/index.html +225 -0
  54. data/vendor/assets/javascripts/codemirror/mode/clike/scala.html +767 -0
  55. data/vendor/assets/javascripts/codemirror/mode/clojure/clojure.js +243 -0
  56. data/vendor/assets/javascripts/codemirror/mode/clojure/index.html +88 -0
  57. data/vendor/assets/javascripts/codemirror/mode/cobol/cobol.js +255 -0
  58. data/vendor/assets/javascripts/codemirror/mode/cobol/index.html +210 -0
  59. data/vendor/assets/javascripts/codemirror/mode/coffeescript/coffeescript.js +369 -0
  60. data/vendor/assets/javascripts/codemirror/mode/coffeescript/index.html +740 -0
  61. data/vendor/assets/javascripts/codemirror/mode/commonlisp/commonlisp.js +120 -0
  62. data/vendor/assets/javascripts/codemirror/mode/commonlisp/index.html +177 -0
  63. data/vendor/assets/javascripts/codemirror/mode/css/css.js +717 -0
  64. data/vendor/assets/javascripts/codemirror/mode/css/index.html +70 -0
  65. data/vendor/assets/javascripts/codemirror/mode/css/less.html +152 -0
  66. data/vendor/assets/javascripts/codemirror/mode/css/less_test.js +51 -0
  67. data/vendor/assets/javascripts/codemirror/mode/css/scss.html +157 -0
  68. data/vendor/assets/javascripts/codemirror/mode/css/scss_test.js +110 -0
  69. data/vendor/assets/javascripts/codemirror/mode/css/test.js +135 -0
  70. data/vendor/assets/javascripts/codemirror/mode/cypher/cypher.js +146 -0
  71. data/vendor/assets/javascripts/codemirror/mode/cypher/index.html +63 -0
  72. data/vendor/assets/javascripts/codemirror/mode/d/d.js +218 -0
  73. data/vendor/assets/javascripts/codemirror/mode/d/index.html +273 -0
  74. data/vendor/assets/javascripts/codemirror/mode/diff/diff.js +47 -0
  75. data/vendor/assets/javascripts/codemirror/mode/diff/index.html +117 -0
  76. data/vendor/assets/javascripts/codemirror/mode/django/django.js +67 -0
  77. data/vendor/assets/javascripts/codemirror/mode/django/index.html +63 -0
  78. data/vendor/assets/javascripts/codemirror/mode/dtd/dtd.js +142 -0
  79. data/vendor/assets/javascripts/codemirror/mode/dtd/index.html +89 -0
  80. data/vendor/assets/javascripts/codemirror/mode/dylan/dylan.js +299 -0
  81. data/vendor/assets/javascripts/codemirror/mode/dylan/index.html +407 -0
  82. data/vendor/assets/javascripts/codemirror/mode/ecl/ecl.js +207 -0
  83. data/vendor/assets/javascripts/codemirror/mode/ecl/index.html +52 -0
  84. data/vendor/assets/javascripts/codemirror/mode/eiffel/eiffel.js +162 -0
  85. data/vendor/assets/javascripts/codemirror/mode/eiffel/index.html +429 -0
  86. data/vendor/assets/javascripts/codemirror/mode/erlang/erlang.js +622 -0
  87. data/vendor/assets/javascripts/codemirror/mode/erlang/index.html +76 -0
  88. data/vendor/assets/javascripts/codemirror/mode/fortran/fortran.js +188 -0
  89. data/vendor/assets/javascripts/codemirror/mode/fortran/index.html +81 -0
  90. data/vendor/assets/javascripts/codemirror/mode/gas/gas.js +345 -0
  91. data/vendor/assets/javascripts/codemirror/mode/gas/index.html +68 -0
  92. data/vendor/assets/javascripts/codemirror/mode/gfm/gfm.js +122 -0
  93. data/vendor/assets/javascripts/codemirror/mode/gfm/index.html +82 -0
  94. data/vendor/assets/javascripts/codemirror/mode/gfm/test.js +164 -0
  95. data/vendor/assets/javascripts/codemirror/mode/gherkin/gherkin.js +178 -0
  96. data/vendor/assets/javascripts/codemirror/mode/gherkin/index.html +48 -0
  97. data/vendor/assets/javascripts/codemirror/mode/go/go.js +184 -0
  98. data/vendor/assets/javascripts/codemirror/mode/go/index.html +85 -0
  99. data/vendor/assets/javascripts/codemirror/mode/groovy/groovy.js +226 -0
  100. data/vendor/assets/javascripts/codemirror/mode/groovy/index.html +84 -0
  101. data/vendor/assets/javascripts/codemirror/mode/haml/haml.js +159 -0
  102. data/vendor/assets/javascripts/codemirror/mode/haml/index.html +79 -0
  103. data/vendor/assets/javascripts/codemirror/mode/haml/test.js +97 -0
  104. data/vendor/assets/javascripts/codemirror/mode/haskell/haskell.js +267 -0
  105. data/vendor/assets/javascripts/codemirror/mode/haskell/index.html +73 -0
  106. data/vendor/assets/javascripts/codemirror/mode/haxe/haxe.js +518 -0
  107. data/vendor/assets/javascripts/codemirror/mode/haxe/index.html +124 -0
  108. data/vendor/assets/javascripts/codemirror/mode/htmlembedded/htmlembedded.js +86 -0
  109. data/vendor/assets/javascripts/codemirror/mode/htmlembedded/index.html +58 -0
  110. data/vendor/assets/javascripts/codemirror/mode/htmlmixed/htmlmixed.js +121 -0
  111. data/vendor/assets/javascripts/codemirror/mode/htmlmixed/index.html +85 -0
  112. data/vendor/assets/javascripts/codemirror/mode/http/http.js +113 -0
  113. data/vendor/assets/javascripts/codemirror/mode/http/index.html +45 -0
  114. data/vendor/assets/javascripts/codemirror/mode/index.html +125 -0
  115. data/vendor/assets/javascripts/codemirror/mode/jade/index.html +70 -0
  116. data/vendor/assets/javascripts/codemirror/mode/jade/jade.js +590 -0
  117. data/vendor/assets/javascripts/codemirror/mode/javascript/index.html +114 -0
  118. data/vendor/assets/javascripts/codemirror/mode/javascript/javascript.js +684 -0
  119. data/vendor/assets/javascripts/codemirror/mode/javascript/json-ld.html +72 -0
  120. data/vendor/assets/javascripts/codemirror/mode/javascript/test.js +194 -0
  121. data/vendor/assets/javascripts/codemirror/mode/javascript/typescript.html +61 -0
  122. data/vendor/assets/javascripts/codemirror/mode/jinja2/index.html +54 -0
  123. data/vendor/assets/javascripts/codemirror/mode/jinja2/jinja2.js +142 -0
  124. data/vendor/assets/javascripts/codemirror/mode/julia/index.html +195 -0
  125. data/vendor/assets/javascripts/codemirror/mode/julia/julia.js +301 -0
  126. data/vendor/assets/javascripts/codemirror/mode/kotlin/index.html +89 -0
  127. data/vendor/assets/javascripts/codemirror/mode/kotlin/kotlin.js +280 -0
  128. data/vendor/assets/javascripts/codemirror/mode/livescript/index.html +459 -0
  129. data/vendor/assets/javascripts/codemirror/mode/livescript/livescript.js +280 -0
  130. data/vendor/assets/javascripts/codemirror/mode/lua/index.html +85 -0
  131. data/vendor/assets/javascripts/codemirror/mode/lua/lua.js +159 -0
  132. data/vendor/assets/javascripts/codemirror/mode/markdown/index.html +359 -0
  133. data/vendor/assets/javascripts/codemirror/mode/markdown/markdown.js +758 -0
  134. data/vendor/assets/javascripts/codemirror/mode/markdown/test.js +754 -0
  135. data/vendor/assets/javascripts/codemirror/mode/meta.js +144 -0
  136. data/vendor/assets/javascripts/codemirror/mode/mirc/index.html +160 -0
  137. data/vendor/assets/javascripts/codemirror/mode/mirc/mirc.js +193 -0
  138. data/vendor/assets/javascripts/codemirror/mode/mllike/index.html +179 -0
  139. data/vendor/assets/javascripts/codemirror/mode/mllike/mllike.js +205 -0
  140. data/vendor/assets/javascripts/codemirror/mode/modelica/index.html +67 -0
  141. data/vendor/assets/javascripts/codemirror/mode/modelica/modelica.js +245 -0
  142. data/vendor/assets/javascripts/codemirror/mode/nginx/index.html +181 -0
  143. data/vendor/assets/javascripts/codemirror/mode/nginx/nginx.js +178 -0
  144. data/vendor/assets/javascripts/codemirror/mode/ntriples/index.html +45 -0
  145. data/vendor/assets/javascripts/codemirror/mode/ntriples/ntriples.js +186 -0
  146. data/vendor/assets/javascripts/codemirror/mode/octave/index.html +83 -0
  147. data/vendor/assets/javascripts/codemirror/mode/octave/octave.js +135 -0
  148. data/vendor/assets/javascripts/codemirror/mode/pascal/index.html +61 -0
  149. data/vendor/assets/javascripts/codemirror/mode/pascal/pascal.js +109 -0
  150. data/vendor/assets/javascripts/codemirror/mode/pegjs/index.html +66 -0
  151. data/vendor/assets/javascripts/codemirror/mode/pegjs/pegjs.js +114 -0
  152. data/vendor/assets/javascripts/codemirror/mode/perl/index.html +75 -0
  153. data/vendor/assets/javascripts/codemirror/mode/perl/perl.js +832 -0
  154. data/vendor/assets/javascripts/codemirror/mode/php/index.html +64 -0
  155. data/vendor/assets/javascripts/codemirror/mode/php/php.js +226 -0
  156. data/vendor/assets/javascripts/codemirror/mode/php/test.js +154 -0
  157. data/vendor/assets/javascripts/codemirror/mode/pig/index.html +55 -0
  158. data/vendor/assets/javascripts/codemirror/mode/pig/pig.js +188 -0
  159. data/vendor/assets/javascripts/codemirror/mode/properties/index.html +53 -0
  160. data/vendor/assets/javascripts/codemirror/mode/properties/properties.js +78 -0
  161. data/vendor/assets/javascripts/codemirror/mode/puppet/index.html +121 -0
  162. data/vendor/assets/javascripts/codemirror/mode/puppet/puppet.js +220 -0
  163. data/vendor/assets/javascripts/codemirror/mode/python/index.html +198 -0
  164. data/vendor/assets/javascripts/codemirror/mode/python/python.js +359 -0
  165. data/vendor/assets/javascripts/codemirror/mode/q/index.html +144 -0
  166. data/vendor/assets/javascripts/codemirror/mode/q/q.js +139 -0
  167. data/vendor/assets/javascripts/codemirror/mode/r/index.html +85 -0
  168. data/vendor/assets/javascripts/codemirror/mode/r/r.js +162 -0
  169. data/vendor/assets/javascripts/codemirror/mode/rpm/changes/index.html +66 -0
  170. data/vendor/assets/javascripts/codemirror/mode/rpm/index.html +149 -0
  171. data/vendor/assets/javascripts/codemirror/mode/rpm/rpm.js +101 -0
  172. data/vendor/assets/javascripts/codemirror/mode/rst/index.html +535 -0
  173. data/vendor/assets/javascripts/codemirror/mode/rst/rst.js +557 -0
  174. data/vendor/assets/javascripts/codemirror/mode/ruby/index.html +184 -0
  175. data/vendor/assets/javascripts/codemirror/mode/ruby/ruby.js +285 -0
  176. data/vendor/assets/javascripts/codemirror/mode/ruby/test.js +14 -0
  177. data/vendor/assets/javascripts/codemirror/mode/rust/index.html +60 -0
  178. data/vendor/assets/javascripts/codemirror/mode/rust/rust.js +451 -0
  179. data/vendor/assets/javascripts/codemirror/mode/sass/index.html +66 -0
  180. data/vendor/assets/javascripts/codemirror/mode/sass/sass.js +327 -0
  181. data/vendor/assets/javascripts/codemirror/mode/scheme/index.html +77 -0
  182. data/vendor/assets/javascripts/codemirror/mode/scheme/scheme.js +248 -0
  183. data/vendor/assets/javascripts/codemirror/mode/shell/index.html +66 -0
  184. data/vendor/assets/javascripts/codemirror/mode/shell/shell.js +138 -0
  185. data/vendor/assets/javascripts/codemirror/mode/shell/test.js +58 -0
  186. data/vendor/assets/javascripts/codemirror/mode/sieve/index.html +93 -0
  187. data/vendor/assets/javascripts/codemirror/mode/sieve/sieve.js +193 -0
  188. data/vendor/assets/javascripts/codemirror/mode/slim/index.html +96 -0
  189. data/vendor/assets/javascripts/codemirror/mode/slim/slim.js +575 -0
  190. data/vendor/assets/javascripts/codemirror/mode/slim/test.js +96 -0
  191. data/vendor/assets/javascripts/codemirror/mode/smalltalk/index.html +68 -0
  192. data/vendor/assets/javascripts/codemirror/mode/smalltalk/smalltalk.js +168 -0
  193. data/vendor/assets/javascripts/codemirror/mode/smarty/index.html +136 -0
  194. data/vendor/assets/javascripts/codemirror/mode/smarty/smarty.js +221 -0
  195. data/vendor/assets/javascripts/codemirror/mode/smartymixed/index.html +114 -0
  196. data/vendor/assets/javascripts/codemirror/mode/smartymixed/smartymixed.js +197 -0
  197. data/vendor/assets/javascripts/codemirror/mode/solr/index.html +57 -0
  198. data/vendor/assets/javascripts/codemirror/mode/solr/solr.js +104 -0
  199. data/vendor/assets/javascripts/codemirror/mode/sparql/index.html +53 -0
  200. data/vendor/assets/javascripts/codemirror/mode/sparql/sparql.js +160 -0
  201. data/vendor/assets/javascripts/codemirror/mode/sql/index.html +84 -0
  202. data/vendor/assets/javascripts/codemirror/mode/sql/sql.js +393 -0
  203. data/vendor/assets/javascripts/codemirror/mode/stex/index.html +110 -0
  204. data/vendor/assets/javascripts/codemirror/mode/stex/stex.js +262 -0
  205. data/vendor/assets/javascripts/codemirror/mode/stex/test.js +123 -0
  206. data/vendor/assets/javascripts/codemirror/mode/tcl/index.html +142 -0
  207. data/vendor/assets/javascripts/codemirror/mode/tcl/tcl.js +147 -0
  208. data/vendor/assets/javascripts/codemirror/mode/textile/index.html +191 -0
  209. data/vendor/assets/javascripts/codemirror/mode/textile/test.js +406 -0
  210. data/vendor/assets/javascripts/codemirror/mode/textile/textile.js +553 -0
  211. data/vendor/assets/javascripts/codemirror/mode/tiddlywiki/index.html +154 -0
  212. data/vendor/assets/javascripts/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
  213. data/vendor/assets/javascripts/codemirror/mode/tiddlywiki/tiddlywiki.js +369 -0
  214. data/vendor/assets/javascripts/codemirror/mode/tiki/index.html +95 -0
  215. data/vendor/assets/javascripts/codemirror/mode/tiki/tiki.css +26 -0
  216. data/vendor/assets/javascripts/codemirror/mode/tiki/tiki.js +323 -0
  217. data/vendor/assets/javascripts/codemirror/mode/toml/index.html +73 -0
  218. data/vendor/assets/javascripts/codemirror/mode/toml/toml.js +88 -0
  219. data/vendor/assets/javascripts/codemirror/mode/tornado/index.html +63 -0
  220. data/vendor/assets/javascripts/codemirror/mode/tornado/tornado.js +68 -0
  221. data/vendor/assets/javascripts/codemirror/mode/turtle/index.html +50 -0
  222. data/vendor/assets/javascripts/codemirror/mode/turtle/turtle.js +160 -0
  223. data/vendor/assets/javascripts/codemirror/mode/vb/index.html +102 -0
  224. data/vendor/assets/javascripts/codemirror/mode/vb/vb.js +274 -0
  225. data/vendor/assets/javascripts/codemirror/mode/vbscript/index.html +55 -0
  226. data/vendor/assets/javascripts/codemirror/mode/vbscript/vbscript.js +350 -0
  227. data/vendor/assets/javascripts/codemirror/mode/velocity/index.html +118 -0
  228. data/vendor/assets/javascripts/codemirror/mode/velocity/velocity.js +201 -0
  229. data/vendor/assets/javascripts/codemirror/mode/verilog/index.html +120 -0
  230. data/vendor/assets/javascripts/codemirror/mode/verilog/test.js +273 -0
  231. data/vendor/assets/javascripts/codemirror/mode/verilog/verilog.js +364 -0
  232. data/vendor/assets/javascripts/codemirror/mode/xml/index.html +57 -0
  233. data/vendor/assets/javascripts/codemirror/mode/xml/test.js +51 -0
  234. data/vendor/assets/javascripts/codemirror/mode/xml/xml.js +384 -0
  235. data/vendor/assets/javascripts/codemirror/mode/xquery/index.html +210 -0
  236. data/vendor/assets/javascripts/codemirror/mode/xquery/test.js +67 -0
  237. data/vendor/assets/javascripts/codemirror/mode/xquery/xquery.js +447 -0
  238. data/vendor/assets/javascripts/codemirror/mode/yaml/index.html +80 -0
  239. data/vendor/assets/javascripts/codemirror/mode/yaml/yaml.js +112 -0
  240. data/vendor/assets/javascripts/codemirror/mode/z80/index.html +52 -0
  241. data/vendor/assets/javascripts/codemirror/mode/z80/z80.js +100 -0
  242. data/vendor/assets/javascripts/datapicker/bootstrap-datepicker.js +1671 -0
  243. data/vendor/assets/javascripts/flot/curvedLines.js +315 -0
  244. data/vendor/assets/javascripts/flot/excanvas.min.js +1 -0
  245. data/vendor/assets/javascripts/flot/jquery.flot.js +3168 -0
  246. data/vendor/assets/javascripts/flot/jquery.flot.pie.js +820 -0
  247. data/vendor/assets/javascripts/flot/jquery.flot.resize.js +59 -0
  248. data/vendor/assets/javascripts/flot/jquery.flot.spline.js +212 -0
  249. data/vendor/assets/javascripts/flot/jquery.flot.symbol.js +71 -0
  250. data/vendor/assets/javascripts/flot/jquery.flot.time.js +432 -0
  251. data/vendor/assets/javascripts/flot/jquery.flot.tooltip.min.js +12 -0
  252. data/vendor/assets/javascripts/jquery/jquery-2.1.1.js +4 -0
  253. data/vendor/assets/javascripts/jquery-ui/i18n/jquery-ui-i18n.min.js +6 -0
  254. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-af.min.js +4 -0
  255. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-ar-DZ.min.js +4 -0
  256. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-ar.min.js +4 -0
  257. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-az.min.js +4 -0
  258. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-be.min.js +4 -0
  259. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-bg.min.js +4 -0
  260. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-bs.min.js +4 -0
  261. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-ca.min.js +4 -0
  262. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-cs.min.js +4 -0
  263. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-cy-GB.min.js +4 -0
  264. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-da.min.js +4 -0
  265. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-de.min.js +4 -0
  266. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-el.min.js +4 -0
  267. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-en-AU.min.js +4 -0
  268. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-en-GB.min.js +4 -0
  269. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-en-NZ.min.js +4 -0
  270. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-eo.min.js +4 -0
  271. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-es.min.js +4 -0
  272. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-et.min.js +4 -0
  273. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-eu.min.js +4 -0
  274. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-fa.min.js +4 -0
  275. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-fi.min.js +4 -0
  276. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-fo.min.js +4 -0
  277. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-fr-CA.min.js +4 -0
  278. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-fr-CH.min.js +4 -0
  279. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-fr.min.js +4 -0
  280. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-gl.min.js +4 -0
  281. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-he.min.js +4 -0
  282. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-hi.min.js +4 -0
  283. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-hr.min.js +4 -0
  284. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-hu.min.js +4 -0
  285. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-hy.min.js +4 -0
  286. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-id.min.js +4 -0
  287. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-is.min.js +4 -0
  288. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-it.min.js +4 -0
  289. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-ja.min.js +4 -0
  290. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-ka.min.js +4 -0
  291. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-kk.min.js +4 -0
  292. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-km.min.js +4 -0
  293. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-ko.min.js +4 -0
  294. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-ky.min.js +4 -0
  295. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-lb.min.js +4 -0
  296. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-lt.min.js +4 -0
  297. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-lv.min.js +4 -0
  298. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-mk.min.js +4 -0
  299. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-ml.min.js +4 -0
  300. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-ms.min.js +4 -0
  301. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-nb.min.js +4 -0
  302. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-nl-BE.min.js +4 -0
  303. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-nl.min.js +4 -0
  304. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-nn.min.js +4 -0
  305. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-no.min.js +4 -0
  306. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-pl.min.js +4 -0
  307. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-pt-BR.min.js +4 -0
  308. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-pt.min.js +4 -0
  309. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-rm.min.js +4 -0
  310. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-ro.min.js +4 -0
  311. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-ru.min.js +4 -0
  312. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-sk.min.js +4 -0
  313. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-sl.min.js +4 -0
  314. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-sq.min.js +4 -0
  315. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-sr-SR.min.js +4 -0
  316. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-sr.min.js +4 -0
  317. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-sv.min.js +4 -0
  318. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-ta.min.js +4 -0
  319. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-th.min.js +4 -0
  320. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-tj.min.js +4 -0
  321. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-tr.min.js +4 -0
  322. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-uk.min.js +4 -0
  323. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-vi.min.js +4 -0
  324. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-zh-CN.min.js +4 -0
  325. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-zh-HK.min.js +4 -0
  326. data/vendor/assets/javascripts/jquery-ui/i18n/jquery.ui.datepicker-zh-TW.min.js +4 -0
  327. data/vendor/assets/javascripts/jquery-ui/images/animated-overlay.gif +0 -0
  328. data/vendor/assets/javascripts/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  329. data/vendor/assets/javascripts/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  330. data/vendor/assets/javascripts/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  331. data/vendor/assets/javascripts/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  332. data/vendor/assets/javascripts/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  333. data/vendor/assets/javascripts/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  334. data/vendor/assets/javascripts/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  335. data/vendor/assets/javascripts/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  336. data/vendor/assets/javascripts/jquery-ui/images/ui-icons_222222_256x240.png +0 -0
  337. data/vendor/assets/javascripts/jquery-ui/images/ui-icons_2e83ff_256x240.png +0 -0
  338. data/vendor/assets/javascripts/jquery-ui/images/ui-icons_454545_256x240.png +0 -0
  339. data/vendor/assets/javascripts/jquery-ui/images/ui-icons_888888_256x240.png +0 -0
  340. data/vendor/assets/javascripts/jquery-ui/images/ui-icons_cd0a0a_256x240.png +0 -0
  341. data/vendor/assets/javascripts/jquery-ui/jquery-ui-1.10.4.custom.min.css +7 -0
  342. data/vendor/assets/javascripts/jquery-ui/jquery-ui-1.10.4.min.js +7 -0
  343. data/vendor/assets/javascripts/jquery-ui/jquery-ui.css +1189 -0
  344. data/vendor/assets/javascripts/jquery-ui/jquery-ui.js +15040 -0
  345. data/vendor/assets/javascripts/jquery-ui/jquery-ui.min.css +4 -0
  346. data/vendor/assets/javascripts/jquery-ui/jquery-ui.min.js +12 -0
  347. data/vendor/assets/javascripts/metisMenu/jquery.metisMenu.js +120 -0
  348. data/vendor/assets/javascripts/morris/morris.js +1888 -0
  349. data/vendor/assets/javascripts/morris/raphael-2.1.0.min.js +10 -0
  350. data/vendor/assets/javascripts/pace/pace.min.js +2 -0
  351. data/vendor/assets/javascripts/peity/jquery.peity.min.js +13 -0
  352. data/vendor/assets/javascripts/radioactive/radioactive.min.js +1 -0
  353. data/vendor/assets/javascripts/rickshaw/rickshaw.min.js +3 -0
  354. data/vendor/assets/javascripts/rickshaw/vendor/d3.v3.js +5 -0
  355. data/vendor/assets/javascripts/sparkline/jquery.sparkline.min.js +5 -0
  356. data/vendor/assets/javascripts/summernote/summernote.min.js +6331 -0
  357. data/vendor/assets/javascripts/toastr/toastr.min.js +2 -0
  358. data/vendor/assets/stylesheets/codemirror/codemirror.css +309 -0
  359. data/vendor/assets/stylesheets/codemirror/elegant.css +13 -0
  360. data/vendor/assets/stylesheets/datapicker/datepicker3.css +789 -0
  361. data/vendor/assets/stylesheets/summernote/summernote-bs3.css +5970 -0
  362. data/vendor/assets/stylesheets/summernote/summernote.css +446 -0
  363. data/vendor/assets/stylesheets/toastr/toastr.css +222 -0
  364. metadata +362 -3
  365. data/spec/dummy/tmp/pids/server.pid +0 -1
@@ -0,0 +1,535 @@
1
+ <!doctype html>
2
+
3
+ <title>CodeMirror: reStructuredText mode</title>
4
+ <meta charset="utf-8"/>
5
+ <link rel=stylesheet href="../../doc/docs.css">
6
+
7
+ <link rel="stylesheet" href="../../lib/codemirror.css">
8
+ <script src="../../lib/codemirror.js"></script>
9
+ <script src="../../addon/mode/overlay.js"></script>
10
+ <script src="rst.js"></script>
11
+ <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
12
+ <div id=nav>
13
+ <a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a>
14
+
15
+ <ul>
16
+ <li><a href="../../index.html">Home</a>
17
+ <li><a href="../../doc/manual.html">Manual</a>
18
+ <li><a href="https://github.com/codemirror/codemirror">Code</a>
19
+ </ul>
20
+ <ul>
21
+ <li><a href="../index.html">Language modes</a>
22
+ <li><a class=active href="#">reStructuredText</a>
23
+ </ul>
24
+ </div>
25
+
26
+ <article>
27
+ <h2>reStructuredText mode</h2>
28
+ <form><textarea id="code" name="code">
29
+ .. This is an excerpt from Sphinx documentation: http://sphinx.pocoo.org/_sources/rest.txt
30
+
31
+ .. highlightlang:: rest
32
+
33
+ .. _rst-primer:
34
+
35
+ reStructuredText Primer
36
+ =======================
37
+
38
+ This section is a brief introduction to reStructuredText (reST) concepts and
39
+ syntax, intended to provide authors with enough information to author documents
40
+ productively. Since reST was designed to be a simple, unobtrusive markup
41
+ language, this will not take too long.
42
+
43
+ .. seealso::
44
+
45
+ The authoritative `reStructuredText User Documentation
46
+ &lt;http://docutils.sourceforge.net/rst.html&gt;`_. The "ref" links in this
47
+ document link to the description of the individual constructs in the reST
48
+ reference.
49
+
50
+
51
+ Paragraphs
52
+ ----------
53
+
54
+ The paragraph (:duref:`ref &lt;paragraphs&gt;`) is the most basic block in a reST
55
+ document. Paragraphs are simply chunks of text separated by one or more blank
56
+ lines. As in Python, indentation is significant in reST, so all lines of the
57
+ same paragraph must be left-aligned to the same level of indentation.
58
+
59
+
60
+ .. _inlinemarkup:
61
+
62
+ Inline markup
63
+ -------------
64
+
65
+ The standard reST inline markup is quite simple: use
66
+
67
+ * one asterisk: ``*text*`` for emphasis (italics),
68
+ * two asterisks: ``**text**`` for strong emphasis (boldface), and
69
+ * backquotes: ````text```` for code samples.
70
+
71
+ If asterisks or backquotes appear in running text and could be confused with
72
+ inline markup delimiters, they have to be escaped with a backslash.
73
+
74
+ Be aware of some restrictions of this markup:
75
+
76
+ * it may not be nested,
77
+ * content may not start or end with whitespace: ``* text*`` is wrong,
78
+ * it must be separated from surrounding text by non-word characters. Use a
79
+ backslash escaped space to work around that: ``thisis\ *one*\ word``.
80
+
81
+ These restrictions may be lifted in future versions of the docutils.
82
+
83
+ reST also allows for custom "interpreted text roles"', which signify that the
84
+ enclosed text should be interpreted in a specific way. Sphinx uses this to
85
+ provide semantic markup and cross-referencing of identifiers, as described in
86
+ the appropriate section. The general syntax is ``:rolename:`content```.
87
+
88
+ Standard reST provides the following roles:
89
+
90
+ * :durole:`emphasis` -- alternate spelling for ``*emphasis*``
91
+ * :durole:`strong` -- alternate spelling for ``**strong**``
92
+ * :durole:`literal` -- alternate spelling for ````literal````
93
+ * :durole:`subscript` -- subscript text
94
+ * :durole:`superscript` -- superscript text
95
+ * :durole:`title-reference` -- for titles of books, periodicals, and other
96
+ materials
97
+
98
+ See :ref:`inline-markup` for roles added by Sphinx.
99
+
100
+
101
+ Lists and Quote-like blocks
102
+ ---------------------------
103
+
104
+ List markup (:duref:`ref &lt;bullet-lists&gt;`) is natural: just place an asterisk at
105
+ the start of a paragraph and indent properly. The same goes for numbered lists;
106
+ they can also be autonumbered using a ``#`` sign::
107
+
108
+ * This is a bulleted list.
109
+ * It has two items, the second
110
+ item uses two lines.
111
+
112
+ 1. This is a numbered list.
113
+ 2. It has two items too.
114
+
115
+ #. This is a numbered list.
116
+ #. It has two items too.
117
+
118
+
119
+ Nested lists are possible, but be aware that they must be separated from the
120
+ parent list items by blank lines::
121
+
122
+ * this is
123
+ * a list
124
+
125
+ * with a nested list
126
+ * and some subitems
127
+
128
+ * and here the parent list continues
129
+
130
+ Definition lists (:duref:`ref &lt;definition-lists&gt;`) are created as follows::
131
+
132
+ term (up to a line of text)
133
+ Definition of the term, which must be indented
134
+
135
+ and can even consist of multiple paragraphs
136
+
137
+ next term
138
+ Description.
139
+
140
+ Note that the term cannot have more than one line of text.
141
+
142
+ Quoted paragraphs (:duref:`ref &lt;block-quotes&gt;`) are created by just indenting
143
+ them more than the surrounding paragraphs.
144
+
145
+ Line blocks (:duref:`ref &lt;line-blocks&gt;`) are a way of preserving line breaks::
146
+
147
+ | These lines are
148
+ | broken exactly like in
149
+ | the source file.
150
+
151
+ There are also several more special blocks available:
152
+
153
+ * field lists (:duref:`ref &lt;field-lists&gt;`)
154
+ * option lists (:duref:`ref &lt;option-lists&gt;`)
155
+ * quoted literal blocks (:duref:`ref &lt;quoted-literal-blocks&gt;`)
156
+ * doctest blocks (:duref:`ref &lt;doctest-blocks&gt;`)
157
+
158
+
159
+ Source Code
160
+ -----------
161
+
162
+ Literal code blocks (:duref:`ref &lt;literal-blocks&gt;`) are introduced by ending a
163
+ paragraph with the special marker ``::``. The literal block must be indented
164
+ (and, like all paragraphs, separated from the surrounding ones by blank lines)::
165
+
166
+ This is a normal text paragraph. The next paragraph is a code sample::
167
+
168
+ It is not processed in any way, except
169
+ that the indentation is removed.
170
+
171
+ It can span multiple lines.
172
+
173
+ This is a normal text paragraph again.
174
+
175
+ The handling of the ``::`` marker is smart:
176
+
177
+ * If it occurs as a paragraph of its own, that paragraph is completely left
178
+ out of the document.
179
+ * If it is preceded by whitespace, the marker is removed.
180
+ * If it is preceded by non-whitespace, the marker is replaced by a single
181
+ colon.
182
+
183
+ That way, the second sentence in the above example's first paragraph would be
184
+ rendered as "The next paragraph is a code sample:".
185
+
186
+
187
+ .. _rst-tables:
188
+
189
+ Tables
190
+ ------
191
+
192
+ Two forms of tables are supported. For *grid tables* (:duref:`ref
193
+ &lt;grid-tables&gt;`), you have to "paint" the cell grid yourself. They look like
194
+ this::
195
+
196
+ +------------------------+------------+----------+----------+
197
+ | Header row, column 1 | Header 2 | Header 3 | Header 4 |
198
+ | (header rows optional) | | | |
199
+ +========================+============+==========+==========+
200
+ | body row 1, column 1 | column 2 | column 3 | column 4 |
201
+ +------------------------+------------+----------+----------+
202
+ | body row 2 | ... | ... | |
203
+ +------------------------+------------+----------+----------+
204
+
205
+ *Simple tables* (:duref:`ref &lt;simple-tables&gt;`) are easier to write, but
206
+ limited: they must contain more than one row, and the first column cannot
207
+ contain multiple lines. They look like this::
208
+
209
+ ===== ===== =======
210
+ A B A and B
211
+ ===== ===== =======
212
+ False False False
213
+ True False False
214
+ False True False
215
+ True True True
216
+ ===== ===== =======
217
+
218
+
219
+ Hyperlinks
220
+ ----------
221
+
222
+ External links
223
+ ^^^^^^^^^^^^^^
224
+
225
+ Use ```Link text &lt;http://example.com/&gt;`_`` for inline web links. If the link
226
+ text should be the web address, you don't need special markup at all, the parser
227
+ finds links and mail addresses in ordinary text.
228
+
229
+ You can also separate the link and the target definition (:duref:`ref
230
+ &lt;hyperlink-targets&gt;`), like this::
231
+
232
+ This is a paragraph that contains `a link`_.
233
+
234
+ .. _a link: http://example.com/
235
+
236
+
237
+ Internal links
238
+ ^^^^^^^^^^^^^^
239
+
240
+ Internal linking is done via a special reST role provided by Sphinx, see the
241
+ section on specific markup, :ref:`ref-role`.
242
+
243
+
244
+ Sections
245
+ --------
246
+
247
+ Section headers (:duref:`ref &lt;sections&gt;`) are created by underlining (and
248
+ optionally overlining) the section title with a punctuation character, at least
249
+ as long as the text::
250
+
251
+ =================
252
+ This is a heading
253
+ =================
254
+
255
+ Normally, there are no heading levels assigned to certain characters as the
256
+ structure is determined from the succession of headings. However, for the
257
+ Python documentation, this convention is used which you may follow:
258
+
259
+ * ``#`` with overline, for parts
260
+ * ``*`` with overline, for chapters
261
+ * ``=``, for sections
262
+ * ``-``, for subsections
263
+ * ``^``, for subsubsections
264
+ * ``"``, for paragraphs
265
+
266
+ Of course, you are free to use your own marker characters (see the reST
267
+ documentation), and use a deeper nesting level, but keep in mind that most
268
+ target formats (HTML, LaTeX) have a limited supported nesting depth.
269
+
270
+
271
+ Explicit Markup
272
+ ---------------
273
+
274
+ "Explicit markup" (:duref:`ref &lt;explicit-markup-blocks&gt;`) is used in reST for
275
+ most constructs that need special handling, such as footnotes,
276
+ specially-highlighted paragraphs, comments, and generic directives.
277
+
278
+ An explicit markup block begins with a line starting with ``..`` followed by
279
+ whitespace and is terminated by the next paragraph at the same level of
280
+ indentation. (There needs to be a blank line between explicit markup and normal
281
+ paragraphs. This may all sound a bit complicated, but it is intuitive enough
282
+ when you write it.)
283
+
284
+
285
+ .. _directives:
286
+
287
+ Directives
288
+ ----------
289
+
290
+ A directive (:duref:`ref &lt;directives&gt;`) is a generic block of explicit markup.
291
+ Besides roles, it is one of the extension mechanisms of reST, and Sphinx makes
292
+ heavy use of it.
293
+
294
+ Docutils supports the following directives:
295
+
296
+ * Admonitions: :dudir:`attention`, :dudir:`caution`, :dudir:`danger`,
297
+ :dudir:`error`, :dudir:`hint`, :dudir:`important`, :dudir:`note`,
298
+ :dudir:`tip`, :dudir:`warning` and the generic :dudir:`admonition`.
299
+ (Most themes style only "note" and "warning" specially.)
300
+
301
+ * Images:
302
+
303
+ - :dudir:`image` (see also Images_ below)
304
+ - :dudir:`figure` (an image with caption and optional legend)
305
+
306
+ * Additional body elements:
307
+
308
+ - :dudir:`contents` (a local, i.e. for the current file only, table of
309
+ contents)
310
+ - :dudir:`container` (a container with a custom class, useful to generate an
311
+ outer ``&lt;div&gt;`` in HTML)
312
+ - :dudir:`rubric` (a heading without relation to the document sectioning)
313
+ - :dudir:`topic`, :dudir:`sidebar` (special highlighted body elements)
314
+ - :dudir:`parsed-literal` (literal block that supports inline markup)
315
+ - :dudir:`epigraph` (a block quote with optional attribution line)
316
+ - :dudir:`highlights`, :dudir:`pull-quote` (block quotes with their own
317
+ class attribute)
318
+ - :dudir:`compound` (a compound paragraph)
319
+
320
+ * Special tables:
321
+
322
+ - :dudir:`table` (a table with title)
323
+ - :dudir:`csv-table` (a table generated from comma-separated values)
324
+ - :dudir:`list-table` (a table generated from a list of lists)
325
+
326
+ * Special directives:
327
+
328
+ - :dudir:`raw` (include raw target-format markup)
329
+ - :dudir:`include` (include reStructuredText from another file)
330
+ -- in Sphinx, when given an absolute include file path, this directive takes
331
+ it as relative to the source directory
332
+ - :dudir:`class` (assign a class attribute to the next element) [1]_
333
+
334
+ * HTML specifics:
335
+
336
+ - :dudir:`meta` (generation of HTML ``&lt;meta&gt;`` tags)
337
+ - :dudir:`title` (override document title)
338
+
339
+ * Influencing markup:
340
+
341
+ - :dudir:`default-role` (set a new default role)
342
+ - :dudir:`role` (create a new role)
343
+
344
+ Since these are only per-file, better use Sphinx' facilities for setting the
345
+ :confval:`default_role`.
346
+
347
+ Do *not* use the directives :dudir:`sectnum`, :dudir:`header` and
348
+ :dudir:`footer`.
349
+
350
+ Directives added by Sphinx are described in :ref:`sphinxmarkup`.
351
+
352
+ Basically, a directive consists of a name, arguments, options and content. (Keep
353
+ this terminology in mind, it is used in the next chapter describing custom
354
+ directives.) Looking at this example, ::
355
+
356
+ .. function:: foo(x)
357
+ foo(y, z)
358
+ :module: some.module.name
359
+
360
+ Return a line of text input from the user.
361
+
362
+ ``function`` is the directive name. It is given two arguments here, the
363
+ remainder of the first line and the second line, as well as one option
364
+ ``module`` (as you can see, options are given in the lines immediately following
365
+ the arguments and indicated by the colons). Options must be indented to the
366
+ same level as the directive content.
367
+
368
+ The directive content follows after a blank line and is indented relative to the
369
+ directive start.
370
+
371
+
372
+ Images
373
+ ------
374
+
375
+ reST supports an image directive (:dudir:`ref &lt;image&gt;`), used like so::
376
+
377
+ .. image:: gnu.png
378
+ (options)
379
+
380
+ When used within Sphinx, the file name given (here ``gnu.png``) must either be
381
+ relative to the source file, or absolute which means that they are relative to
382
+ the top source directory. For example, the file ``sketch/spam.rst`` could refer
383
+ to the image ``images/spam.png`` as ``../images/spam.png`` or
384
+ ``/images/spam.png``.
385
+
386
+ Sphinx will automatically copy image files over to a subdirectory of the output
387
+ directory on building (e.g. the ``_static`` directory for HTML output.)
388
+
389
+ Interpretation of image size options (``width`` and ``height``) is as follows:
390
+ if the size has no unit or the unit is pixels, the given size will only be
391
+ respected for output channels that support pixels (i.e. not in LaTeX output).
392
+ Other units (like ``pt`` for points) will be used for HTML and LaTeX output.
393
+
394
+ Sphinx extends the standard docutils behavior by allowing an asterisk for the
395
+ extension::
396
+
397
+ .. image:: gnu.*
398
+
399
+ Sphinx then searches for all images matching the provided pattern and determines
400
+ their type. Each builder then chooses the best image out of these candidates.
401
+ For instance, if the file name ``gnu.*`` was given and two files :file:`gnu.pdf`
402
+ and :file:`gnu.png` existed in the source tree, the LaTeX builder would choose
403
+ the former, while the HTML builder would prefer the latter.
404
+
405
+ .. versionchanged:: 0.4
406
+ Added the support for file names ending in an asterisk.
407
+
408
+ .. versionchanged:: 0.6
409
+ Image paths can now be absolute.
410
+
411
+
412
+ Footnotes
413
+ ---------
414
+
415
+ For footnotes (:duref:`ref &lt;footnotes&gt;`), use ``[#name]_`` to mark the footnote
416
+ location, and add the footnote body at the bottom of the document after a
417
+ "Footnotes" rubric heading, like so::
418
+
419
+ Lorem ipsum [#f1]_ dolor sit amet ... [#f2]_
420
+
421
+ .. rubric:: Footnotes
422
+
423
+ .. [#f1] Text of the first footnote.
424
+ .. [#f2] Text of the second footnote.
425
+
426
+ You can also explicitly number the footnotes (``[1]_``) or use auto-numbered
427
+ footnotes without names (``[#]_``).
428
+
429
+
430
+ Citations
431
+ ---------
432
+
433
+ Standard reST citations (:duref:`ref &lt;citations&gt;`) are supported, with the
434
+ additional feature that they are "global", i.e. all citations can be referenced
435
+ from all files. Use them like so::
436
+
437
+ Lorem ipsum [Ref]_ dolor sit amet.
438
+
439
+ .. [Ref] Book or article reference, URL or whatever.
440
+
441
+ Citation usage is similar to footnote usage, but with a label that is not
442
+ numeric or begins with ``#``.
443
+
444
+
445
+ Substitutions
446
+ -------------
447
+
448
+ reST supports "substitutions" (:duref:`ref &lt;substitution-definitions&gt;`), which
449
+ are pieces of text and/or markup referred to in the text by ``|name|``. They
450
+ are defined like footnotes with explicit markup blocks, like this::
451
+
452
+ .. |name| replace:: replacement *text*
453
+
454
+ or this::
455
+
456
+ .. |caution| image:: warning.png
457
+ :alt: Warning!
458
+
459
+ See the :duref:`reST reference for substitutions &lt;substitution-definitions&gt;`
460
+ for details.
461
+
462
+ If you want to use some substitutions for all documents, put them into
463
+ :confval:`rst_prolog` or put them into a separate file and include it into all
464
+ documents you want to use them in, using the :rst:dir:`include` directive. (Be
465
+ sure to give the include file a file name extension differing from that of other
466
+ source files, to avoid Sphinx finding it as a standalone document.)
467
+
468
+ Sphinx defines some default substitutions, see :ref:`default-substitutions`.
469
+
470
+
471
+ Comments
472
+ --------
473
+
474
+ Every explicit markup block which isn't a valid markup construct (like the
475
+ footnotes above) is regarded as a comment (:duref:`ref &lt;comments&gt;`). For
476
+ example::
477
+
478
+ .. This is a comment.
479
+
480
+ You can indent text after a comment start to form multiline comments::
481
+
482
+ ..
483
+ This whole indented block
484
+ is a comment.
485
+
486
+ Still in the comment.
487
+
488
+
489
+ Source encoding
490
+ ---------------
491
+
492
+ Since the easiest way to include special characters like em dashes or copyright
493
+ signs in reST is to directly write them as Unicode characters, one has to
494
+ specify an encoding. Sphinx assumes source files to be encoded in UTF-8 by
495
+ default; you can change this with the :confval:`source_encoding` config value.
496
+
497
+
498
+ Gotchas
499
+ -------
500
+
501
+ There are some problems one commonly runs into while authoring reST documents:
502
+
503
+ * **Separation of inline markup:** As said above, inline markup spans must be
504
+ separated from the surrounding text by non-word characters, you have to use a
505
+ backslash-escaped space to get around that. See `the reference
506
+ &lt;http://docutils.sf.net/docs/ref/rst/restructuredtext.html#inline-markup&gt;`_
507
+ for the details.
508
+
509
+ * **No nested inline markup:** Something like ``*see :func:`foo`*`` is not
510
+ possible.
511
+
512
+
513
+ .. rubric:: Footnotes
514
+
515
+ .. [1] When the default domain contains a :rst:dir:`class` directive, this directive
516
+ will be shadowed. Therefore, Sphinx re-exports it as :rst:dir:`rst-class`.
517
+ </textarea></form>
518
+
519
+ <script>
520
+ var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
521
+ lineNumbers: true,
522
+ });
523
+ </script>
524
+ <p>
525
+ The <code>python</code> mode will be used for highlighting blocks
526
+ containing Python/IPython terminal sessions: blocks starting with
527
+ <code>&gt;&gt;&gt;</code> (for Python) or <code>In [num]:</code> (for
528
+ IPython).
529
+
530
+ Further, the <code>stex</code> mode will be used for highlighting
531
+ blocks containing LaTex code.
532
+ </p>
533
+
534
+ <p><strong>MIME types defined:</strong> <code>text/x-rst</code>.</p>
535
+ </article>