kitabu 0.4.7 → 1.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (544) hide show
  1. data/.gitignore +3 -0
  2. data/.gitmodules +3 -0
  3. data/.rspec +1 -0
  4. data/Gemfile +2 -0
  5. data/Gemfile.lock +62 -0
  6. data/README.rdoc +187 -0
  7. data/Rakefile +4 -36
  8. data/bin/kitabu +2 -5
  9. data/examples/RailsGuides/config/helper.rb +29 -0
  10. data/examples/RailsGuides/config/kitabu.yml +48 -0
  11. data/examples/RailsGuides/images/challenge.png +0 -0
  12. data/examples/RailsGuides/images/posts_index.png +0 -0
  13. data/examples/RailsGuides/images/rails_welcome.png +0 -0
  14. data/examples/RailsGuides/output/RailsGuides.epub +0 -0
  15. data/examples/RailsGuides/output/RailsGuides.html +1556 -0
  16. data/examples/RailsGuides/output/RailsGuides.pdf +4930 -7
  17. data/examples/RailsGuides/templates/cover.erb +16 -0
  18. data/examples/RailsGuides/templates/layout.css +352 -0
  19. data/examples/RailsGuides/templates/layout.erb +43 -0
  20. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/idle.css → examples/RailsGuides/templates/syntax.css} +0 -0
  21. data/examples/RailsGuides/templates/user.css +19 -0
  22. data/examples/RailsGuides/text/01_Guide_Assumptions.mkdn +13 -0
  23. data/examples/RailsGuides/text/02_What_is_Rails.mkdn +106 -0
  24. data/examples/RailsGuides/text/03_Creating_a_new_Rails_project.mkdn +200 -0
  25. data/examples/RailsGuides/text/04_Hello_Rails.mkdn +62 -0
  26. data/examples/RailsGuides/text/05_Getting_Up_and_Running_Quickly_with_Scaffolding.mkdn +4 -0
  27. data/examples/RailsGuides/text/06_Creating_a_resource.mkdn +503 -0
  28. data/examples/RailsGuides/text/07_Adding_a_second_model.mkdn +232 -0
  29. data/examples/RailsGuides/text/08_Refactoring.mkdn +123 -0
  30. data/examples/RailsGuides/text/09_Deleting_comments.mkdn +57 -0
  31. data/examples/RailsGuides/text/09_Security.mkdn +56 -0
  32. data/examples/RailsGuides/text/10_Building_a_multi_model_form.mkdn +130 -0
  33. data/examples/RailsGuides/text/11_View_helpers.mkdn +50 -0
  34. data/examples/RailsGuides/text/12_Whats_next.mkdn +14 -0
  35. data/examples/RailsGuides/text/13_Configuration_gotchas.mkdn +10 -0
  36. data/kitabu.gemspec +28 -491
  37. data/lib/kitabu.rb +54 -46
  38. data/lib/kitabu/cli.rb +88 -0
  39. data/lib/kitabu/errors.rb +3 -0
  40. data/lib/kitabu/exporter.rb +81 -0
  41. data/lib/kitabu/extensions/redcloth.rb +65 -0
  42. data/lib/kitabu/extensions/string.rb +11 -0
  43. data/lib/kitabu/generator.rb +74 -0
  44. data/lib/kitabu/parser.rb +34 -0
  45. data/lib/kitabu/parser/epub.rb +131 -0
  46. data/lib/kitabu/parser/html.rb +174 -0
  47. data/lib/kitabu/parser/mobi.rb +17 -0
  48. data/lib/kitabu/parser/pdf.rb +41 -0
  49. data/lib/kitabu/parser/txt.rb +22 -0
  50. data/lib/kitabu/stream.rb +27 -0
  51. data/lib/kitabu/syntax.rb +109 -107
  52. data/lib/kitabu/toc.rb +62 -33
  53. data/lib/kitabu/version.rb +8 -0
  54. data/spec/kitabu/cli/export_spec.rb +17 -0
  55. data/spec/kitabu/cli/new_spec.rb +21 -0
  56. data/spec/kitabu/cli/permalinks_spec.rb +12 -0
  57. data/spec/kitabu/cli/version_spec.rb +12 -0
  58. data/spec/kitabu/extensions/redcloth_spec.rb +52 -0
  59. data/spec/kitabu/extensions/string_spec.rb +21 -0
  60. data/spec/kitabu/generator_spec.rb +10 -0
  61. data/spec/kitabu/parser/epub_spec.rb +10 -0
  62. data/spec/kitabu/parser/html_spec.rb +75 -0
  63. data/spec/kitabu/parser/pdf_spec.rb +14 -0
  64. data/spec/kitabu/syntax_spec.rb +80 -76
  65. data/spec/kitabu/toc_spec.rb +42 -68
  66. data/spec/kitabu_spec.rb +4 -0
  67. data/spec/spec_helper.rb +20 -24
  68. data/spec/support/exit_with_code.rb +26 -0
  69. data/spec/support/have_tag.rb +115 -0
  70. data/spec/support/helper.rb +18 -0
  71. data/spec/support/mybook/.gitignore +1 -0
  72. data/spec/support/mybook/code/.gitkeep +0 -0
  73. data/spec/support/mybook/code/code.rb +13 -0
  74. data/spec/support/mybook/config/helper.rb +29 -0
  75. data/spec/support/mybook/config/kitabu.yml +59 -0
  76. data/spec/support/mybook/images/.gitkeep +0 -0
  77. data/spec/support/mybook/images/logo.gif +0 -0
  78. data/spec/support/mybook/output/.gitkeep +0 -0
  79. data/spec/support/mybook/templates/cover.erb +16 -0
  80. data/spec/support/mybook/templates/epub.css +1 -0
  81. data/spec/support/mybook/templates/epub.erb +15 -0
  82. data/spec/support/mybook/templates/layout.css +137 -0
  83. data/{templates/layouts/boom/layout.html → spec/support/mybook/templates/layout.erb} +26 -17
  84. data/{templates/themes/mac_classic.css → spec/support/mybook/templates/syntax.css} +63 -0
  85. data/spec/support/mybook/templates/user.css +1 -0
  86. data/spec/support/mybook/text/.gitkeep +0 -0
  87. data/spec/support/mybook/text/01_Markdown_Chapter.markdown +8 -0
  88. data/spec/support/mybook/text/02_Textile_Chapter.textile +3 -0
  89. data/spec/support/mybook/text/03_HTML_Chapter.html +3 -0
  90. data/spec/support/mybook/text/04_With_Directory/Some_Chapter.mkdn +3 -0
  91. data/spec/support/mybook/text/CHANGELOG.textile +6 -0
  92. data/spec/support/mybook/text/TOC.textile +0 -0
  93. data/spec/support/mybook/text/_00_Introduction.markdown +3 -0
  94. data/spec/support/shared.rb +16 -0
  95. data/templates/config.erb +48 -0
  96. data/templates/cover.erb +16 -0
  97. data/templates/ebook.png +0 -0
  98. data/templates/epub.css +0 -0
  99. data/templates/epub.erb +15 -0
  100. data/templates/helper.rb +29 -0
  101. data/templates/layout.css +353 -0
  102. data/templates/layout.erb +44 -0
  103. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/active4d.css +0 -0
  104. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/all_hallows_eve.css +0 -0
  105. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/amy.css +0 -0
  106. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/blackboard.css +0 -0
  107. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/brilliance_black.css +0 -0
  108. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/brilliance_dull.css +0 -0
  109. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/cobalt.css +0 -0
  110. data/{lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css → templates/styles}/dawn.css +0 -0
  111. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/eiffel.css +0 -0
  112. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/espresso_libre.css +0 -0
  113. data/{lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css → templates/styles}/idle.css +0 -0
  114. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/iplastic.css +0 -0
  115. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/lazy.css +0 -0
  116. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/mac_classic.css +0 -0
  117. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/magicwb_amiga.css +0 -0
  118. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/pastels_on_dark.css +0 -0
  119. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/slush_poppies.css +0 -0
  120. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/spacecadet.css +0 -0
  121. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/sunburst.css +0 -0
  122. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/twilight.css +0 -0
  123. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/zenburnesque.css +0 -0
  124. data/templates/user.css +1 -1
  125. metadata +395 -501
  126. data/README.markdown +0 -60
  127. data/VERSION +0 -1
  128. data/lib/kitabu/base.rb +0 -271
  129. data/lib/kitabu/blackcloth.rb +0 -184
  130. data/lib/kitabu/command.rb +0 -94
  131. data/lib/kitabu/redcloth.rb +0 -964
  132. data/lib/kitabu/tasks.rb +0 -113
  133. data/lib/kitabu/templates.rb +0 -54
  134. data/lib/kitabu/vendor/colorize/colorize.rb +0 -81
  135. data/lib/kitabu/vendor/ruby1.8/plist/plist.rb +0 -22
  136. data/lib/kitabu/vendor/ruby1.8/plist/plist/generator.rb +0 -224
  137. data/lib/kitabu/vendor/ruby1.8/plist/plist/parser.rb +0 -224
  138. data/lib/kitabu/vendor/ruby1.8/textpow/textpow.rb +0 -10
  139. data/lib/kitabu/vendor/ruby1.8/textpow/textpow/debug_processor.rb +0 -36
  140. data/lib/kitabu/vendor/ruby1.8/textpow/textpow/score_manager.rb +0 -65
  141. data/lib/kitabu/vendor/ruby1.8/textpow/textpow/syntax.rb +0 -284
  142. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/active4d.render +0 -140
  143. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/all_hallows_eve.render +0 -104
  144. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/amy.render +0 -179
  145. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/blackboard.render +0 -119
  146. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/brilliance_black.render +0 -560
  147. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/brilliance_dull.render +0 -569
  148. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/cobalt.render +0 -170
  149. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/dawn.render +0 -134
  150. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/eiffel.render +0 -140
  151. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/espresso_libre.render +0 -131
  152. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/dawn.css +0 -121
  153. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/idle.render +0 -101
  154. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/iplastic.render +0 -107
  155. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/lazy.render +0 -104
  156. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/mac_classic.render +0 -143
  157. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/magicwb_amiga.render +0 -125
  158. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/pastels_on_dark.render +0 -212
  159. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/slush_poppies.render +0 -131
  160. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/spacecadet.render +0 -89
  161. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/sunburst.render +0 -194
  162. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/twilight.render +0 -161
  163. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/zenburnesque.render +0 -134
  164. data/lib/kitabu/vendor/ruby1.8/uv/syntax/actionscript.syntax +0 -97
  165. data/lib/kitabu/vendor/ruby1.8/uv/syntax/active4d.syntax +0 -276
  166. data/lib/kitabu/vendor/ruby1.8/uv/syntax/active4d_html.syntax +0 -311
  167. data/lib/kitabu/vendor/ruby1.8/uv/syntax/active4d_ini.syntax +0 -50
  168. data/lib/kitabu/vendor/ruby1.8/uv/syntax/active4d_library.syntax +0 -21
  169. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ada.syntax +0 -33
  170. data/lib/kitabu/vendor/ruby1.8/uv/syntax/antlr.syntax +0 -151
  171. data/lib/kitabu/vendor/ruby1.8/uv/syntax/apache.syntax +0 -191
  172. data/lib/kitabu/vendor/ruby1.8/uv/syntax/applescript.syntax +0 -384
  173. data/lib/kitabu/vendor/ruby1.8/uv/syntax/asp.syntax +0 -70
  174. data/lib/kitabu/vendor/ruby1.8/uv/syntax/asp_vb.net.syntax +0 -129
  175. data/lib/kitabu/vendor/ruby1.8/uv/syntax/bibtex.syntax +0 -151
  176. data/lib/kitabu/vendor/ruby1.8/uv/syntax/blog_html.syntax +0 -41
  177. data/lib/kitabu/vendor/ruby1.8/uv/syntax/blog_markdown.syntax +0 -42
  178. data/lib/kitabu/vendor/ruby1.8/uv/syntax/blog_text.syntax +0 -27
  179. data/lib/kitabu/vendor/ruby1.8/uv/syntax/blog_textile.syntax +0 -27
  180. data/lib/kitabu/vendor/ruby1.8/uv/syntax/buggy/nemerle.syntax +0 -74
  181. data/lib/kitabu/vendor/ruby1.8/uv/syntax/build.syntax +0 -53
  182. data/lib/kitabu/vendor/ruby1.8/uv/syntax/bulletin_board.syntax +0 -287
  183. data/lib/kitabu/vendor/ruby1.8/uv/syntax/c++.syntax +0 -109
  184. data/lib/kitabu/vendor/ruby1.8/uv/syntax/c.syntax +0 -326
  185. data/lib/kitabu/vendor/ruby1.8/uv/syntax/cake.syntax +0 -55
  186. data/lib/kitabu/vendor/ruby1.8/uv/syntax/camlp4.syntax +0 -36
  187. data/lib/kitabu/vendor/ruby1.8/uv/syntax/cm.syntax +0 -32
  188. data/lib/kitabu/vendor/ruby1.8/uv/syntax/coldfusion.syntax +0 -119
  189. data/lib/kitabu/vendor/ruby1.8/uv/syntax/context_free.syntax +0 -176
  190. data/lib/kitabu/vendor/ruby1.8/uv/syntax/cs.syntax +0 -59
  191. data/lib/kitabu/vendor/ruby1.8/uv/syntax/css.syntax +0 -195
  192. data/lib/kitabu/vendor/ruby1.8/uv/syntax/css_experimental.syntax +0 -1925
  193. data/lib/kitabu/vendor/ruby1.8/uv/syntax/csv.syntax +0 -68
  194. data/lib/kitabu/vendor/ruby1.8/uv/syntax/d.syntax +0 -142
  195. data/lib/kitabu/vendor/ruby1.8/uv/syntax/diff.syntax +0 -81
  196. data/lib/kitabu/vendor/ruby1.8/uv/syntax/dokuwiki.syntax +0 -204
  197. data/lib/kitabu/vendor/ruby1.8/uv/syntax/dot.syntax +0 -47
  198. data/lib/kitabu/vendor/ruby1.8/uv/syntax/doxygen.syntax +0 -43
  199. data/lib/kitabu/vendor/ruby1.8/uv/syntax/dylan.syntax +0 -62
  200. data/lib/kitabu/vendor/ruby1.8/uv/syntax/eiffel.syntax +0 -78
  201. data/lib/kitabu/vendor/ruby1.8/uv/syntax/erlang.syntax +0 -922
  202. data/lib/kitabu/vendor/ruby1.8/uv/syntax/f-script.syntax +0 -80
  203. data/lib/kitabu/vendor/ruby1.8/uv/syntax/fortran.syntax +0 -141
  204. data/lib/kitabu/vendor/ruby1.8/uv/syntax/fxscript.syntax +0 -142
  205. data/lib/kitabu/vendor/ruby1.8/uv/syntax/greasemonkey.syntax +0 -34
  206. data/lib/kitabu/vendor/ruby1.8/uv/syntax/gri.syntax +0 -83
  207. data/lib/kitabu/vendor/ruby1.8/uv/syntax/groovy.syntax +0 -191
  208. data/lib/kitabu/vendor/ruby1.8/uv/syntax/gtd.syntax +0 -22
  209. data/lib/kitabu/vendor/ruby1.8/uv/syntax/gtdalt.syntax +0 -143
  210. data/lib/kitabu/vendor/ruby1.8/uv/syntax/haml.syntax +0 -88
  211. data/lib/kitabu/vendor/ruby1.8/uv/syntax/haskell.syntax +0 -88
  212. data/lib/kitabu/vendor/ruby1.8/uv/syntax/html-asp.syntax +0 -27
  213. data/lib/kitabu/vendor/ruby1.8/uv/syntax/html.syntax +0 -362
  214. data/lib/kitabu/vendor/ruby1.8/uv/syntax/html_django.syntax +0 -36
  215. data/lib/kitabu/vendor/ruby1.8/uv/syntax/html_for_asp.net.syntax +0 -424
  216. data/lib/kitabu/vendor/ruby1.8/uv/syntax/html_mason.syntax +0 -119
  217. data/lib/kitabu/vendor/ruby1.8/uv/syntax/html_rails.syntax +0 -40
  218. data/lib/kitabu/vendor/ruby1.8/uv/syntax/html_tcl.syntax +0 -26
  219. data/lib/kitabu/vendor/ruby1.8/uv/syntax/icalendar.syntax +0 -32
  220. data/lib/kitabu/vendor/ruby1.8/uv/syntax/inform.syntax +0 -48
  221. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ini.syntax +0 -55
  222. data/lib/kitabu/vendor/ruby1.8/uv/syntax/installer_distribution_script.syntax +0 -77
  223. data/lib/kitabu/vendor/ruby1.8/uv/syntax/io.syntax +0 -81
  224. data/lib/kitabu/vendor/ruby1.8/uv/syntax/java.syntax +0 -211
  225. data/lib/kitabu/vendor/ruby1.8/uv/syntax/javaproperties.syntax +0 -20
  226. data/lib/kitabu/vendor/ruby1.8/uv/syntax/javascript.syntax +0 -256
  227. data/lib/kitabu/vendor/ruby1.8/uv/syntax/javascript_+_prototype.syntax +0 -72
  228. data/lib/kitabu/vendor/ruby1.8/uv/syntax/javascript_+_prototype_bracketed.syntax +0 -140
  229. data/lib/kitabu/vendor/ruby1.8/uv/syntax/jquery_javascript.syntax +0 -114
  230. data/lib/kitabu/vendor/ruby1.8/uv/syntax/json.syntax +0 -136
  231. data/lib/kitabu/vendor/ruby1.8/uv/syntax/languagedefinition.syntax +0 -708
  232. data/lib/kitabu/vendor/ruby1.8/uv/syntax/latex.syntax +0 -566
  233. data/lib/kitabu/vendor/ruby1.8/uv/syntax/latex_beamer.syntax +0 -41
  234. data/lib/kitabu/vendor/ruby1.8/uv/syntax/latex_log.syntax +0 -50
  235. data/lib/kitabu/vendor/ruby1.8/uv/syntax/latex_memoir.syntax +0 -64
  236. data/lib/kitabu/vendor/ruby1.8/uv/syntax/lexflex.syntax +0 -219
  237. data/lib/kitabu/vendor/ruby1.8/uv/syntax/lighttpd.syntax +0 -54
  238. data/lib/kitabu/vendor/ruby1.8/uv/syntax/lilypond.syntax +0 -492
  239. data/lib/kitabu/vendor/ruby1.8/uv/syntax/lisp.syntax +0 -61
  240. data/lib/kitabu/vendor/ruby1.8/uv/syntax/literate_haskell.syntax +0 -24
  241. data/lib/kitabu/vendor/ruby1.8/uv/syntax/logo.syntax +0 -29
  242. data/lib/kitabu/vendor/ruby1.8/uv/syntax/logtalk.syntax +0 -152
  243. data/lib/kitabu/vendor/ruby1.8/uv/syntax/lua.syntax +0 -86
  244. data/lib/kitabu/vendor/ruby1.8/uv/syntax/m.syntax +0 -142
  245. data/lib/kitabu/vendor/ruby1.8/uv/syntax/macports_portfile.syntax +0 -163
  246. data/lib/kitabu/vendor/ruby1.8/uv/syntax/mail.syntax +0 -118
  247. data/lib/kitabu/vendor/ruby1.8/uv/syntax/makefile.syntax +0 -36
  248. data/lib/kitabu/vendor/ruby1.8/uv/syntax/man.syntax +0 -17
  249. data/lib/kitabu/vendor/ruby1.8/uv/syntax/markdown.syntax +0 -543
  250. data/lib/kitabu/vendor/ruby1.8/uv/syntax/mediawiki.syntax +0 -567
  251. data/lib/kitabu/vendor/ruby1.8/uv/syntax/mel.syntax +0 -92
  252. data/lib/kitabu/vendor/ruby1.8/uv/syntax/mips.syntax +0 -66
  253. data/lib/kitabu/vendor/ruby1.8/uv/syntax/mod_perl.syntax +0 -50
  254. data/lib/kitabu/vendor/ruby1.8/uv/syntax/modula-3.syntax +0 -47
  255. data/lib/kitabu/vendor/ruby1.8/uv/syntax/moinmoin.syntax +0 -189
  256. data/lib/kitabu/vendor/ruby1.8/uv/syntax/mootools.syntax +0 -572
  257. data/lib/kitabu/vendor/ruby1.8/uv/syntax/movable_type.syntax +0 -162
  258. data/lib/kitabu/vendor/ruby1.8/uv/syntax/multimarkdown.syntax +0 -39
  259. data/lib/kitabu/vendor/ruby1.8/uv/syntax/objective-c++.syntax +0 -18
  260. data/lib/kitabu/vendor/ruby1.8/uv/syntax/objective-c.syntax +0 -233
  261. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ocaml.syntax +0 -764
  262. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ocamllex.syntax +0 -167
  263. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ocamlyacc.syntax +0 -184
  264. data/lib/kitabu/vendor/ruby1.8/uv/syntax/old/YAML.yaml +0 -160
  265. data/lib/kitabu/vendor/ruby1.8/uv/syntax/old/txt2tags.yaml +0 -139
  266. data/lib/kitabu/vendor/ruby1.8/uv/syntax/opengl.syntax +0 -14
  267. data/lib/kitabu/vendor/ruby1.8/uv/syntax/pascal.syntax +0 -77
  268. data/lib/kitabu/vendor/ruby1.8/uv/syntax/perl.syntax +0 -1115
  269. data/lib/kitabu/vendor/ruby1.8/uv/syntax/php.syntax +0 -1253
  270. data/lib/kitabu/vendor/ruby1.8/uv/syntax/plain_text.syntax +0 -32
  271. data/lib/kitabu/vendor/ruby1.8/uv/syntax/pmwiki.syntax +0 -113
  272. data/lib/kitabu/vendor/ruby1.8/uv/syntax/postscript.syntax +0 -114
  273. data/lib/kitabu/vendor/ruby1.8/uv/syntax/processing.syntax +0 -106
  274. data/lib/kitabu/vendor/ruby1.8/uv/syntax/prolog.syntax +0 -40
  275. data/lib/kitabu/vendor/ruby1.8/uv/syntax/property_list.syntax +0 -635
  276. data/lib/kitabu/vendor/ruby1.8/uv/syntax/python.syntax +0 -868
  277. data/lib/kitabu/vendor/ruby1.8/uv/syntax/python_django.syntax +0 -21
  278. data/lib/kitabu/vendor/ruby1.8/uv/syntax/qmake_project.syntax +0 -114
  279. data/lib/kitabu/vendor/ruby1.8/uv/syntax/qt_c++.syntax +0 -26
  280. data/lib/kitabu/vendor/ruby1.8/uv/syntax/quake3_config.syntax +0 -32
  281. data/lib/kitabu/vendor/ruby1.8/uv/syntax/r.syntax +0 -81
  282. data/lib/kitabu/vendor/ruby1.8/uv/syntax/r_console.syntax +0 -16
  283. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ragel.syntax +0 -201
  284. data/lib/kitabu/vendor/ruby1.8/uv/syntax/rd_r_documentation.syntax +0 -91
  285. data/lib/kitabu/vendor/ruby1.8/uv/syntax/regexp.syntax +0 -50
  286. data/lib/kitabu/vendor/ruby1.8/uv/syntax/regular_expressions_oniguruma.syntax +0 -107
  287. data/lib/kitabu/vendor/ruby1.8/uv/syntax/regular_expressions_python.syntax +0 -109
  288. data/lib/kitabu/vendor/ruby1.8/uv/syntax/release_notes.syntax +0 -46
  289. data/lib/kitabu/vendor/ruby1.8/uv/syntax/remind.syntax +0 -253
  290. data/lib/kitabu/vendor/ruby1.8/uv/syntax/restructuredtext.syntax +0 -250
  291. data/lib/kitabu/vendor/ruby1.8/uv/syntax/rez.syntax +0 -80
  292. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ruby.syntax +0 -1035
  293. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ruby_experimental.syntax +0 -145
  294. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ruby_on_rails.syntax +0 -88
  295. data/lib/kitabu/vendor/ruby1.8/uv/syntax/s5.syntax +0 -69
  296. data/lib/kitabu/vendor/ruby1.8/uv/syntax/scheme.syntax +0 -347
  297. data/lib/kitabu/vendor/ruby1.8/uv/syntax/scilab.syntax +0 -41
  298. data/lib/kitabu/vendor/ruby1.8/uv/syntax/setext.syntax +0 -147
  299. data/lib/kitabu/vendor/ruby1.8/uv/syntax/shell-unix-generic.syntax +0 -384
  300. data/lib/kitabu/vendor/ruby1.8/uv/syntax/slate.syntax +0 -149
  301. data/lib/kitabu/vendor/ruby1.8/uv/syntax/smarty.syntax +0 -63
  302. data/lib/kitabu/vendor/ruby1.8/uv/syntax/sql.syntax +0 -237
  303. data/lib/kitabu/vendor/ruby1.8/uv/syntax/sql_rails.syntax +0 -18
  304. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ssh-config.syntax +0 -33
  305. data/lib/kitabu/vendor/ruby1.8/uv/syntax/standard_ml.syntax +0 -121
  306. data/lib/kitabu/vendor/ruby1.8/uv/syntax/strings_file.syntax +0 -39
  307. data/lib/kitabu/vendor/ruby1.8/uv/syntax/subversion_commit_message.syntax +0 -36
  308. data/lib/kitabu/vendor/ruby1.8/uv/syntax/sweave.syntax +0 -84
  309. data/lib/kitabu/vendor/ruby1.8/uv/syntax/swig.syntax +0 -57
  310. data/lib/kitabu/vendor/ruby1.8/uv/syntax/tcl.syntax +0 -152
  311. data/lib/kitabu/vendor/ruby1.8/uv/syntax/template_toolkit.syntax +0 -121
  312. data/lib/kitabu/vendor/ruby1.8/uv/syntax/tex.syntax +0 -86
  313. data/lib/kitabu/vendor/ruby1.8/uv/syntax/tex_math.syntax +0 -49
  314. data/lib/kitabu/vendor/ruby1.8/uv/syntax/textile.syntax +0 -215
  315. data/lib/kitabu/vendor/ruby1.8/uv/syntax/tsv.syntax +0 -50
  316. data/lib/kitabu/vendor/ruby1.8/uv/syntax/twiki.syntax +0 -241
  317. data/lib/kitabu/vendor/ruby1.8/uv/syntax/txt2tags.syntax +0 -79
  318. data/lib/kitabu/vendor/ruby1.8/uv/syntax/vectorscript.syntax +0 -57
  319. data/lib/kitabu/vendor/ruby1.8/uv/syntax/xhtml_1.0.syntax +0 -4027
  320. data/lib/kitabu/vendor/ruby1.8/uv/syntax/xml.syntax +0 -180
  321. data/lib/kitabu/vendor/ruby1.8/uv/syntax/xml_strict.syntax +0 -92
  322. data/lib/kitabu/vendor/ruby1.8/uv/syntax/xsl.syntax +0 -60
  323. data/lib/kitabu/vendor/ruby1.8/uv/syntax/yaml.syntax +0 -160
  324. data/lib/kitabu/vendor/ruby1.8/uv/syntax/yui_javascript.syntax +0 -176
  325. data/lib/kitabu/vendor/ruby1.8/uv/uv.rb +0 -88
  326. data/lib/kitabu/vendor/ruby1.8/uv/uv/render_processor.rb +0 -131
  327. data/lib/kitabu/vendor/ruby1.8/uv/uv/utility.rb +0 -67
  328. data/lib/kitabu/vendor/ruby1.9/plist/plist.rb +0 -23
  329. data/lib/kitabu/vendor/ruby1.9/plist/plist/generator.rb +0 -228
  330. data/lib/kitabu/vendor/ruby1.9/plist/plist/parser.rb +0 -225
  331. data/lib/kitabu/vendor/ruby1.9/textpow/textpow.rb +0 -10
  332. data/lib/kitabu/vendor/ruby1.9/textpow/textpow/debug_processor.rb +0 -37
  333. data/lib/kitabu/vendor/ruby1.9/textpow/textpow/score_manager.rb +0 -66
  334. data/lib/kitabu/vendor/ruby1.9/textpow/textpow/syntax.rb +0 -286
  335. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/active4d.render +0 -140
  336. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/all_hallows_eve.render +0 -104
  337. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/amy.render +0 -179
  338. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/blackboard.render +0 -119
  339. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/brilliance_black.render +0 -560
  340. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/brilliance_dull.render +0 -569
  341. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/cobalt.render +0 -170
  342. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/dawn.render +0 -134
  343. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/eiffel.render +0 -140
  344. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/espresso_libre.render +0 -131
  345. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/active4d.css +0 -114
  346. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/all_hallows_eve.css +0 -72
  347. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/amy.css +0 -147
  348. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/blackboard.css +0 -88
  349. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/brilliance_black.css +0 -605
  350. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/brilliance_dull.css +0 -599
  351. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/cobalt.css +0 -149
  352. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/eiffel.css +0 -121
  353. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/espresso_libre.css +0 -109
  354. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/iplastic.css +0 -80
  355. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/lazy.css +0 -73
  356. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/mac_classic.css +0 -123
  357. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/magicwb_amiga.css +0 -104
  358. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/pastels_on_dark.css +0 -188
  359. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/slush_poppies.css +0 -85
  360. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/spacecadet.css +0 -51
  361. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/sunburst.css +0 -180
  362. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/twilight.css +0 -137
  363. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/zenburnesque.css +0 -91
  364. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/idle.render +0 -101
  365. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/iplastic.render +0 -107
  366. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/lazy.render +0 -104
  367. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/mac_classic.render +0 -143
  368. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/magicwb_amiga.render +0 -125
  369. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/pastels_on_dark.render +0 -212
  370. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/slush_poppies.render +0 -131
  371. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/spacecadet.render +0 -89
  372. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/sunburst.render +0 -194
  373. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/twilight.render +0 -161
  374. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/zenburnesque.render +0 -134
  375. data/lib/kitabu/vendor/ruby1.9/uv/syntax/actionscript.syntax +0 -97
  376. data/lib/kitabu/vendor/ruby1.9/uv/syntax/active4d.syntax +0 -276
  377. data/lib/kitabu/vendor/ruby1.9/uv/syntax/active4d_html.syntax +0 -311
  378. data/lib/kitabu/vendor/ruby1.9/uv/syntax/active4d_ini.syntax +0 -50
  379. data/lib/kitabu/vendor/ruby1.9/uv/syntax/active4d_library.syntax +0 -21
  380. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ada.syntax +0 -33
  381. data/lib/kitabu/vendor/ruby1.9/uv/syntax/antlr.syntax +0 -151
  382. data/lib/kitabu/vendor/ruby1.9/uv/syntax/apache.syntax +0 -191
  383. data/lib/kitabu/vendor/ruby1.9/uv/syntax/applescript.syntax +0 -384
  384. data/lib/kitabu/vendor/ruby1.9/uv/syntax/asp.syntax +0 -70
  385. data/lib/kitabu/vendor/ruby1.9/uv/syntax/asp_vb.net.syntax +0 -129
  386. data/lib/kitabu/vendor/ruby1.9/uv/syntax/bibtex.syntax +0 -151
  387. data/lib/kitabu/vendor/ruby1.9/uv/syntax/blog_html.syntax +0 -41
  388. data/lib/kitabu/vendor/ruby1.9/uv/syntax/blog_markdown.syntax +0 -42
  389. data/lib/kitabu/vendor/ruby1.9/uv/syntax/blog_text.syntax +0 -27
  390. data/lib/kitabu/vendor/ruby1.9/uv/syntax/blog_textile.syntax +0 -27
  391. data/lib/kitabu/vendor/ruby1.9/uv/syntax/build.syntax +0 -53
  392. data/lib/kitabu/vendor/ruby1.9/uv/syntax/bulletin_board.syntax +0 -287
  393. data/lib/kitabu/vendor/ruby1.9/uv/syntax/cake.syntax +0 -55
  394. data/lib/kitabu/vendor/ruby1.9/uv/syntax/camlp4.syntax +0 -36
  395. data/lib/kitabu/vendor/ruby1.9/uv/syntax/cm.syntax +0 -32
  396. data/lib/kitabu/vendor/ruby1.9/uv/syntax/coldfusion.syntax +0 -119
  397. data/lib/kitabu/vendor/ruby1.9/uv/syntax/context_free.syntax +0 -176
  398. data/lib/kitabu/vendor/ruby1.9/uv/syntax/cs.syntax +0 -59
  399. data/lib/kitabu/vendor/ruby1.9/uv/syntax/css.syntax +0 -195
  400. data/lib/kitabu/vendor/ruby1.9/uv/syntax/css_experimental.syntax +0 -1925
  401. data/lib/kitabu/vendor/ruby1.9/uv/syntax/csv.syntax +0 -68
  402. data/lib/kitabu/vendor/ruby1.9/uv/syntax/d.syntax +0 -142
  403. data/lib/kitabu/vendor/ruby1.9/uv/syntax/diff.syntax +0 -81
  404. data/lib/kitabu/vendor/ruby1.9/uv/syntax/dokuwiki.syntax +0 -204
  405. data/lib/kitabu/vendor/ruby1.9/uv/syntax/dot.syntax +0 -47
  406. data/lib/kitabu/vendor/ruby1.9/uv/syntax/doxygen.syntax +0 -43
  407. data/lib/kitabu/vendor/ruby1.9/uv/syntax/dylan.syntax +0 -62
  408. data/lib/kitabu/vendor/ruby1.9/uv/syntax/eiffel.syntax +0 -78
  409. data/lib/kitabu/vendor/ruby1.9/uv/syntax/erlang.syntax +0 -922
  410. data/lib/kitabu/vendor/ruby1.9/uv/syntax/f-script.syntax +0 -80
  411. data/lib/kitabu/vendor/ruby1.9/uv/syntax/fortran.syntax +0 -141
  412. data/lib/kitabu/vendor/ruby1.9/uv/syntax/fxscript.syntax +0 -142
  413. data/lib/kitabu/vendor/ruby1.9/uv/syntax/greasemonkey.syntax +0 -34
  414. data/lib/kitabu/vendor/ruby1.9/uv/syntax/gri.syntax +0 -83
  415. data/lib/kitabu/vendor/ruby1.9/uv/syntax/groovy.syntax +0 -191
  416. data/lib/kitabu/vendor/ruby1.9/uv/syntax/gtd.syntax +0 -22
  417. data/lib/kitabu/vendor/ruby1.9/uv/syntax/gtdalt.syntax +0 -143
  418. data/lib/kitabu/vendor/ruby1.9/uv/syntax/haml.syntax +0 -88
  419. data/lib/kitabu/vendor/ruby1.9/uv/syntax/haskell.syntax +0 -88
  420. data/lib/kitabu/vendor/ruby1.9/uv/syntax/html-asp.syntax +0 -27
  421. data/lib/kitabu/vendor/ruby1.9/uv/syntax/html.syntax +0 -362
  422. data/lib/kitabu/vendor/ruby1.9/uv/syntax/html_django.syntax +0 -36
  423. data/lib/kitabu/vendor/ruby1.9/uv/syntax/html_for_asp.net.syntax +0 -424
  424. data/lib/kitabu/vendor/ruby1.9/uv/syntax/html_mason.syntax +0 -119
  425. data/lib/kitabu/vendor/ruby1.9/uv/syntax/html_rails.syntax +0 -40
  426. data/lib/kitabu/vendor/ruby1.9/uv/syntax/html_tcl.syntax +0 -26
  427. data/lib/kitabu/vendor/ruby1.9/uv/syntax/icalendar.syntax +0 -32
  428. data/lib/kitabu/vendor/ruby1.9/uv/syntax/inform.syntax +0 -48
  429. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ini.syntax +0 -55
  430. data/lib/kitabu/vendor/ruby1.9/uv/syntax/installer_distribution_script.syntax +0 -77
  431. data/lib/kitabu/vendor/ruby1.9/uv/syntax/io.syntax +0 -81
  432. data/lib/kitabu/vendor/ruby1.9/uv/syntax/java.syntax +0 -211
  433. data/lib/kitabu/vendor/ruby1.9/uv/syntax/javaproperties.syntax +0 -20
  434. data/lib/kitabu/vendor/ruby1.9/uv/syntax/javascript.syntax +0 -256
  435. data/lib/kitabu/vendor/ruby1.9/uv/syntax/javascript_+_prototype.syntax +0 -72
  436. data/lib/kitabu/vendor/ruby1.9/uv/syntax/javascript_+_prototype_bracketed.syntax +0 -140
  437. data/lib/kitabu/vendor/ruby1.9/uv/syntax/jquery_javascript.syntax +0 -114
  438. data/lib/kitabu/vendor/ruby1.9/uv/syntax/json.syntax +0 -136
  439. data/lib/kitabu/vendor/ruby1.9/uv/syntax/languagedefinition.syntax +0 -708
  440. data/lib/kitabu/vendor/ruby1.9/uv/syntax/latex.syntax +0 -566
  441. data/lib/kitabu/vendor/ruby1.9/uv/syntax/latex_beamer.syntax +0 -41
  442. data/lib/kitabu/vendor/ruby1.9/uv/syntax/latex_log.syntax +0 -50
  443. data/lib/kitabu/vendor/ruby1.9/uv/syntax/latex_memoir.syntax +0 -64
  444. data/lib/kitabu/vendor/ruby1.9/uv/syntax/lexflex.syntax +0 -219
  445. data/lib/kitabu/vendor/ruby1.9/uv/syntax/lighttpd.syntax +0 -54
  446. data/lib/kitabu/vendor/ruby1.9/uv/syntax/lilypond.syntax +0 -492
  447. data/lib/kitabu/vendor/ruby1.9/uv/syntax/lisp.syntax +0 -61
  448. data/lib/kitabu/vendor/ruby1.9/uv/syntax/literate_haskell.syntax +0 -24
  449. data/lib/kitabu/vendor/ruby1.9/uv/syntax/logo.syntax +0 -29
  450. data/lib/kitabu/vendor/ruby1.9/uv/syntax/logtalk.syntax +0 -152
  451. data/lib/kitabu/vendor/ruby1.9/uv/syntax/lua.syntax +0 -86
  452. data/lib/kitabu/vendor/ruby1.9/uv/syntax/m.syntax +0 -142
  453. data/lib/kitabu/vendor/ruby1.9/uv/syntax/macports_portfile.syntax +0 -163
  454. data/lib/kitabu/vendor/ruby1.9/uv/syntax/makefile.syntax +0 -36
  455. data/lib/kitabu/vendor/ruby1.9/uv/syntax/man.syntax +0 -17
  456. data/lib/kitabu/vendor/ruby1.9/uv/syntax/mediawiki.syntax +0 -567
  457. data/lib/kitabu/vendor/ruby1.9/uv/syntax/mips.syntax +0 -66
  458. data/lib/kitabu/vendor/ruby1.9/uv/syntax/mod_perl.syntax +0 -50
  459. data/lib/kitabu/vendor/ruby1.9/uv/syntax/modula-3.syntax +0 -47
  460. data/lib/kitabu/vendor/ruby1.9/uv/syntax/moinmoin.syntax +0 -189
  461. data/lib/kitabu/vendor/ruby1.9/uv/syntax/mootools.syntax +0 -572
  462. data/lib/kitabu/vendor/ruby1.9/uv/syntax/movable_type.syntax +0 -162
  463. data/lib/kitabu/vendor/ruby1.9/uv/syntax/multimarkdown.syntax +0 -39
  464. data/lib/kitabu/vendor/ruby1.9/uv/syntax/objective-c++.syntax +0 -18
  465. data/lib/kitabu/vendor/ruby1.9/uv/syntax/objective-c.syntax +0 -233
  466. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ocaml.syntax +0 -764
  467. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ocamllex.syntax +0 -167
  468. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ocamlyacc.syntax +0 -184
  469. data/lib/kitabu/vendor/ruby1.9/uv/syntax/opengl.syntax +0 -14
  470. data/lib/kitabu/vendor/ruby1.9/uv/syntax/pascal.syntax +0 -77
  471. data/lib/kitabu/vendor/ruby1.9/uv/syntax/perl.syntax +0 -1115
  472. data/lib/kitabu/vendor/ruby1.9/uv/syntax/plain_text.syntax +0 -32
  473. data/lib/kitabu/vendor/ruby1.9/uv/syntax/postscript.syntax +0 -114
  474. data/lib/kitabu/vendor/ruby1.9/uv/syntax/processing.syntax +0 -106
  475. data/lib/kitabu/vendor/ruby1.9/uv/syntax/prolog.syntax +0 -40
  476. data/lib/kitabu/vendor/ruby1.9/uv/syntax/property_list.syntax +0 -635
  477. data/lib/kitabu/vendor/ruby1.9/uv/syntax/python.syntax +0 -868
  478. data/lib/kitabu/vendor/ruby1.9/uv/syntax/python_django.syntax +0 -21
  479. data/lib/kitabu/vendor/ruby1.9/uv/syntax/qmake_project.syntax +0 -114
  480. data/lib/kitabu/vendor/ruby1.9/uv/syntax/qt_c++.syntax +0 -26
  481. data/lib/kitabu/vendor/ruby1.9/uv/syntax/quake3_config.syntax +0 -32
  482. data/lib/kitabu/vendor/ruby1.9/uv/syntax/r.syntax +0 -81
  483. data/lib/kitabu/vendor/ruby1.9/uv/syntax/r_console.syntax +0 -16
  484. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ragel.syntax +0 -201
  485. data/lib/kitabu/vendor/ruby1.9/uv/syntax/rd_r_documentation.syntax +0 -91
  486. data/lib/kitabu/vendor/ruby1.9/uv/syntax/regexp.syntax +0 -50
  487. data/lib/kitabu/vendor/ruby1.9/uv/syntax/release_notes.syntax +0 -46
  488. data/lib/kitabu/vendor/ruby1.9/uv/syntax/remind.syntax +0 -253
  489. data/lib/kitabu/vendor/ruby1.9/uv/syntax/restructuredtext.syntax +0 -250
  490. data/lib/kitabu/vendor/ruby1.9/uv/syntax/rez.syntax +0 -80
  491. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ruby.syntax +0 -1035
  492. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ruby_experimental.syntax +0 -145
  493. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ruby_on_rails.syntax +0 -88
  494. data/lib/kitabu/vendor/ruby1.9/uv/syntax/s5.syntax +0 -69
  495. data/lib/kitabu/vendor/ruby1.9/uv/syntax/scheme.syntax +0 -347
  496. data/lib/kitabu/vendor/ruby1.9/uv/syntax/scilab.syntax +0 -41
  497. data/lib/kitabu/vendor/ruby1.9/uv/syntax/setext.syntax +0 -147
  498. data/lib/kitabu/vendor/ruby1.9/uv/syntax/shell-unix-generic.syntax +0 -384
  499. data/lib/kitabu/vendor/ruby1.9/uv/syntax/slate.syntax +0 -149
  500. data/lib/kitabu/vendor/ruby1.9/uv/syntax/sql.syntax +0 -237
  501. data/lib/kitabu/vendor/ruby1.9/uv/syntax/sql_rails.syntax +0 -18
  502. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ssh-config.syntax +0 -33
  503. data/lib/kitabu/vendor/ruby1.9/uv/syntax/standard_ml.syntax +0 -121
  504. data/lib/kitabu/vendor/ruby1.9/uv/syntax/strings_file.syntax +0 -39
  505. data/lib/kitabu/vendor/ruby1.9/uv/syntax/subversion_commit_message.syntax +0 -36
  506. data/lib/kitabu/vendor/ruby1.9/uv/syntax/sweave.syntax +0 -84
  507. data/lib/kitabu/vendor/ruby1.9/uv/syntax/swig.syntax +0 -57
  508. data/lib/kitabu/vendor/ruby1.9/uv/syntax/tcl.syntax +0 -152
  509. data/lib/kitabu/vendor/ruby1.9/uv/syntax/template_toolkit.syntax +0 -121
  510. data/lib/kitabu/vendor/ruby1.9/uv/syntax/tex.syntax +0 -86
  511. data/lib/kitabu/vendor/ruby1.9/uv/syntax/tex_math.syntax +0 -49
  512. data/lib/kitabu/vendor/ruby1.9/uv/syntax/textile.syntax +0 -215
  513. data/lib/kitabu/vendor/ruby1.9/uv/syntax/tsv.syntax +0 -50
  514. data/lib/kitabu/vendor/ruby1.9/uv/syntax/twiki.syntax +0 -241
  515. data/lib/kitabu/vendor/ruby1.9/uv/syntax/txt2tags.syntax +0 -79
  516. data/lib/kitabu/vendor/ruby1.9/uv/syntax/vectorscript.syntax +0 -57
  517. data/lib/kitabu/vendor/ruby1.9/uv/syntax/xhtml_1.0.syntax +0 -4027
  518. data/lib/kitabu/vendor/ruby1.9/uv/syntax/xml.syntax +0 -180
  519. data/lib/kitabu/vendor/ruby1.9/uv/syntax/xml_strict.syntax +0 -92
  520. data/lib/kitabu/vendor/ruby1.9/uv/syntax/xsl.syntax +0 -60
  521. data/lib/kitabu/vendor/ruby1.9/uv/syntax/yaml.syntax +0 -160
  522. data/lib/kitabu/vendor/ruby1.9/uv/syntax/yui_javascript.syntax +0 -176
  523. data/lib/kitabu/vendor/ruby1.9/uv/uv.rb +0 -89
  524. data/lib/kitabu/vendor/ruby1.9/uv/uv/render_processor.rb +0 -132
  525. data/lib/kitabu/vendor/ruby1.9/uv/uv/utility.rb +0 -68
  526. data/spec/exit_matcher.rb +0 -45
  527. data/spec/fixtures/rails-guides/code/sample.rb +0 -7
  528. data/spec/kitabu/base_spec.rb +0 -159
  529. data/spec/kitabu/blackcloth_spec.rb +0 -41
  530. data/spec/kitabu/bug_fix_spec.rb +0 -25
  531. data/spec/kitabu/command_spec.rb +0 -82
  532. data/templates/Rakefile +0 -3
  533. data/templates/config.yml +0 -9
  534. data/templates/layouts/boom/layout.css +0 -469
  535. data/templates/syntax.css +0 -1065
  536. data/templates/themes/active4d.css +0 -114
  537. data/templates/themes/blackboard.css +0 -88
  538. data/templates/themes/dawn.css +0 -121
  539. data/templates/themes/eiffel.css +0 -121
  540. data/templates/themes/idle.css +0 -62
  541. data/templates/themes/iplastic.css +0 -80
  542. data/templates/themes/lazy.css +0 -73
  543. data/templates/themes/slush_poppies.css +0 -85
  544. data/templates/themes/sunburst.css +0 -180
@@ -1,45 +0,0 @@
1
- module ExitMatcher
2
- class ExitWithStatus
3
- attr_reader :expected
4
- attr_reader :actual
5
-
6
- def initialize(expected)
7
- @expected = expected
8
- end
9
-
10
- def matches?(given_proc)
11
- status = nil
12
-
13
- begin
14
- given_proc.call
15
- rescue SystemExit
16
- status = $!.status
17
- end
18
-
19
- @actual = status
20
-
21
- @actual == @expected
22
- end
23
-
24
- def failure_message_for_should
25
- if actual.nil?
26
- "expected block to exit with #{expected.inspect} status, but didn't exit"
27
- else
28
- "expected block to exit with #{expected.inspect} status, but did it with #{actual.inspect}"
29
- end
30
- end
31
-
32
- def failure_message_for_should_not
33
- "expected block to not exit with #{actual.inspect} status, but did it"
34
- end
35
-
36
- private
37
- def negative_expectation?
38
- caller.first(3).find { |s| s =~ /should_not/ }
39
- end
40
- end
41
-
42
- def exit_with(expected)
43
- ExitWithStatus.new(expected)
44
- end
45
- end
@@ -1,7 +0,0 @@
1
- class Sample
2
- # begin: method
3
- def hello(name)
4
- "hi, #{name}!"
5
- end
6
- # end: method
7
- end
@@ -1,159 +0,0 @@
1
- # encoding: utf-8
2
- require File.dirname(__FILE__) + "/../spec_helper"
3
-
4
- describe "Kitabu::Base" do
5
- before(:each) do
6
- reset_env!
7
- end
8
-
9
- describe "Defaults" do
10
- it "should be a valid theme" do
11
- Kitabu::Base.should be_theme(Kitabu::Base::DEFAULT_THEME)
12
- end
13
-
14
- it "should be a valid layout" do
15
- Kitabu::Base.should be_layout(Kitabu::Base::DEFAULT_LAYOUT)
16
- end
17
- end
18
-
19
- describe "Paths" do
20
- it "should return PDF path" do
21
- Kitabu::Base.pdf_path.should == File.join(Kitabu::Base.root_path, "output", "rails-guides.pdf")
22
- end
23
-
24
- it "should return HTML path" do
25
- Kitabu::Base.html_path.should == File.join(Kitabu::Base.root_path, "output", "rails-guides.html")
26
- end
27
-
28
- it "should return layout template path" do
29
- Kitabu::Base.template_path.should == File.join(Kitabu::Base.root_path, "templates", "layout.html")
30
- end
31
-
32
- it "should return config path" do
33
- Kitabu::Base.config_path.should == File.join(Kitabu::Base.root_path, "config.yml")
34
- end
35
-
36
- it "should return text directory" do
37
- Kitabu::Base.text_dir.should == File.join(Kitabu::Base.root_path, "text")
38
- end
39
- end
40
-
41
- describe "Configuration" do
42
- it "should load configuration file" do
43
- YAML.should_receive(:load_file).with(Kitabu::Base.config_path)
44
- Kitabu::Base.config
45
- end
46
- end
47
-
48
- describe "Helpers" do
49
- it "should return app name" do
50
- Kitabu::Base.app_name.should == "rails-guides"
51
- end
52
-
53
- it "should return default app name" do
54
- ENV["KITABU_NAME"] = nil
55
- Kitabu::Base.app_name.should == "kitabu"
56
- end
57
-
58
- it "should return permalink" do
59
- Kitabu::Base.to_permalink("Internacionalização no Ruby on Rails").should == "internacionalizacao-no-ruby-on-rails"
60
- end
61
-
62
- it "should return layout list" do
63
- Kitabu::Base.layouts.should == %w(boom)
64
- end
65
-
66
- it "should return theme list" do
67
- Kitabu::Base.themes.should == %w(active4d blackboard dawn eiffel idle iplastic lazy mac_classic slush_poppies sunburst)
68
- end
69
-
70
- it "should return syntax list" do
71
- Kitabu::Base.syntaxes.should == Uv.syntaxes
72
- end
73
- end
74
-
75
- describe "Markdown processors" do
76
- it "should return default processor" do
77
- Kitabu::Base.stub!(:config).and_return({})
78
- Kitabu::Base.markdown_processor_class.should == ::RDiscount
79
- end
80
-
81
- it "should return maruku processor" do
82
- ::Maruku = mock("Maruku")
83
- Kitabu::Base.stub!(:config).and_return("markdown" => "maruku")
84
- Kitabu::Base.markdown_processor_class.should == ::Maruku
85
- end
86
-
87
- it "should return bluecloth processor" do
88
- ::BlueCloth = mock("BlueCloth")
89
- Kitabu::Base.stub!(:config).and_return("markdown" => "bluecloth")
90
- Kitabu::Base.markdown_processor_class.should == ::BlueCloth
91
- end
92
-
93
- it "should return bluecloth processor" do
94
- ::PEGMarkdown = mock("PEGMarkdown")
95
- Kitabu::Base.stub!(:config).and_return("markdown" => "peg_markdown")
96
- Kitabu::Base.markdown_processor_class.should == ::PEGMarkdown
97
- end
98
- end
99
-
100
- describe "PDF generation" do
101
- it "should execute command and close connection" do
102
- cmd = "prince %s -o %s" % [Kitabu::Base.html_path, Kitabu::Base.pdf_path]
103
- io = mock("IO")
104
-
105
- io.should_receive(:close)
106
- IO.should_receive(:popen).with(cmd).and_return(io)
107
-
108
- Kitabu::Base.generate_pdf
109
- end
110
- end
111
-
112
- describe "HTML generation" do
113
- before(:each) do
114
- FileUtils.rm_rf(Kitabu::Base.root_path + "/output")
115
- ENV["KITABU_NAME"] = File.basename(Kitabu::Base.root_path)
116
-
117
- Kitabu::Base.generate_html
118
- @html = File.read(Kitabu::Base.html_path)
119
- end
120
-
121
- it "should generate file" do
122
- File.should be_file(Kitabu::Base.html_path)
123
- end
124
-
125
- it "should set TOC" do
126
- @html.should have_tag("#table-of-contents div.level2")
127
- end
128
-
129
- it "should set meta tags" do
130
- @html.should have_tag(%(meta[@name=author])) do |tag|
131
- tag["content"].should == "The Ruby on Rails community"
132
- end
133
-
134
- @html.should have_tag(%(meta[@name=subject])) do |tag|
135
- tag["content"].should == "These guides are designed to make you immediately productive with Rails, and to help you understand how all of the pieces fit together."
136
- end
137
-
138
- @html.should have_tag(%(meta[@name=keywords])) do |tag|
139
- tag["content"].should == "ruby, ruby on rails, documentation"
140
- end
141
- end
142
-
143
- it "should set title" do
144
- @html.should have_tag("#cover h1", "Rails Guides")
145
- end
146
-
147
- it "should separate text into chapters" do
148
- @html.should have_tag("div.chapter", :count => 3)
149
- end
150
-
151
- it "should parse textile files" do
152
- @html.should have_tag("div.chapter h2#introduction", "Introduction")
153
- end
154
-
155
- it "should parse markdown files" do
156
- @html.should have_tag("div.chapter h2#rails-internationalization-i18n-api", "Rails Internationalization (I18n) API")
157
- end
158
- end
159
- end
@@ -1,41 +0,0 @@
1
- # encoding: utf-8
2
- require File.dirname(__FILE__) + "/../spec_helper"
3
-
4
- describe "BlackCloth" do
5
- it "should parse figure tag" do
6
- @html = BlackCloth.new("figure(The Rails logo). rails.png").to_html
7
- @html.should have_tag("p.figure") do |p|
8
- p.should have_tag("img[@src=../images/rails.png][@style='width: 87px; height: 111px'][@alt='The Rails logo']")
9
- p.should have_tag("span.caption", "The Rails logo")
10
- end
11
- end
12
-
13
- it "should parse note tag" do
14
- @html = BlackCloth.new("note. Some important note!").to_html
15
- @html.should have_tag("p.note", "Some important note!")
16
- end
17
-
18
- it "should parse attention tag" do
19
- @html = BlackCloth.new("attention. Some warning note!").to_html
20
- @html.should have_tag("p.attention", "Some warning note!")
21
- end
22
-
23
- it "should link to file" do
24
- Kitabu::Base.should_receive(:config).and_return("base_url" => "http://example.com")
25
- @html = BlackCloth.new("file. app/models/users.rb").to_html
26
-
27
- @html.should have_tag("p.file") do |p|
28
- p.should have_tag("a[@href=http://example.com/app/models/users.rb]", "app/models/users.rb")
29
- end
30
- end
31
-
32
- it "should create footnote" do
33
- @html = BlackCloth.new("Writing some text with a footnote %{this is a footnote}").to_html
34
- @html.should == %(<p>Writing some text with a footnote<span class="footnote">this is a footnote</span></p>)
35
- end
36
-
37
- it "should link url" do
38
- @html = BlackCloth.new("<http://example.com>").to_html
39
- @html.should == %(<a href="http://example.com">http://example.com</a>)
40
- end
41
- end
@@ -1,25 +0,0 @@
1
- # encoding: utf-8
2
- require File.dirname(__FILE__) + "/../spec_helper"
3
-
4
- describe "Bug Fix" do
5
- describe "Issue #3" do
6
- before(:each) do
7
- ENV["KITABU_ROOT"] = File.dirname(__FILE__) + "/../fixtures/wikipedia"
8
- ENV["KITABU_NAME"] = "wikipedia"
9
- end
10
-
11
- it "should generate HTML when syntax highlight is disabled" do
12
- ENV["NO_SYNTAX_HIGHLIGHT"] = "1"
13
- Kitabu::Base.generate_html
14
- @html = File.read(Kitabu::Base.root_path + "/output/wikipedia.html")
15
- @html.should have_tag("h2", :count => 2)
16
- end
17
-
18
- it "should generate HTML when syntax highlight is disabled" do
19
- ENV.delete("NO_SYNTAX_HIGHLIGHT")
20
- Kitabu::Base.generate_html
21
- @html = File.read(Kitabu::Base.root_path + "/output/wikipedia.html")
22
- @html.should have_tag("h2", :count => 2)
23
- end
24
- end
25
- end
@@ -1,82 +0,0 @@
1
- # encoding: utf-8
2
- require File.dirname(__FILE__) + "/../spec_helper"
3
- require "kitabu/command"
4
-
5
- OUTPUT = []
6
-
7
- module Kitabu
8
- module Command
9
- extend self
10
-
11
- def output(*args)
12
- args.each {|v| OUTPUT << v}
13
- end
14
- end
15
- end
16
-
17
- describe "Kitabu::Command" do
18
- before(:each) do
19
- @dir = "/tmp/kitabu-sample"
20
-
21
- OUTPUT.delete_if { true }
22
- ARGV.delete_if { true }
23
- FileUtils.rm_rf(@dir)
24
- end
25
-
26
- it "should copy templates" do
27
- run_with(@dir)
28
-
29
- File.should be_file(@dir + "/Rakefile")
30
- File.should be_file(@dir + "/config.yml")
31
- File.should be_file(@dir + "/templates/layout.css")
32
- File.should be_file(@dir + "/templates/layout.html")
33
- File.should be_file(@dir + "/templates/syntax.css")
34
- File.should be_file(@dir + "/templates/user.css")
35
-
36
- File.should be_directory(@dir + "/text")
37
- File.should be_directory(@dir + "/output")
38
- end
39
-
40
- it "should display help when no arg is provided" do
41
- doing {
42
- run_with
43
- }.should exit_with(0)
44
-
45
- OUTPUT.first.should == KITABU_HELP
46
- end
47
-
48
- it "should require valid layout" do
49
- doing {
50
- run_with @dir, "-l", "invalid"
51
- }.should exit_with(1)
52
-
53
- OUTPUT.first.should == "Invalid layout"
54
- end
55
-
56
- it "should accept valid layout" do
57
- run_with @dir, "-l", "boom"
58
-
59
- File.should be_file(@dir + "/templates/layout.css")
60
- File.should be_file(@dir + "/templates/layout.html")
61
- end
62
-
63
- it "should exit on existing path" do
64
- run_with @dir
65
-
66
- doing {
67
- run_with @dir
68
- }.should exit_with(1)
69
-
70
- OUTPUT.first.should == "Output path already exists"
71
- end
72
-
73
- private
74
- def argv!(*args)
75
- args.each {|v| ARGV << v }
76
- end
77
-
78
- def run_with(*args)
79
- argv!(*args)
80
- Kitabu::Command.run!
81
- end
82
- end
@@ -1,3 +0,0 @@
1
- KITABU_ROOT = File.dirname(__FILE__)
2
- ENV["KITABU_NAME"] ||= File.basename(KITABU_ROOT)
3
- require "kitabu/tasks"
@@ -1,9 +0,0 @@
1
- title: "[Your Book Title]"
2
- year: 2009
3
- authors:
4
- - "[Your Name]"
5
- subject: "[Your book description]"
6
- keywords: "[Your book keywords (comma-separated)]"
7
- theme: idle
8
- base_url: http://example.com
9
- copyright: "[Your copyright info]"
@@ -1,469 +0,0 @@
1
- /* Sample style sheet for boom!, the book microformat */
2
- /* written by Hakon Wium Lie and Bert Bos, November 2005 */
3
- /* You may reuse this style sheet for any purpose without any fees */
4
-
5
- html {
6
- margin: 0;
7
- font: 10pt/1.26 "Gill Sans", sans-serif;
8
- }
9
-
10
- body {
11
- margin: 0 0 0 13%;
12
- }
13
-
14
- h1, h2, h3, h4, h5, h6 {
15
- font-family: "Gill Sans", sans-serif;
16
- margin: 2em 0 0.5em 0;
17
- page-break-after: avoid;
18
- }
19
-
20
- h1 {
21
- page-break-before: always;
22
- padding: 2em 0 2em 0;
23
- margin: 0;
24
- font-size: 2.4em;
25
- font-weight: 900;
26
- }
27
-
28
- h2 {
29
- font-size: 1.2em;
30
- text-transform: uppercase;
31
- font-weight: bold;
32
- }
33
-
34
- h3 {
35
- font-size: 1em;
36
- font-weight: bold;
37
- }
38
-
39
- q::before {
40
- content: "\201C";
41
- }
42
-
43
- q::after {
44
- content: "\201D";
45
- }
46
-
47
- /*p { margin: 0 }*/
48
- /*p + p { text-indent: 1.3em }*/
49
- p.sidenote + p, p.caption, p.art { text-indent: 0 }
50
-
51
- p.author {
52
- margin-top: 2em;
53
- text-indent: 0;
54
- text-align: right;
55
- }
56
-
57
- pre { margin: 1em 1.3em; color: #600; }
58
-
59
- a { text-decoration: none; color: black }
60
-
61
- /* cross-references */
62
-
63
- a.pageref::after { content: " on page " target-counter(attr(href), page); }
64
- a.chapref::before { content: " Chapter " target-counter(attr(href), chapter) ", "; }
65
- a.figref { content: " Figure " target-counter(attr(href), figure); }
66
- a.tableref { content: " Table " target-counter(attr(href), figure); }
67
-
68
- /* sidenotes */
69
-
70
- .sidenote {
71
- float: left;
72
- clear: left;
73
- margin: 0 0 1em -41%;
74
- width: 37%;
75
- font-size: 0.9em;
76
- font-style: normal;
77
- text-indent: 0;
78
- text-align: right;
79
- page-break-inside: avoid;
80
- }
81
-
82
- /* sidebars */
83
-
84
- div.sidebar {
85
- float: top-next;
86
- margin: 1.2em 0 1.2em 0;
87
- border: thin solid;
88
- background: #CCC;
89
- padding: 0.5em 1em;
90
- page-break-inside: avoid;
91
- column-count: 2;
92
- column-gap: 1.5em;
93
- }
94
-
95
- div.sidebar h2 {
96
- margin-top: 0;
97
- }
98
-
99
- /* figures and tables*/
100
-
101
- div.figure {
102
- margin: 1em 0;
103
- counter-increment: figure;
104
- }
105
-
106
- div.figure .caption, div.table .caption {
107
- float: left;
108
- clear: left;
109
- width: 37%;
110
- text-align: right;
111
- font-size: 0.9em;
112
- margin: 0 0 1.2em -40%;
113
- }
114
-
115
- div.figure .caption::before {
116
- content: "Figure " counter(figure) ": ";
117
- font-weight: bold;
118
- }
119
-
120
- div.table .caption::before {
121
- content: "Table " counter(table) ": ";
122
- font-weight: bold;
123
- }
124
-
125
- div.table {
126
- margin: 1em 0;
127
- counter-increment: table;
128
- }
129
-
130
- div.table th {
131
- text-align: left;
132
- }
133
-
134
- table th, table td {
135
- text-align: left;
136
- padding-right: 1em;
137
- }
138
-
139
- table.lined td, table.lined th {
140
- border-top: none;
141
- border-bottom: thin dotted;
142
- padding-top: 0.2em;
143
- padding-bottom: 0.2em;
144
- }
145
-
146
-
147
- @page {
148
- margin: 27mm 16mm 27mm 16mm;
149
- size: 7in 9.25in landscape;
150
-
151
- @footnotes {
152
- border-top: thin solid black;
153
- padding-top: 0.3em;
154
- margin-top: 0.6em;
155
- margin-left: 30%;
156
- }
157
- }
158
-
159
-
160
- /* define default page and names pages: cover, blank, frontmatter */
161
-
162
- @page :left {
163
- @top-left {
164
- font: 11pt "Gill Sans", serif;
165
- vertical-align: bottom;
166
- padding-bottom: 2em;
167
- }
168
-
169
- @bottom-left {
170
- font: 11pt "Gill Sans", serif;
171
- content: counter(page);
172
- padding-top: 2em;
173
- vertical-align: top;
174
- }
175
- }
176
-
177
- @page :right {
178
- @top-right {
179
- font: 11pt "Gill Sans", serif;
180
- content: string(header, first);
181
- vertical-align: bottom;
182
- padding-bottom: 2em;
183
- }
184
-
185
- @bottom-right {
186
- font: 11pt "Gill Sans", serif;
187
- content: counter(page);
188
- text-align: right;
189
- vertical-align: top;
190
- padding-top: 2em;
191
- }
192
- }
193
-
194
- @page frontmatter :left {
195
- @top-left {
196
- font: 11pt "Gill Sans", serif;
197
- content: string(title);
198
- vertical-align: bottom;
199
- padding-bottom: 2em;
200
- }
201
-
202
- @bottom-left {
203
- font: 11pt "Gill Sans", serif;
204
- content: counter(page, lower-roman);
205
- padding-top: 2em;
206
- vertical-align: top;
207
- }
208
- }
209
-
210
- @page cover { margin: 0; }
211
-
212
- @page frontmatter :right {
213
- @top-right {
214
- font: 11pt "Gill Sans", serif;
215
- content: string(header, first);
216
- vertical-align: bottom;
217
- padding-bottom: 2em;
218
- }
219
-
220
- @bottom-right {
221
- font: 11pt "Gill Sans", serif;
222
- content: counter(page, lower-roman);
223
- text-align: right;
224
- vertical-align: top;
225
- padding-top: 2em;
226
- }
227
- }
228
-
229
- @page blank :left {
230
- @top-left { content: normal }
231
- @bottom-left { content: normal }
232
- }
233
-
234
- @page blank :right {
235
- @top-right { content: normal }
236
- @bottom-right { content: normal }
237
- }
238
-
239
- /* footnotes */
240
-
241
- .footnote {
242
- display: none; /* default rule */
243
-
244
- display: prince-footnote; /* prince-specific rules */
245
- position: footnote;
246
- footnote-style-position: inside;
247
-
248
- counter-increment: footnote;
249
- margin-left: 1.4em;
250
- font-size: 90%;
251
- line-height: 1.4;
252
- }
253
-
254
- .footnote::footnote-call {
255
- vertical-align: super;
256
- font-size: 80%;
257
- }
258
-
259
- .footnote::footnote-marker {
260
- vertical-align: super;
261
- color: green;
262
- padding-right: 0.4em;
263
- }
264
-
265
-
266
- /*
267
- A book consists of different types of sections. We propose to use
268
- DIV elements with these class names:
269
-
270
- frontcover
271
- halftitlepage: contains the title of the book
272
- titlepage: contains the title of the book, name of author(s) and publisher
273
- imprint: left page with copyright, publisher, library printing information
274
- dedication: right page with short dedication
275
- foreword: written by someone other than the author(s)
276
- toc: table of contents
277
- preface: preface, including acknowledgements
278
- chapter: each chapter is given its own DIV element
279
- references: contains list of references
280
- appendix: each appendix is given its own
281
- bibliography
282
- glossary
283
- index
284
- colophon: describes how the book was produced
285
- backcover
286
-
287
- A book will use several of the types listed above, but few books
288
- will use all of them.
289
- */
290
-
291
- /* which section uses which named page */
292
-
293
- div.halftitlepage, div.titlepage, div.imprint, div.dedication { page: blank }
294
- div.foreword, div.toc, div.preface { page: frontmatter }
295
-
296
-
297
- /* page breaks */
298
-
299
- div.frontcover, div.halftitlepage, div.titlepage { page-break-before: right }
300
- div.imprint { page-break-before: always }
301
- div.dedication, div.foreword, div.toc, div.preface, div.chapter, div.reference,
302
- div.appendix, div.bibliography, div.glossary, div.index, div.colophon {
303
- page-break-before: always
304
- }
305
-
306
- div.backcover {
307
- page-break-before: left;
308
- page: cover;
309
- position: absolute;
310
- width: 9.25in; height: 7in;
311
- left: 0; top: 0;
312
- z-index: -1;
313
- }
314
-
315
- /* the front cover; this code is probably not very reusable by other books */
316
-
317
- div.frontcover {
318
- page: cover;
319
- position: absolute;
320
- width: 9.25in; height: 7in;
321
- left: 0; top: 0;
322
- z-index: -1;
323
- }
324
-
325
- div.frontcover img {
326
- position: absolute;
327
- width: 9.25in; height: 7in;
328
- /* width: 7in; height: 9.25in;*/
329
- left: 0; top: 0;
330
- z-index: -1;
331
- }
332
-
333
- div.frontcover h1 {
334
- position: absolute;
335
- left: 2cm; top: 1cm;
336
- color: white;
337
- font-size: 44pt;
338
- font-weight: normal;
339
- }
340
-
341
- div.frontcover h2 {
342
- position: absolute;
343
- right: 0; top: 5cm;
344
- color: black;
345
- background: white;
346
- font-size: 16pt;
347
- font-weight: normal;
348
- padding: 0.2em 5em 0.2em 1em;
349
- letter-spacing: 0.15em;
350
- }
351
-
352
- div.frontcover h3 {
353
- position: absolute;
354
- left: 2cm; top: 7cm;
355
- color: white;
356
- font-size: 24pt;
357
- font-weight: normal;
358
- }
359
-
360
- div.frontcover p {
361
- position: absolute;
362
- left: 2cm; bottom: 1.5cm;
363
- font-size: 24pt;
364
- color: black;
365
- font-weight: bold;
366
- text-transform: uppercase;
367
- }
368
-
369
-
370
- /* titlepage, halftitlepage */
371
-
372
- div.titlepage h1, div.halftitlepage h1 { margin-bottom: 2em; }
373
- div.titlepage h2, div.halftitlepage h2 { font-size: 1.2em; margin-bottom: 3em; }
374
- div.titlepage h3, div.halftitlepage h3 { font-size: 1em; margin-bottom: 3em; }
375
- div.titlepage p, div.halftitlepage p {
376
- font-size: 1.4em;
377
- font-weight: bold;
378
- margin: 0; padding: 0;
379
- }
380
-
381
-
382
- /* TOC */
383
-
384
- ul.toc, ul.toc ul {
385
- list-style-type: none;
386
- margin: 0; padding: 0;
387
- }
388
- ul.toc ul {
389
- margin-left: 1em;
390
- font-weight: normal;
391
- }
392
- ul.toc > li {
393
- font-weight: bold;
394
- margin-bottom: 0.5em;
395
- }
396
- ul.toc a::after {
397
- content: leader('.') target-counter(attr(href), page);
398
- font-style: normal;
399
- }
400
- ul.toc > li.frontmatter a::after {
401
- content: leader('.') target-counter(attr(href), page, lower-roman);
402
- font-style: normal;
403
- }
404
- ul.toc > li.endmatter a::after {
405
- content: leader('.') target-counter(attr(href), page);
406
- font-style: normal;
407
- }
408
- ul.toc > li.chapter::before {
409
- content: "Chapter " counter(toc-chapter, decimal);
410
- display: block;
411
- margin: 1em 0 0.1em -2.5cm;
412
- font-weight: normal;
413
- counter-increment: toc-chapter;
414
- page-break-after: avoid;
415
- }
416
-
417
- /* chapter numbers */
418
-
419
- div.chapter h1 { counter-increment: chapter }
420
-
421
- h1::before {
422
- white-space: pre;
423
- margin-left: -2.5cm;
424
- font-size: 50%;
425
- content: "\B0 \B0 \B0 \B0 \B0 \A"; /* ornaments */
426
- }
427
-
428
- div.chapter h1::before { content: "Chapter " counter(chapter) " \A"; }
429
-
430
- div.frontcover h1::before, div.titlepage h1::before, div.halftitlepage h1::before {
431
- content: normal; /* that is, none */
432
- }
433
-
434
- h1 { string-set: header content();}
435
- div.chapter h1 { string-set: header "Chapter " counter(chapter) ": " content(); }
436
-
437
- /* index */
438
-
439
- ul.index {
440
- list-style-type: none;
441
- margin: 0; padding: 0;
442
- column-count: 2;
443
- column-gap: 1em;
444
- }
445
-
446
- ul.index a::after { content: ", " target-counter(attr(href), page); }
447
-
448
-
449
- span.element, span.attribute {
450
- text-transform: uppercase;
451
- font-weight: bold;
452
- font-size: 80%;
453
- }
454
- span.property { font-weight: bold }
455
- code, pre, span.css, span.value, span.declaration {
456
- font-size: 8pt;
457
- font-family: Monaco, "Lucida Console", "Lucida Sans Typewriter", monospace;
458
- }
459
-
460
-
461
- @media screen, handheld {
462
- html { margin: 1em; font: 14px "Gill Sans", sans-serif; }
463
- h1 { margin-bottom: 0.5em }
464
- div.frontcover, div.backcover, div.halftitlepage, div.titlepage, div.imprint,
465
- div.dedication, div.foreword, div.toc, div.index { display: none }
466
- }
467
-
468
-
469
- div.white_page { page: cover; }