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.
- data/.gitignore +3 -0
- data/.gitmodules +3 -0
- data/.rspec +1 -0
- data/Gemfile +2 -0
- data/Gemfile.lock +62 -0
- data/README.rdoc +187 -0
- data/Rakefile +4 -36
- data/bin/kitabu +2 -5
- data/examples/RailsGuides/config/helper.rb +29 -0
- data/examples/RailsGuides/config/kitabu.yml +48 -0
- data/examples/RailsGuides/images/challenge.png +0 -0
- data/examples/RailsGuides/images/posts_index.png +0 -0
- data/examples/RailsGuides/images/rails_welcome.png +0 -0
- data/examples/RailsGuides/output/RailsGuides.epub +0 -0
- data/examples/RailsGuides/output/RailsGuides.html +1556 -0
- data/examples/RailsGuides/output/RailsGuides.pdf +4930 -7
- data/examples/RailsGuides/templates/cover.erb +16 -0
- data/examples/RailsGuides/templates/layout.css +352 -0
- data/examples/RailsGuides/templates/layout.erb +43 -0
- data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/idle.css → examples/RailsGuides/templates/syntax.css} +0 -0
- data/examples/RailsGuides/templates/user.css +19 -0
- data/examples/RailsGuides/text/01_Guide_Assumptions.mkdn +13 -0
- data/examples/RailsGuides/text/02_What_is_Rails.mkdn +106 -0
- data/examples/RailsGuides/text/03_Creating_a_new_Rails_project.mkdn +200 -0
- data/examples/RailsGuides/text/04_Hello_Rails.mkdn +62 -0
- data/examples/RailsGuides/text/05_Getting_Up_and_Running_Quickly_with_Scaffolding.mkdn +4 -0
- data/examples/RailsGuides/text/06_Creating_a_resource.mkdn +503 -0
- data/examples/RailsGuides/text/07_Adding_a_second_model.mkdn +232 -0
- data/examples/RailsGuides/text/08_Refactoring.mkdn +123 -0
- data/examples/RailsGuides/text/09_Deleting_comments.mkdn +57 -0
- data/examples/RailsGuides/text/09_Security.mkdn +56 -0
- data/examples/RailsGuides/text/10_Building_a_multi_model_form.mkdn +130 -0
- data/examples/RailsGuides/text/11_View_helpers.mkdn +50 -0
- data/examples/RailsGuides/text/12_Whats_next.mkdn +14 -0
- data/examples/RailsGuides/text/13_Configuration_gotchas.mkdn +10 -0
- data/kitabu.gemspec +28 -491
- data/lib/kitabu.rb +54 -46
- data/lib/kitabu/cli.rb +88 -0
- data/lib/kitabu/errors.rb +3 -0
- data/lib/kitabu/exporter.rb +81 -0
- data/lib/kitabu/extensions/redcloth.rb +65 -0
- data/lib/kitabu/extensions/string.rb +11 -0
- data/lib/kitabu/generator.rb +74 -0
- data/lib/kitabu/parser.rb +34 -0
- data/lib/kitabu/parser/epub.rb +131 -0
- data/lib/kitabu/parser/html.rb +174 -0
- data/lib/kitabu/parser/mobi.rb +17 -0
- data/lib/kitabu/parser/pdf.rb +41 -0
- data/lib/kitabu/parser/txt.rb +22 -0
- data/lib/kitabu/stream.rb +27 -0
- data/lib/kitabu/syntax.rb +109 -107
- data/lib/kitabu/toc.rb +62 -33
- data/lib/kitabu/version.rb +8 -0
- data/spec/kitabu/cli/export_spec.rb +17 -0
- data/spec/kitabu/cli/new_spec.rb +21 -0
- data/spec/kitabu/cli/permalinks_spec.rb +12 -0
- data/spec/kitabu/cli/version_spec.rb +12 -0
- data/spec/kitabu/extensions/redcloth_spec.rb +52 -0
- data/spec/kitabu/extensions/string_spec.rb +21 -0
- data/spec/kitabu/generator_spec.rb +10 -0
- data/spec/kitabu/parser/epub_spec.rb +10 -0
- data/spec/kitabu/parser/html_spec.rb +75 -0
- data/spec/kitabu/parser/pdf_spec.rb +14 -0
- data/spec/kitabu/syntax_spec.rb +80 -76
- data/spec/kitabu/toc_spec.rb +42 -68
- data/spec/kitabu_spec.rb +4 -0
- data/spec/spec_helper.rb +20 -24
- data/spec/support/exit_with_code.rb +26 -0
- data/spec/support/have_tag.rb +115 -0
- data/spec/support/helper.rb +18 -0
- data/spec/support/mybook/.gitignore +1 -0
- data/spec/support/mybook/code/.gitkeep +0 -0
- data/spec/support/mybook/code/code.rb +13 -0
- data/spec/support/mybook/config/helper.rb +29 -0
- data/spec/support/mybook/config/kitabu.yml +59 -0
- data/spec/support/mybook/images/.gitkeep +0 -0
- data/spec/support/mybook/images/logo.gif +0 -0
- data/spec/support/mybook/output/.gitkeep +0 -0
- data/spec/support/mybook/templates/cover.erb +16 -0
- data/spec/support/mybook/templates/epub.css +1 -0
- data/spec/support/mybook/templates/epub.erb +15 -0
- data/spec/support/mybook/templates/layout.css +137 -0
- data/{templates/layouts/boom/layout.html → spec/support/mybook/templates/layout.erb} +26 -17
- data/{templates/themes/mac_classic.css → spec/support/mybook/templates/syntax.css} +63 -0
- data/spec/support/mybook/templates/user.css +1 -0
- data/spec/support/mybook/text/.gitkeep +0 -0
- data/spec/support/mybook/text/01_Markdown_Chapter.markdown +8 -0
- data/spec/support/mybook/text/02_Textile_Chapter.textile +3 -0
- data/spec/support/mybook/text/03_HTML_Chapter.html +3 -0
- data/spec/support/mybook/text/04_With_Directory/Some_Chapter.mkdn +3 -0
- data/spec/support/mybook/text/CHANGELOG.textile +6 -0
- data/spec/support/mybook/text/TOC.textile +0 -0
- data/spec/support/mybook/text/_00_Introduction.markdown +3 -0
- data/spec/support/shared.rb +16 -0
- data/templates/config.erb +48 -0
- data/templates/cover.erb +16 -0
- data/templates/ebook.png +0 -0
- data/templates/epub.css +0 -0
- data/templates/epub.erb +15 -0
- data/templates/helper.rb +29 -0
- data/templates/layout.css +353 -0
- data/templates/layout.erb +44 -0
- data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/active4d.css +0 -0
- data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/all_hallows_eve.css +0 -0
- data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/amy.css +0 -0
- data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/blackboard.css +0 -0
- data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/brilliance_black.css +0 -0
- data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/brilliance_dull.css +0 -0
- data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/cobalt.css +0 -0
- data/{lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css → templates/styles}/dawn.css +0 -0
- data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/eiffel.css +0 -0
- data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/espresso_libre.css +0 -0
- data/{lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css → templates/styles}/idle.css +0 -0
- data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/iplastic.css +0 -0
- data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/lazy.css +0 -0
- data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/mac_classic.css +0 -0
- data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/magicwb_amiga.css +0 -0
- data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/pastels_on_dark.css +0 -0
- data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/slush_poppies.css +0 -0
- data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/spacecadet.css +0 -0
- data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/sunburst.css +0 -0
- data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/twilight.css +0 -0
- data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/zenburnesque.css +0 -0
- data/templates/user.css +1 -1
- metadata +395 -501
- data/README.markdown +0 -60
- data/VERSION +0 -1
- data/lib/kitabu/base.rb +0 -271
- data/lib/kitabu/blackcloth.rb +0 -184
- data/lib/kitabu/command.rb +0 -94
- data/lib/kitabu/redcloth.rb +0 -964
- data/lib/kitabu/tasks.rb +0 -113
- data/lib/kitabu/templates.rb +0 -54
- data/lib/kitabu/vendor/colorize/colorize.rb +0 -81
- data/lib/kitabu/vendor/ruby1.8/plist/plist.rb +0 -22
- data/lib/kitabu/vendor/ruby1.8/plist/plist/generator.rb +0 -224
- data/lib/kitabu/vendor/ruby1.8/plist/plist/parser.rb +0 -224
- data/lib/kitabu/vendor/ruby1.8/textpow/textpow.rb +0 -10
- data/lib/kitabu/vendor/ruby1.8/textpow/textpow/debug_processor.rb +0 -36
- data/lib/kitabu/vendor/ruby1.8/textpow/textpow/score_manager.rb +0 -65
- data/lib/kitabu/vendor/ruby1.8/textpow/textpow/syntax.rb +0 -284
- data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/active4d.render +0 -140
- data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/all_hallows_eve.render +0 -104
- data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/amy.render +0 -179
- data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/blackboard.render +0 -119
- data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/brilliance_black.render +0 -560
- data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/brilliance_dull.render +0 -569
- data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/cobalt.render +0 -170
- data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/dawn.render +0 -134
- data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/eiffel.render +0 -140
- data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/espresso_libre.render +0 -131
- data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/dawn.css +0 -121
- data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/idle.render +0 -101
- data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/iplastic.render +0 -107
- data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/lazy.render +0 -104
- data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/mac_classic.render +0 -143
- data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/magicwb_amiga.render +0 -125
- data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/pastels_on_dark.render +0 -212
- data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/slush_poppies.render +0 -131
- data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/spacecadet.render +0 -89
- data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/sunburst.render +0 -194
- data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/twilight.render +0 -161
- data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/zenburnesque.render +0 -134
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/actionscript.syntax +0 -97
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/active4d.syntax +0 -276
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/active4d_html.syntax +0 -311
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/active4d_ini.syntax +0 -50
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/active4d_library.syntax +0 -21
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/ada.syntax +0 -33
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/antlr.syntax +0 -151
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/apache.syntax +0 -191
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/applescript.syntax +0 -384
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/asp.syntax +0 -70
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/asp_vb.net.syntax +0 -129
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/bibtex.syntax +0 -151
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/blog_html.syntax +0 -41
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/blog_markdown.syntax +0 -42
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/blog_text.syntax +0 -27
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/blog_textile.syntax +0 -27
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/buggy/nemerle.syntax +0 -74
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/build.syntax +0 -53
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/bulletin_board.syntax +0 -287
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/c++.syntax +0 -109
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/c.syntax +0 -326
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/cake.syntax +0 -55
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/camlp4.syntax +0 -36
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/cm.syntax +0 -32
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/coldfusion.syntax +0 -119
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/context_free.syntax +0 -176
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/cs.syntax +0 -59
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/css.syntax +0 -195
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/css_experimental.syntax +0 -1925
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/csv.syntax +0 -68
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/d.syntax +0 -142
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/diff.syntax +0 -81
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/dokuwiki.syntax +0 -204
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/dot.syntax +0 -47
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/doxygen.syntax +0 -43
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/dylan.syntax +0 -62
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/eiffel.syntax +0 -78
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/erlang.syntax +0 -922
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/f-script.syntax +0 -80
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/fortran.syntax +0 -141
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/fxscript.syntax +0 -142
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/greasemonkey.syntax +0 -34
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/gri.syntax +0 -83
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/groovy.syntax +0 -191
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/gtd.syntax +0 -22
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/gtdalt.syntax +0 -143
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/haml.syntax +0 -88
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/haskell.syntax +0 -88
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/html-asp.syntax +0 -27
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/html.syntax +0 -362
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/html_django.syntax +0 -36
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/html_for_asp.net.syntax +0 -424
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/html_mason.syntax +0 -119
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/html_rails.syntax +0 -40
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/html_tcl.syntax +0 -26
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/icalendar.syntax +0 -32
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/inform.syntax +0 -48
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/ini.syntax +0 -55
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/installer_distribution_script.syntax +0 -77
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/io.syntax +0 -81
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/java.syntax +0 -211
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/javaproperties.syntax +0 -20
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/javascript.syntax +0 -256
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/javascript_+_prototype.syntax +0 -72
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/javascript_+_prototype_bracketed.syntax +0 -140
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/jquery_javascript.syntax +0 -114
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/json.syntax +0 -136
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/languagedefinition.syntax +0 -708
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/latex.syntax +0 -566
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/latex_beamer.syntax +0 -41
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/latex_log.syntax +0 -50
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/latex_memoir.syntax +0 -64
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/lexflex.syntax +0 -219
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/lighttpd.syntax +0 -54
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/lilypond.syntax +0 -492
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/lisp.syntax +0 -61
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/literate_haskell.syntax +0 -24
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/logo.syntax +0 -29
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/logtalk.syntax +0 -152
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/lua.syntax +0 -86
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/m.syntax +0 -142
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/macports_portfile.syntax +0 -163
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/mail.syntax +0 -118
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/makefile.syntax +0 -36
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/man.syntax +0 -17
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/markdown.syntax +0 -543
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/mediawiki.syntax +0 -567
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/mel.syntax +0 -92
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/mips.syntax +0 -66
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/mod_perl.syntax +0 -50
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/modula-3.syntax +0 -47
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/moinmoin.syntax +0 -189
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/mootools.syntax +0 -572
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/movable_type.syntax +0 -162
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/multimarkdown.syntax +0 -39
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/objective-c++.syntax +0 -18
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/objective-c.syntax +0 -233
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/ocaml.syntax +0 -764
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/ocamllex.syntax +0 -167
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/ocamlyacc.syntax +0 -184
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/old/YAML.yaml +0 -160
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/old/txt2tags.yaml +0 -139
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/opengl.syntax +0 -14
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/pascal.syntax +0 -77
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/perl.syntax +0 -1115
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/php.syntax +0 -1253
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/plain_text.syntax +0 -32
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/pmwiki.syntax +0 -113
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/postscript.syntax +0 -114
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/processing.syntax +0 -106
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/prolog.syntax +0 -40
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/property_list.syntax +0 -635
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/python.syntax +0 -868
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/python_django.syntax +0 -21
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/qmake_project.syntax +0 -114
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/qt_c++.syntax +0 -26
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/quake3_config.syntax +0 -32
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/r.syntax +0 -81
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/r_console.syntax +0 -16
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/ragel.syntax +0 -201
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/rd_r_documentation.syntax +0 -91
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/regexp.syntax +0 -50
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/regular_expressions_oniguruma.syntax +0 -107
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/regular_expressions_python.syntax +0 -109
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/release_notes.syntax +0 -46
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/remind.syntax +0 -253
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/restructuredtext.syntax +0 -250
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/rez.syntax +0 -80
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/ruby.syntax +0 -1035
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/ruby_experimental.syntax +0 -145
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/ruby_on_rails.syntax +0 -88
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/s5.syntax +0 -69
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/scheme.syntax +0 -347
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/scilab.syntax +0 -41
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/setext.syntax +0 -147
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/shell-unix-generic.syntax +0 -384
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/slate.syntax +0 -149
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/smarty.syntax +0 -63
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/sql.syntax +0 -237
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/sql_rails.syntax +0 -18
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/ssh-config.syntax +0 -33
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/standard_ml.syntax +0 -121
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/strings_file.syntax +0 -39
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/subversion_commit_message.syntax +0 -36
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/sweave.syntax +0 -84
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/swig.syntax +0 -57
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/tcl.syntax +0 -152
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/template_toolkit.syntax +0 -121
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/tex.syntax +0 -86
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/tex_math.syntax +0 -49
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/textile.syntax +0 -215
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/tsv.syntax +0 -50
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/twiki.syntax +0 -241
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/txt2tags.syntax +0 -79
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/vectorscript.syntax +0 -57
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/xhtml_1.0.syntax +0 -4027
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/xml.syntax +0 -180
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/xml_strict.syntax +0 -92
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/xsl.syntax +0 -60
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/yaml.syntax +0 -160
- data/lib/kitabu/vendor/ruby1.8/uv/syntax/yui_javascript.syntax +0 -176
- data/lib/kitabu/vendor/ruby1.8/uv/uv.rb +0 -88
- data/lib/kitabu/vendor/ruby1.8/uv/uv/render_processor.rb +0 -131
- data/lib/kitabu/vendor/ruby1.8/uv/uv/utility.rb +0 -67
- data/lib/kitabu/vendor/ruby1.9/plist/plist.rb +0 -23
- data/lib/kitabu/vendor/ruby1.9/plist/plist/generator.rb +0 -228
- data/lib/kitabu/vendor/ruby1.9/plist/plist/parser.rb +0 -225
- data/lib/kitabu/vendor/ruby1.9/textpow/textpow.rb +0 -10
- data/lib/kitabu/vendor/ruby1.9/textpow/textpow/debug_processor.rb +0 -37
- data/lib/kitabu/vendor/ruby1.9/textpow/textpow/score_manager.rb +0 -66
- data/lib/kitabu/vendor/ruby1.9/textpow/textpow/syntax.rb +0 -286
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/active4d.render +0 -140
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/all_hallows_eve.render +0 -104
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/amy.render +0 -179
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/blackboard.render +0 -119
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/brilliance_black.render +0 -560
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/brilliance_dull.render +0 -569
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/cobalt.render +0 -170
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/dawn.render +0 -134
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/eiffel.render +0 -140
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/espresso_libre.render +0 -131
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/active4d.css +0 -114
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/all_hallows_eve.css +0 -72
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/amy.css +0 -147
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/blackboard.css +0 -88
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/brilliance_black.css +0 -605
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/brilliance_dull.css +0 -599
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/cobalt.css +0 -149
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/eiffel.css +0 -121
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/espresso_libre.css +0 -109
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/iplastic.css +0 -80
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/lazy.css +0 -73
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/mac_classic.css +0 -123
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/magicwb_amiga.css +0 -104
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/pastels_on_dark.css +0 -188
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/slush_poppies.css +0 -85
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/spacecadet.css +0 -51
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/sunburst.css +0 -180
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/twilight.css +0 -137
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/zenburnesque.css +0 -91
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/idle.render +0 -101
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/iplastic.render +0 -107
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/lazy.render +0 -104
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/mac_classic.render +0 -143
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/magicwb_amiga.render +0 -125
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/pastels_on_dark.render +0 -212
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/slush_poppies.render +0 -131
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/spacecadet.render +0 -89
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/sunburst.render +0 -194
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/twilight.render +0 -161
- data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/zenburnesque.render +0 -134
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/actionscript.syntax +0 -97
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/active4d.syntax +0 -276
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/active4d_html.syntax +0 -311
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/active4d_ini.syntax +0 -50
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/active4d_library.syntax +0 -21
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/ada.syntax +0 -33
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/antlr.syntax +0 -151
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/apache.syntax +0 -191
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/applescript.syntax +0 -384
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/asp.syntax +0 -70
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/asp_vb.net.syntax +0 -129
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/bibtex.syntax +0 -151
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/blog_html.syntax +0 -41
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/blog_markdown.syntax +0 -42
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/blog_text.syntax +0 -27
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/blog_textile.syntax +0 -27
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/build.syntax +0 -53
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/bulletin_board.syntax +0 -287
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/cake.syntax +0 -55
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/camlp4.syntax +0 -36
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/cm.syntax +0 -32
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/coldfusion.syntax +0 -119
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/context_free.syntax +0 -176
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/cs.syntax +0 -59
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/css.syntax +0 -195
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/css_experimental.syntax +0 -1925
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/csv.syntax +0 -68
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/d.syntax +0 -142
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/diff.syntax +0 -81
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/dokuwiki.syntax +0 -204
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/dot.syntax +0 -47
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/doxygen.syntax +0 -43
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/dylan.syntax +0 -62
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/eiffel.syntax +0 -78
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/erlang.syntax +0 -922
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/f-script.syntax +0 -80
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/fortran.syntax +0 -141
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/fxscript.syntax +0 -142
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/greasemonkey.syntax +0 -34
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/gri.syntax +0 -83
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/groovy.syntax +0 -191
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/gtd.syntax +0 -22
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/gtdalt.syntax +0 -143
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/haml.syntax +0 -88
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/haskell.syntax +0 -88
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/html-asp.syntax +0 -27
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/html.syntax +0 -362
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/html_django.syntax +0 -36
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/html_for_asp.net.syntax +0 -424
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/html_mason.syntax +0 -119
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/html_rails.syntax +0 -40
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/html_tcl.syntax +0 -26
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/icalendar.syntax +0 -32
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/inform.syntax +0 -48
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/ini.syntax +0 -55
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/installer_distribution_script.syntax +0 -77
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/io.syntax +0 -81
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/java.syntax +0 -211
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/javaproperties.syntax +0 -20
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/javascript.syntax +0 -256
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/javascript_+_prototype.syntax +0 -72
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/javascript_+_prototype_bracketed.syntax +0 -140
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/jquery_javascript.syntax +0 -114
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/json.syntax +0 -136
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/languagedefinition.syntax +0 -708
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/latex.syntax +0 -566
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/latex_beamer.syntax +0 -41
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/latex_log.syntax +0 -50
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/latex_memoir.syntax +0 -64
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/lexflex.syntax +0 -219
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/lighttpd.syntax +0 -54
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/lilypond.syntax +0 -492
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/lisp.syntax +0 -61
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/literate_haskell.syntax +0 -24
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/logo.syntax +0 -29
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/logtalk.syntax +0 -152
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/lua.syntax +0 -86
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/m.syntax +0 -142
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/macports_portfile.syntax +0 -163
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/makefile.syntax +0 -36
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/man.syntax +0 -17
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/mediawiki.syntax +0 -567
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/mips.syntax +0 -66
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/mod_perl.syntax +0 -50
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/modula-3.syntax +0 -47
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/moinmoin.syntax +0 -189
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/mootools.syntax +0 -572
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/movable_type.syntax +0 -162
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/multimarkdown.syntax +0 -39
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/objective-c++.syntax +0 -18
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/objective-c.syntax +0 -233
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/ocaml.syntax +0 -764
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/ocamllex.syntax +0 -167
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/ocamlyacc.syntax +0 -184
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/opengl.syntax +0 -14
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/pascal.syntax +0 -77
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/perl.syntax +0 -1115
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/plain_text.syntax +0 -32
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/postscript.syntax +0 -114
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/processing.syntax +0 -106
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/prolog.syntax +0 -40
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/property_list.syntax +0 -635
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/python.syntax +0 -868
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/python_django.syntax +0 -21
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/qmake_project.syntax +0 -114
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/qt_c++.syntax +0 -26
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/quake3_config.syntax +0 -32
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/r.syntax +0 -81
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/r_console.syntax +0 -16
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/ragel.syntax +0 -201
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/rd_r_documentation.syntax +0 -91
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/regexp.syntax +0 -50
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/release_notes.syntax +0 -46
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/remind.syntax +0 -253
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/restructuredtext.syntax +0 -250
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/rez.syntax +0 -80
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/ruby.syntax +0 -1035
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/ruby_experimental.syntax +0 -145
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/ruby_on_rails.syntax +0 -88
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/s5.syntax +0 -69
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/scheme.syntax +0 -347
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/scilab.syntax +0 -41
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/setext.syntax +0 -147
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/shell-unix-generic.syntax +0 -384
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/slate.syntax +0 -149
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/sql.syntax +0 -237
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/sql_rails.syntax +0 -18
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/ssh-config.syntax +0 -33
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/standard_ml.syntax +0 -121
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/strings_file.syntax +0 -39
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/subversion_commit_message.syntax +0 -36
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/sweave.syntax +0 -84
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/swig.syntax +0 -57
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/tcl.syntax +0 -152
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/template_toolkit.syntax +0 -121
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/tex.syntax +0 -86
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/tex_math.syntax +0 -49
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/textile.syntax +0 -215
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/tsv.syntax +0 -50
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/twiki.syntax +0 -241
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/txt2tags.syntax +0 -79
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/vectorscript.syntax +0 -57
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/xhtml_1.0.syntax +0 -4027
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/xml.syntax +0 -180
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/xml_strict.syntax +0 -92
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/xsl.syntax +0 -60
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/yaml.syntax +0 -160
- data/lib/kitabu/vendor/ruby1.9/uv/syntax/yui_javascript.syntax +0 -176
- data/lib/kitabu/vendor/ruby1.9/uv/uv.rb +0 -89
- data/lib/kitabu/vendor/ruby1.9/uv/uv/render_processor.rb +0 -132
- data/lib/kitabu/vendor/ruby1.9/uv/uv/utility.rb +0 -68
- data/spec/exit_matcher.rb +0 -45
- data/spec/fixtures/rails-guides/code/sample.rb +0 -7
- data/spec/kitabu/base_spec.rb +0 -159
- data/spec/kitabu/blackcloth_spec.rb +0 -41
- data/spec/kitabu/bug_fix_spec.rb +0 -25
- data/spec/kitabu/command_spec.rb +0 -82
- data/templates/Rakefile +0 -3
- data/templates/config.yml +0 -9
- data/templates/layouts/boom/layout.css +0 -469
- data/templates/syntax.css +0 -1065
- data/templates/themes/active4d.css +0 -114
- data/templates/themes/blackboard.css +0 -88
- data/templates/themes/dawn.css +0 -121
- data/templates/themes/eiffel.css +0 -121
- data/templates/themes/idle.css +0 -62
- data/templates/themes/iplastic.css +0 -80
- data/templates/themes/lazy.css +0 -73
- data/templates/themes/slush_poppies.css +0 -85
- data/templates/themes/sunburst.css +0 -180
data/spec/exit_matcher.rb
DELETED
@@ -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
|
data/spec/kitabu/base_spec.rb
DELETED
@@ -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
|
data/spec/kitabu/bug_fix_spec.rb
DELETED
@@ -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
|
data/spec/kitabu/command_spec.rb
DELETED
@@ -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
|
data/templates/Rakefile
DELETED
data/templates/config.yml
DELETED
@@ -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; }
|