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/templates/syntax.css
DELETED
@@ -1,1065 +0,0 @@
|
|
1
|
-
pre.active4d .DiffHeader {
|
2
|
-
background-color: #656565;
|
3
|
-
color: #FFFFFF;
|
4
|
-
}
|
5
|
-
pre.active4d .Operator {
|
6
|
-
}
|
7
|
-
pre.active4d .InheritedClass {
|
8
|
-
}
|
9
|
-
pre.active4d .TypeName {
|
10
|
-
color: #21439C;
|
11
|
-
}
|
12
|
-
pre.active4d .Number {
|
13
|
-
color: #A8017E;
|
14
|
-
}
|
15
|
-
pre.active4d .EmbeddedSource {
|
16
|
-
background-color: #ECF1FF;
|
17
|
-
}
|
18
|
-
pre.active4d {
|
19
|
-
background-color: #FFFFFF;
|
20
|
-
color: #000000;
|
21
|
-
}
|
22
|
-
pre.active4d .DiffInsertedLine {
|
23
|
-
background-color: #98FF9A;
|
24
|
-
color: #000000;
|
25
|
-
}
|
26
|
-
pre.active4d .LibraryVariable {
|
27
|
-
color: #A535AE;
|
28
|
-
}
|
29
|
-
pre.active4d .Storage {
|
30
|
-
color: #FF5600;
|
31
|
-
}
|
32
|
-
pre.active4d .InterpolatedEntity {
|
33
|
-
font-weight: bold;
|
34
|
-
color: #66CCFF;
|
35
|
-
}
|
36
|
-
pre.active4d .line-numbers {
|
37
|
-
background-color: #BAD6FD;
|
38
|
-
color: #000000;
|
39
|
-
}
|
40
|
-
pre.active4d .LocalVariable {
|
41
|
-
font-weight: bold;
|
42
|
-
color: #6392FF;
|
43
|
-
}
|
44
|
-
pre.active4d .DiffLineRange {
|
45
|
-
background-color: #1B63FF;
|
46
|
-
color: #FFFFFF;
|
47
|
-
}
|
48
|
-
pre.active4d .BlockComment {
|
49
|
-
color: #D33435;
|
50
|
-
}
|
51
|
-
pre.active4d .TagName {
|
52
|
-
color: #016CFF;
|
53
|
-
}
|
54
|
-
pre.active4d .FunctionArgument {
|
55
|
-
}
|
56
|
-
pre.active4d .BuiltInConstant {
|
57
|
-
color: #A535AE;
|
58
|
-
}
|
59
|
-
pre.active4d .LineComment {
|
60
|
-
color: #D33535;
|
61
|
-
}
|
62
|
-
pre.active4d .DiffDeletedLine {
|
63
|
-
background-color: #FF7880;
|
64
|
-
color: #000000;
|
65
|
-
}
|
66
|
-
pre.active4d .NamedConstant {
|
67
|
-
color: #B7734C;
|
68
|
-
}
|
69
|
-
pre.active4d .CommandMethod {
|
70
|
-
font-weight: bold;
|
71
|
-
color: #45AE34;
|
72
|
-
}
|
73
|
-
pre.active4d .TableField {
|
74
|
-
color: #0BB600;
|
75
|
-
}
|
76
|
-
pre.active4d .PlainXmlText {
|
77
|
-
color: #000000;
|
78
|
-
}
|
79
|
-
pre.active4d .Invalid {
|
80
|
-
background-color: #990000;
|
81
|
-
color: #FFFFFF;
|
82
|
-
}
|
83
|
-
pre.active4d .LibraryClassType {
|
84
|
-
color: #A535AE;
|
85
|
-
}
|
86
|
-
pre.active4d .TagAttribute {
|
87
|
-
color: #963DFF;
|
88
|
-
}
|
89
|
-
pre.active4d .Keyword {
|
90
|
-
font-weight: bold;
|
91
|
-
color: #006699;
|
92
|
-
}
|
93
|
-
pre.active4d .UserDefinedConstant {
|
94
|
-
}
|
95
|
-
pre.active4d .String {
|
96
|
-
color: #666666;
|
97
|
-
}
|
98
|
-
pre.active4d .DiffUnchangedLine {
|
99
|
-
color: #5E5E5E;
|
100
|
-
}
|
101
|
-
pre.active4d .TagContainer {
|
102
|
-
color: #7A7A7A;
|
103
|
-
}
|
104
|
-
pre.active4d .FunctionName {
|
105
|
-
color: #21439C;
|
106
|
-
}
|
107
|
-
pre.active4d .Variable {
|
108
|
-
font-weight: bold;
|
109
|
-
color: #0053FF;
|
110
|
-
}
|
111
|
-
pre.active4d .DateTimeLiteral {
|
112
|
-
font-weight: bold;
|
113
|
-
color: #66CCFF;
|
114
|
-
}
|
115
|
-
|
116
|
-
|
117
|
-
pre.blackboard .LatexSupport {
|
118
|
-
color: #FBDE2D;
|
119
|
-
}
|
120
|
-
pre.blackboard .OcamlInfixOperator {
|
121
|
-
color: #8DA6CE;
|
122
|
-
}
|
123
|
-
pre.blackboard .MetaFunctionCallPy {
|
124
|
-
color: #BECDE6;
|
125
|
-
}
|
126
|
-
pre.blackboard .Superclass {
|
127
|
-
color: #FF6400;
|
128
|
-
font-style: italic;
|
129
|
-
}
|
130
|
-
pre.blackboard .Constant {
|
131
|
-
color: #D8FA3C;
|
132
|
-
}
|
133
|
-
pre.blackboard {
|
134
|
-
background-color: #0C1021;
|
135
|
-
color: #F8F8F8;
|
136
|
-
}
|
137
|
-
pre.blackboard .OcamlFPConstant {
|
138
|
-
text-decoration: underline;
|
139
|
-
}
|
140
|
-
pre.blackboard .OcamlFPInfixOperator {
|
141
|
-
text-decoration: underline;
|
142
|
-
}
|
143
|
-
pre.blackboard .Support {
|
144
|
-
color: #8DA6CE;
|
145
|
-
}
|
146
|
-
pre.blackboard .OcamlOperator {
|
147
|
-
color: #F8F8F8;
|
148
|
-
}
|
149
|
-
pre.blackboard .Storage {
|
150
|
-
color: #FBDE2D;
|
151
|
-
}
|
152
|
-
pre.blackboard .line-numbers {
|
153
|
-
background-color: #253B76;
|
154
|
-
color: #FFFFFF;
|
155
|
-
}
|
156
|
-
pre.blackboard .StringInterpolation {
|
157
|
-
color: #FF6400;
|
158
|
-
}
|
159
|
-
pre.blackboard .InvalidIllegal {
|
160
|
-
background-color: #9D1E15;
|
161
|
-
color: #F8F8F8;
|
162
|
-
}
|
163
|
-
pre.blackboard .PlistUnquotedString {
|
164
|
-
color: #FFFFFF;
|
165
|
-
}
|
166
|
-
pre.blackboard .OcamlVariant {
|
167
|
-
color: #D5E0F3;
|
168
|
-
}
|
169
|
-
pre.blackboard .MetaTag {
|
170
|
-
color: #7F90AA;
|
171
|
-
}
|
172
|
-
pre.blackboard .LatexEnvironment {
|
173
|
-
background-color: #F7F7F8;
|
174
|
-
}
|
175
|
-
pre.blackboard .OcamlFPPrefixOperator {
|
176
|
-
text-decoration: underline;
|
177
|
-
}
|
178
|
-
pre.blackboard .OcamlPrefixOperator {
|
179
|
-
color: #8DA6CE;
|
180
|
-
}
|
181
|
-
pre.blackboard .EntityNameSection {
|
182
|
-
color: #FFFFFF;
|
183
|
-
}
|
184
|
-
pre.blackboard .String {
|
185
|
-
color: #61CE3C;
|
186
|
-
}
|
187
|
-
pre.blackboard .Keyword {
|
188
|
-
color: #FBDE2D;
|
189
|
-
}
|
190
|
-
pre.blackboard .LatexEnvironmentNested {
|
191
|
-
background-color: #7691F3;
|
192
|
-
}
|
193
|
-
pre.blackboard .InvalidDeprecated {
|
194
|
-
color: #AB2A1D;
|
195
|
-
font-style: italic;
|
196
|
-
}
|
197
|
-
pre.blackboard .Variable {
|
198
|
-
}
|
199
|
-
pre.blackboard .Entity {
|
200
|
-
color: #FF6400;
|
201
|
-
}
|
202
|
-
pre.blackboard .Comment {
|
203
|
-
color: #AEAEAE;
|
204
|
-
}
|
205
|
-
|
206
|
-
|
207
|
-
pre.dawn .MetaSeparator {
|
208
|
-
font-weight: bold;
|
209
|
-
background-color: #DCDCDC;
|
210
|
-
color: #19356D;
|
211
|
-
}
|
212
|
-
pre.dawn .SupportVariable {
|
213
|
-
color: #234A97;
|
214
|
-
}
|
215
|
-
pre.dawn .Constant {
|
216
|
-
font-weight: bold;
|
217
|
-
color: #811F24;
|
218
|
-
}
|
219
|
-
pre.dawn .EmbeddedSource {
|
220
|
-
background-color: #829AC2;
|
221
|
-
}
|
222
|
-
pre.dawn .StringRegexpConstantCharacterEscape {
|
223
|
-
font-weight: bold;
|
224
|
-
color: #811F24;
|
225
|
-
}
|
226
|
-
pre.dawn .Support {
|
227
|
-
color: #691C97;
|
228
|
-
}
|
229
|
-
pre.dawn .MarkupList {
|
230
|
-
color: #693A17;
|
231
|
-
}
|
232
|
-
pre.dawn .Storage {
|
233
|
-
color: #A71D5D;
|
234
|
-
font-style: italic;
|
235
|
-
}
|
236
|
-
pre.dawn .line-numbers {
|
237
|
-
background-color: #7496CF;
|
238
|
-
color: #000000;
|
239
|
-
}
|
240
|
-
pre.dawn .StringConstant {
|
241
|
-
font-weight: bold;
|
242
|
-
color: #696969;
|
243
|
-
}
|
244
|
-
pre.dawn .MarkupUnderline {
|
245
|
-
text-decoration: underline;
|
246
|
-
color: #080808;
|
247
|
-
}
|
248
|
-
pre.dawn .MarkupHeading {
|
249
|
-
font-weight: bold;
|
250
|
-
color: #19356D;
|
251
|
-
}
|
252
|
-
pre.dawn .SupportConstant {
|
253
|
-
color: #B4371F;
|
254
|
-
}
|
255
|
-
pre.dawn .MarkupQuote {
|
256
|
-
background-color: #C5C5C5;
|
257
|
-
color: #0B6125;
|
258
|
-
font-style: italic;
|
259
|
-
}
|
260
|
-
pre.dawn .StringRegexpSpecial {
|
261
|
-
font-weight: bold;
|
262
|
-
color: #CF5628;
|
263
|
-
}
|
264
|
-
pre.dawn .InvalidIllegal {
|
265
|
-
background-color: #B52A1D;
|
266
|
-
color: #F8F8F8;
|
267
|
-
font-style: italic;
|
268
|
-
}
|
269
|
-
pre.dawn .MarkupDeleted {
|
270
|
-
color: #B52A1D;
|
271
|
-
}
|
272
|
-
pre.dawn .MarkupRaw {
|
273
|
-
background-color: #C5C5C5;
|
274
|
-
color: #234A97;
|
275
|
-
}
|
276
|
-
pre.dawn .SupportFunction {
|
277
|
-
color: #693A17;
|
278
|
-
}
|
279
|
-
pre.dawn .PunctuationSeparator {
|
280
|
-
color: #794938;
|
281
|
-
}
|
282
|
-
pre.dawn .StringRegexp {
|
283
|
-
color: #CF5628;
|
284
|
-
}
|
285
|
-
pre.dawn .StringEmbeddedSource {
|
286
|
-
background-color: #829AC2;
|
287
|
-
color: #080808;
|
288
|
-
}
|
289
|
-
pre.dawn .MarkupLink {
|
290
|
-
color: #234A97;
|
291
|
-
font-style: italic;
|
292
|
-
}
|
293
|
-
pre.dawn .MarkupBold {
|
294
|
-
font-weight: bold;
|
295
|
-
color: #080808;
|
296
|
-
}
|
297
|
-
pre.dawn .StringVariable {
|
298
|
-
color: #234A97;
|
299
|
-
}
|
300
|
-
pre.dawn .String {
|
301
|
-
color: #0B6125;
|
302
|
-
}
|
303
|
-
pre.dawn .Keyword {
|
304
|
-
color: #794938;
|
305
|
-
}
|
306
|
-
pre.dawn {
|
307
|
-
background-color: #F5F5F5;
|
308
|
-
color: #080808;
|
309
|
-
}
|
310
|
-
pre.dawn .MarkupItalic {
|
311
|
-
color: #080808;
|
312
|
-
font-style: italic;
|
313
|
-
}
|
314
|
-
pre.dawn .InvalidDeprecated {
|
315
|
-
font-weight: bold;
|
316
|
-
color: #B52A1D;
|
317
|
-
}
|
318
|
-
pre.dawn .Variable {
|
319
|
-
color: #234A97;
|
320
|
-
}
|
321
|
-
pre.dawn .Entity {
|
322
|
-
color: #BF4F24;
|
323
|
-
}
|
324
|
-
pre.dawn .Comment {
|
325
|
-
color: #5A525F;
|
326
|
-
font-style: italic;
|
327
|
-
}
|
328
|
-
|
329
|
-
|
330
|
-
pre.eiffel .EmbeddedSource {
|
331
|
-
background-color: #6597F6;
|
332
|
-
}
|
333
|
-
pre.eiffel .LibraryObject {
|
334
|
-
font-weight: bold;
|
335
|
-
color: #6D79DE;
|
336
|
-
}
|
337
|
-
pre.eiffel .Section {
|
338
|
-
font-style: italic;
|
339
|
-
}
|
340
|
-
pre.eiffel .FunctionArgumentAndResultTypes {
|
341
|
-
color: #70727E;
|
342
|
-
}
|
343
|
-
pre.eiffel .TypeName {
|
344
|
-
font-style: italic;
|
345
|
-
}
|
346
|
-
pre.eiffel .Number {
|
347
|
-
color: #CD0000;
|
348
|
-
font-style: italic;
|
349
|
-
}
|
350
|
-
pre.eiffel .MarkupList {
|
351
|
-
color: #B90690;
|
352
|
-
}
|
353
|
-
pre.eiffel .MarkupTagAttribute {
|
354
|
-
font-style: italic;
|
355
|
-
}
|
356
|
-
pre.eiffel .LibraryVariable {
|
357
|
-
font-weight: bold;
|
358
|
-
color: #21439C;
|
359
|
-
}
|
360
|
-
pre.eiffel .line-numbers {
|
361
|
-
background-color: #C3DCFF;
|
362
|
-
color: #000000;
|
363
|
-
}
|
364
|
-
pre.eiffel .FunctionParameter {
|
365
|
-
font-style: italic;
|
366
|
-
}
|
367
|
-
pre.eiffel .MarkupTag {
|
368
|
-
color: #1C02FF;
|
369
|
-
}
|
370
|
-
pre.eiffel {
|
371
|
-
background-color: #FFFFFF;
|
372
|
-
color: #000000;
|
373
|
-
}
|
374
|
-
pre.eiffel .MarkupHeading {
|
375
|
-
font-weight: bold;
|
376
|
-
color: #0C07FF;
|
377
|
-
}
|
378
|
-
pre.eiffel .JsOperator {
|
379
|
-
color: #687687;
|
380
|
-
}
|
381
|
-
pre.eiffel .InheritedClassName {
|
382
|
-
font-style: italic;
|
383
|
-
}
|
384
|
-
pre.eiffel .StringInterpolation {
|
385
|
-
color: #26B31A;
|
386
|
-
}
|
387
|
-
pre.eiffel .MarkupQuote {
|
388
|
-
color: #000000;
|
389
|
-
font-style: italic;
|
390
|
-
}
|
391
|
-
pre.eiffel .MarkupNameOfTag {
|
392
|
-
font-weight: bold;
|
393
|
-
}
|
394
|
-
pre.eiffel .InvalidTrailingWhitespace {
|
395
|
-
background-color: #FFD0D0;
|
396
|
-
}
|
397
|
-
pre.eiffel .LibraryConstant {
|
398
|
-
font-weight: bold;
|
399
|
-
color: #06960E;
|
400
|
-
}
|
401
|
-
pre.eiffel .MarkupXmlDeclaration {
|
402
|
-
color: #68685B;
|
403
|
-
}
|
404
|
-
pre.eiffel .PreprocessorDirective {
|
405
|
-
font-weight: bold;
|
406
|
-
color: #0C450D;
|
407
|
-
}
|
408
|
-
pre.eiffel .BuiltInConstant {
|
409
|
-
color: #585CF6;
|
410
|
-
font-style: italic;
|
411
|
-
}
|
412
|
-
pre.eiffel .MarkupDtd {
|
413
|
-
font-style: italic;
|
414
|
-
}
|
415
|
-
pre.eiffel .Invalid {
|
416
|
-
background-color: #990000;
|
417
|
-
color: #FFFFFF;
|
418
|
-
}
|
419
|
-
pre.eiffel .LibraryFunction {
|
420
|
-
font-weight: bold;
|
421
|
-
color: #3C4C72;
|
422
|
-
}
|
423
|
-
pre.eiffel .String {
|
424
|
-
color: #D80800;
|
425
|
-
}
|
426
|
-
pre.eiffel .UserDefinedConstant {
|
427
|
-
color: #C5060B;
|
428
|
-
font-style: italic;
|
429
|
-
}
|
430
|
-
pre.eiffel .Keyword {
|
431
|
-
font-weight: bold;
|
432
|
-
color: #0100B6;
|
433
|
-
}
|
434
|
-
pre.eiffel .MarkupDoctype {
|
435
|
-
color: #888888;
|
436
|
-
}
|
437
|
-
pre.eiffel .FunctionName {
|
438
|
-
font-weight: bold;
|
439
|
-
color: #0000A2;
|
440
|
-
}
|
441
|
-
pre.eiffel .PreprocessorLine {
|
442
|
-
color: #1A921C;
|
443
|
-
}
|
444
|
-
pre.eiffel .Variable {
|
445
|
-
color: #0206FF;
|
446
|
-
font-style: italic;
|
447
|
-
}
|
448
|
-
pre.eiffel .Comment {
|
449
|
-
color: #00B418;
|
450
|
-
}
|
451
|
-
|
452
|
-
|
453
|
-
pre.idle .InheritedClass {
|
454
|
-
}
|
455
|
-
pre.idle .TypeName {
|
456
|
-
color: #21439C;
|
457
|
-
}
|
458
|
-
pre.idle .Number {
|
459
|
-
}
|
460
|
-
pre.idle .LibraryVariable {
|
461
|
-
color: #A535AE;
|
462
|
-
}
|
463
|
-
pre.idle .Storage {
|
464
|
-
color: #FF5600;
|
465
|
-
}
|
466
|
-
pre.idle .line-numbers {
|
467
|
-
background-color: #BAD6FD;
|
468
|
-
color: #000000;
|
469
|
-
}
|
470
|
-
pre.idle {
|
471
|
-
background-color: #FFFFFF;
|
472
|
-
color: #000000;
|
473
|
-
}
|
474
|
-
pre.idle .StringInterpolation {
|
475
|
-
color: #990000;
|
476
|
-
}
|
477
|
-
pre.idle .TagName {
|
478
|
-
}
|
479
|
-
pre.idle .LibraryConstant {
|
480
|
-
color: #A535AE;
|
481
|
-
}
|
482
|
-
pre.idle .FunctionArgument {
|
483
|
-
}
|
484
|
-
pre.idle .BuiltInConstant {
|
485
|
-
color: #A535AE;
|
486
|
-
}
|
487
|
-
pre.idle .Invalid {
|
488
|
-
background-color: #990000;
|
489
|
-
color: #FFFFFF;
|
490
|
-
}
|
491
|
-
pre.idle .LibraryClassType {
|
492
|
-
color: #A535AE;
|
493
|
-
}
|
494
|
-
pre.idle .LibraryFunction {
|
495
|
-
color: #A535AE;
|
496
|
-
}
|
497
|
-
pre.idle .TagAttribute {
|
498
|
-
}
|
499
|
-
pre.idle .Keyword {
|
500
|
-
color: #FF5600;
|
501
|
-
}
|
502
|
-
pre.idle .UserDefinedConstant {
|
503
|
-
}
|
504
|
-
pre.idle .String {
|
505
|
-
color: #00A33F;
|
506
|
-
}
|
507
|
-
pre.idle .FunctionName {
|
508
|
-
color: #21439C;
|
509
|
-
}
|
510
|
-
pre.idle .Variable {
|
511
|
-
}
|
512
|
-
pre.idle .Comment {
|
513
|
-
color: #919191;
|
514
|
-
}
|
515
|
-
|
516
|
-
|
517
|
-
pre.iplastic .Constant {
|
518
|
-
color: #6782D3;
|
519
|
-
}
|
520
|
-
pre.iplastic .Support {
|
521
|
-
font-weight: bold;
|
522
|
-
color: #3333FF;
|
523
|
-
}
|
524
|
-
pre.iplastic .EmbeddedSource {
|
525
|
-
background-color: #F9F9F9;
|
526
|
-
color: #000000;
|
527
|
-
}
|
528
|
-
pre.iplastic .Arguments {
|
529
|
-
font-style: italic;
|
530
|
-
}
|
531
|
-
pre.iplastic .TypeName {
|
532
|
-
font-weight: bold;
|
533
|
-
}
|
534
|
-
pre.iplastic .Identifier {
|
535
|
-
color: #9700CC;
|
536
|
-
}
|
537
|
-
pre.iplastic .Number {
|
538
|
-
color: #0066FF;
|
539
|
-
}
|
540
|
-
pre.iplastic .SectionName {
|
541
|
-
font-weight: bold;
|
542
|
-
}
|
543
|
-
pre.iplastic .Storage {
|
544
|
-
font-weight: bold;
|
545
|
-
}
|
546
|
-
pre.iplastic .line-numbers {
|
547
|
-
background-color: #BAD6FD;
|
548
|
-
color: #000000;
|
549
|
-
}
|
550
|
-
pre.iplastic {
|
551
|
-
background-color: #EEEEEE;
|
552
|
-
color: #000000;
|
553
|
-
}
|
554
|
-
pre.iplastic .FrameTitle {
|
555
|
-
font-weight: bold;
|
556
|
-
color: #000000;
|
557
|
-
}
|
558
|
-
pre.iplastic .TagName {
|
559
|
-
font-weight: bold;
|
560
|
-
}
|
561
|
-
pre.iplastic .Tag {
|
562
|
-
color: #0033CC;
|
563
|
-
}
|
564
|
-
pre.iplastic .Exception {
|
565
|
-
color: #990000;
|
566
|
-
}
|
567
|
-
pre.iplastic .XmlDeclaration {
|
568
|
-
color: #333333;
|
569
|
-
}
|
570
|
-
pre.iplastic .TrailingWhitespace {
|
571
|
-
background-color: #EEEEEE;
|
572
|
-
}
|
573
|
-
pre.iplastic .TagAttribute {
|
574
|
-
color: #3366CC;
|
575
|
-
font-style: italic;
|
576
|
-
}
|
577
|
-
pre.iplastic .Invalid {
|
578
|
-
background-color: #E7342D;
|
579
|
-
color: #FF0000;
|
580
|
-
}
|
581
|
-
pre.iplastic .Keyword {
|
582
|
-
color: #0000FF;
|
583
|
-
}
|
584
|
-
pre.iplastic .String {
|
585
|
-
color: #009933;
|
586
|
-
}
|
587
|
-
pre.iplastic .Comment {
|
588
|
-
color: #0066FF;
|
589
|
-
font-style: italic;
|
590
|
-
}
|
591
|
-
pre.iplastic .FunctionName {
|
592
|
-
color: #FF8000;
|
593
|
-
}
|
594
|
-
pre.iplastic .RegularExpression {
|
595
|
-
color: #FF0080;
|
596
|
-
}
|
597
|
-
|
598
|
-
|
599
|
-
pre.lazy .OcamlInfixFPOperator {
|
600
|
-
text-decoration: underline;
|
601
|
-
}
|
602
|
-
pre.lazy .OcamlInfixOperator {
|
603
|
-
color: #3B5BB5;
|
604
|
-
}
|
605
|
-
pre.lazy .MetaFunctionCallPy {
|
606
|
-
color: #3E4558;
|
607
|
-
}
|
608
|
-
pre.lazy .Superclass {
|
609
|
-
color: #3B5BB5;
|
610
|
-
font-style: italic;
|
611
|
-
}
|
612
|
-
pre.lazy .LatexEntity {
|
613
|
-
color: #D62A28;
|
614
|
-
}
|
615
|
-
pre.lazy .Constant {
|
616
|
-
color: #3B5BB5;
|
617
|
-
}
|
618
|
-
pre.lazy .OcamlFPConstant {
|
619
|
-
text-decoration: underline;
|
620
|
-
}
|
621
|
-
pre.lazy .Support {
|
622
|
-
color: #3B5BB5;
|
623
|
-
}
|
624
|
-
pre.lazy .OcamlOperator {
|
625
|
-
color: #000000;
|
626
|
-
}
|
627
|
-
pre.lazy .line-numbers {
|
628
|
-
background-color: #E3FC8D;
|
629
|
-
color: #000000;
|
630
|
-
}
|
631
|
-
pre.lazy .StringInterpolation {
|
632
|
-
color: #671EBB;
|
633
|
-
}
|
634
|
-
pre.lazy .InvalidIllegal {
|
635
|
-
background-color: #9D1E15;
|
636
|
-
color: #F8F8F8;
|
637
|
-
}
|
638
|
-
pre.lazy .OcamlVariant {
|
639
|
-
color: #7F90AA;
|
640
|
-
}
|
641
|
-
pre.lazy .MetaTag {
|
642
|
-
color: #3A4A64;
|
643
|
-
}
|
644
|
-
pre.lazy .OcamlPrefixFPOperator {
|
645
|
-
text-decoration: underline;
|
646
|
-
}
|
647
|
-
pre.lazy .OcamlPrefixOperator {
|
648
|
-
color: #3B5BB5;
|
649
|
-
}
|
650
|
-
pre.lazy .String {
|
651
|
-
color: #409B1C;
|
652
|
-
}
|
653
|
-
pre.lazy .Keyword {
|
654
|
-
color: #FF7800;
|
655
|
-
}
|
656
|
-
pre.lazy {
|
657
|
-
background-color: #FFFFFF;
|
658
|
-
color: #000000;
|
659
|
-
}
|
660
|
-
pre.lazy .InvalidDeprecated {
|
661
|
-
color: #990000;
|
662
|
-
font-style: italic;
|
663
|
-
}
|
664
|
-
pre.lazy .Variable {
|
665
|
-
}
|
666
|
-
pre.lazy .Entity {
|
667
|
-
color: #3B5BB5;
|
668
|
-
}
|
669
|
-
pre.lazy .Comment {
|
670
|
-
color: #8C868F;
|
671
|
-
}
|
672
|
-
|
673
|
-
|
674
|
-
pre.mac_classic .EmbeddedSource {
|
675
|
-
background-color: #0C0C0C;
|
676
|
-
}
|
677
|
-
pre.mac_classic .LibraryObject {
|
678
|
-
font-weight: bold;
|
679
|
-
color: #6D79DE;
|
680
|
-
}
|
681
|
-
pre.mac_classic .Section {
|
682
|
-
font-style: italic;
|
683
|
-
}
|
684
|
-
pre.mac_classic .FunctionArgumentAndResultTypes {
|
685
|
-
color: #70727E;
|
686
|
-
}
|
687
|
-
pre.mac_classic .TypeName {
|
688
|
-
text-decoration: underline;
|
689
|
-
}
|
690
|
-
pre.mac_classic .Number {
|
691
|
-
color: #0000CD;
|
692
|
-
}
|
693
|
-
pre.mac_classic {
|
694
|
-
background-color: #FFFFFF;
|
695
|
-
color: #000000;
|
696
|
-
}
|
697
|
-
pre.mac_classic .MarkupList {
|
698
|
-
color: #B90690;
|
699
|
-
}
|
700
|
-
pre.mac_classic .MarkupTagAttribute {
|
701
|
-
font-style: italic;
|
702
|
-
}
|
703
|
-
pre.mac_classic .LibraryVariable {
|
704
|
-
font-weight: bold;
|
705
|
-
color: #21439C;
|
706
|
-
}
|
707
|
-
pre.mac_classic .line-numbers {
|
708
|
-
background-color: #4D97FF;
|
709
|
-
color: #000000;
|
710
|
-
}
|
711
|
-
pre.mac_classic .FunctionParameter {
|
712
|
-
font-style: italic;
|
713
|
-
}
|
714
|
-
pre.mac_classic .MarkupTag {
|
715
|
-
color: #1C02FF;
|
716
|
-
}
|
717
|
-
pre.mac_classic .MarkupHeading {
|
718
|
-
font-weight: bold;
|
719
|
-
color: #0C07FF;
|
720
|
-
}
|
721
|
-
pre.mac_classic .JsOperator {
|
722
|
-
color: #687687;
|
723
|
-
}
|
724
|
-
pre.mac_classic .InheritedClassName {
|
725
|
-
font-style: italic;
|
726
|
-
}
|
727
|
-
pre.mac_classic .StringInterpolation {
|
728
|
-
color: #26B31A;
|
729
|
-
}
|
730
|
-
pre.mac_classic .MarkupQuote {
|
731
|
-
color: #000000;
|
732
|
-
font-style: italic;
|
733
|
-
}
|
734
|
-
pre.mac_classic .MarkupNameOfTag {
|
735
|
-
font-weight: bold;
|
736
|
-
}
|
737
|
-
pre.mac_classic .InvalidTrailingWhitespace {
|
738
|
-
background-color: #FFD0D0;
|
739
|
-
}
|
740
|
-
pre.mac_classic .LibraryConstant {
|
741
|
-
font-weight: bold;
|
742
|
-
color: #06960E;
|
743
|
-
}
|
744
|
-
pre.mac_classic .MarkupXmlDeclaration {
|
745
|
-
color: #68685B;
|
746
|
-
}
|
747
|
-
pre.mac_classic .EmbeddedEmbeddedSource {
|
748
|
-
background-color: #0E0E0E;
|
749
|
-
}
|
750
|
-
pre.mac_classic .PreprocessorDirective {
|
751
|
-
font-weight: bold;
|
752
|
-
color: #0C450D;
|
753
|
-
}
|
754
|
-
pre.mac_classic .BuiltInConstant {
|
755
|
-
font-weight: bold;
|
756
|
-
color: #585CF6;
|
757
|
-
}
|
758
|
-
pre.mac_classic .MarkupDtd {
|
759
|
-
font-style: italic;
|
760
|
-
}
|
761
|
-
pre.mac_classic .Invalid {
|
762
|
-
background-color: #990000;
|
763
|
-
color: #FFFFFF;
|
764
|
-
}
|
765
|
-
pre.mac_classic .LibraryFunction {
|
766
|
-
font-weight: bold;
|
767
|
-
color: #3C4C72;
|
768
|
-
}
|
769
|
-
pre.mac_classic .String {
|
770
|
-
color: #036A07;
|
771
|
-
}
|
772
|
-
pre.mac_classic .UserDefinedConstant {
|
773
|
-
font-weight: bold;
|
774
|
-
color: #C5060B;
|
775
|
-
}
|
776
|
-
pre.mac_classic .Keyword {
|
777
|
-
font-weight: bold;
|
778
|
-
color: #0000FF;
|
779
|
-
}
|
780
|
-
pre.mac_classic .MarkupDoctype {
|
781
|
-
color: #888888;
|
782
|
-
}
|
783
|
-
pre.mac_classic .FunctionName {
|
784
|
-
font-weight: bold;
|
785
|
-
color: #0000A2;
|
786
|
-
}
|
787
|
-
pre.mac_classic .PreprocessorLine {
|
788
|
-
color: #1A921C;
|
789
|
-
}
|
790
|
-
pre.mac_classic .Variable {
|
791
|
-
color: #318495;
|
792
|
-
}
|
793
|
-
pre.mac_classic .Comment {
|
794
|
-
color: #0066FF;
|
795
|
-
font-style: italic;
|
796
|
-
}
|
797
|
-
|
798
|
-
|
799
|
-
pre.slush_poppies .Directives {
|
800
|
-
font-weight: bold;
|
801
|
-
}
|
802
|
-
pre.slush_poppies .TypeName {
|
803
|
-
color: #800080;
|
804
|
-
}
|
805
|
-
pre.slush_poppies .InheritedClass {
|
806
|
-
}
|
807
|
-
pre.slush_poppies .OcamlInfixFPOperators {
|
808
|
-
text-decoration: underline;
|
809
|
-
}
|
810
|
-
pre.slush_poppies .Number {
|
811
|
-
color: #0080A0;
|
812
|
-
}
|
813
|
-
pre.slush_poppies .LibraryVariable {
|
814
|
-
}
|
815
|
-
pre.slush_poppies .Storage {
|
816
|
-
color: #008080;
|
817
|
-
}
|
818
|
-
pre.slush_poppies .line-numbers {
|
819
|
-
background-color: #B0B0FF;
|
820
|
-
color: #000000;
|
821
|
-
}
|
822
|
-
pre.slush_poppies .OcamlPrefixFPOperators {
|
823
|
-
text-decoration: underline;
|
824
|
-
}
|
825
|
-
pre.slush_poppies .OcamlFloatingPointConstants {
|
826
|
-
text-decoration: underline;
|
827
|
-
}
|
828
|
-
pre.slush_poppies .LineNumberDirectives {
|
829
|
-
}
|
830
|
-
pre.slush_poppies .TagName {
|
831
|
-
}
|
832
|
-
pre.slush_poppies .StorageTypes {
|
833
|
-
color: #A08000;
|
834
|
-
}
|
835
|
-
pre.slush_poppies .Operators {
|
836
|
-
color: #2060A0;
|
837
|
-
}
|
838
|
-
pre.slush_poppies .LibraryConstant {
|
839
|
-
}
|
840
|
-
pre.slush_poppies .VariantTypes {
|
841
|
-
color: #C08060;
|
842
|
-
}
|
843
|
-
pre.slush_poppies .FunctionArgument {
|
844
|
-
}
|
845
|
-
pre.slush_poppies .BuiltInConstant {
|
846
|
-
}
|
847
|
-
pre.slush_poppies .ClassTypeName {
|
848
|
-
color: #8000C0;
|
849
|
-
}
|
850
|
-
pre.slush_poppies .ModuleKeyword {
|
851
|
-
color: #0080FF;
|
852
|
-
}
|
853
|
-
pre.slush_poppies .Invalid {
|
854
|
-
}
|
855
|
-
pre.slush_poppies .LibraryClassType {
|
856
|
-
}
|
857
|
-
pre.slush_poppies .LibraryFunction {
|
858
|
-
}
|
859
|
-
pre.slush_poppies .TagAttribute {
|
860
|
-
}
|
861
|
-
pre.slush_poppies .Keyword {
|
862
|
-
color: #2060A0;
|
863
|
-
}
|
864
|
-
pre.slush_poppies .UserDefinedConstant {
|
865
|
-
}
|
866
|
-
pre.slush_poppies .CharacterConstants {
|
867
|
-
color: #800000;
|
868
|
-
}
|
869
|
-
pre.slush_poppies .String {
|
870
|
-
color: #C03030;
|
871
|
-
}
|
872
|
-
pre.slush_poppies {
|
873
|
-
background-color: #F1F1F1;
|
874
|
-
color: #000000;
|
875
|
-
}
|
876
|
-
pre.slush_poppies .FunctionName {
|
877
|
-
color: #800000;
|
878
|
-
}
|
879
|
-
pre.slush_poppies .Variable {
|
880
|
-
}
|
881
|
-
pre.slush_poppies .Comment {
|
882
|
-
color: #406040;
|
883
|
-
}
|
884
|
-
|
885
|
-
|
886
|
-
pre.sunburst .DiffInserted {
|
887
|
-
background-color: #253B22;
|
888
|
-
color: #F8F8F8;
|
889
|
-
}
|
890
|
-
pre.sunburst .DiffHeader {
|
891
|
-
background-color: #0E2231;
|
892
|
-
color: #F8F8F8;
|
893
|
-
font-style: italic;
|
894
|
-
}
|
895
|
-
pre.sunburst .CssPropertyValue {
|
896
|
-
color: #F9EE98;
|
897
|
-
}
|
898
|
-
pre.sunburst .CCCPreprocessorDirective {
|
899
|
-
color: #AFC4DB;
|
900
|
-
}
|
901
|
-
pre.sunburst .Constant {
|
902
|
-
color: #3387CC;
|
903
|
-
}
|
904
|
-
pre.sunburst .DiffChanged {
|
905
|
-
background-color: #4A410D;
|
906
|
-
color: #F8F8F8;
|
907
|
-
}
|
908
|
-
pre.sunburst .Support {
|
909
|
-
color: #9B859D;
|
910
|
-
}
|
911
|
-
pre.sunburst .MarkupList {
|
912
|
-
color: #E1D4B9;
|
913
|
-
}
|
914
|
-
pre.sunburst .CssConstructorArgument {
|
915
|
-
color: #8F9D6A;
|
916
|
-
}
|
917
|
-
pre.sunburst .Storage {
|
918
|
-
color: #99CF50;
|
919
|
-
}
|
920
|
-
pre.sunburst .line-numbers {
|
921
|
-
background-color: #DDF0FF;
|
922
|
-
color: #000000;
|
923
|
-
}
|
924
|
-
pre.sunburst .CssClass {
|
925
|
-
color: #9B703F;
|
926
|
-
}
|
927
|
-
pre.sunburst .StringConstant {
|
928
|
-
color: #DDF2A4;
|
929
|
-
}
|
930
|
-
pre.sunburst .MarkupSeparator {
|
931
|
-
background-color: #242424;
|
932
|
-
color: #60A633;
|
933
|
-
}
|
934
|
-
pre.sunburst .MarkupUnderline {
|
935
|
-
text-decoration: underline;
|
936
|
-
color: #E18964;
|
937
|
-
}
|
938
|
-
pre.sunburst .CssAtRule {
|
939
|
-
color: #8693A5;
|
940
|
-
}
|
941
|
-
pre.sunburst .MetaTagInline {
|
942
|
-
color: #E0C589;
|
943
|
-
}
|
944
|
-
pre.sunburst .JEntityNameType {
|
945
|
-
text-decoration: underline;
|
946
|
-
}
|
947
|
-
pre.sunburst .LogEntryError {
|
948
|
-
background-color: #751012;
|
949
|
-
}
|
950
|
-
pre.sunburst .MarkupHeading {
|
951
|
-
background-color: #632D04;
|
952
|
-
color: #FEDCC5;
|
953
|
-
}
|
954
|
-
pre.sunburst .CssTagName {
|
955
|
-
color: #CDA869;
|
956
|
-
}
|
957
|
-
pre.sunburst .SupportConstant {
|
958
|
-
color: #CF6A4C;
|
959
|
-
}
|
960
|
-
pre.sunburst .MarkupQuote {
|
961
|
-
background-color: #ECD091;
|
962
|
-
color: #E1D4B9;
|
963
|
-
font-style: italic;
|
964
|
-
}
|
965
|
-
pre.sunburst .DiffDeleted {
|
966
|
-
background-color: #420E09;
|
967
|
-
color: #F8F8F8;
|
968
|
-
}
|
969
|
-
pre.sunburst .CCCPreprocessorLine {
|
970
|
-
color: #8996A8;
|
971
|
-
}
|
972
|
-
pre.sunburst .StringRegexpSpecial {
|
973
|
-
color: #CF7D34;
|
974
|
-
}
|
975
|
-
pre.sunburst .EmbeddedSourceBright {
|
976
|
-
background-color: #ABADB4;
|
977
|
-
}
|
978
|
-
pre.sunburst .InvalidIllegal {
|
979
|
-
background-color: #150B15;
|
980
|
-
color: #FD5FF1;
|
981
|
-
}
|
982
|
-
pre.sunburst .MarkupRaw {
|
983
|
-
background-color: #ABADB4;
|
984
|
-
color: #578BB3;
|
985
|
-
}
|
986
|
-
pre.sunburst .SupportFunction {
|
987
|
-
color: #DAD085;
|
988
|
-
}
|
989
|
-
pre.sunburst .CssAdditionalConstants {
|
990
|
-
color: #DD7B3B;
|
991
|
-
}
|
992
|
-
pre.sunburst .MetaTagAll {
|
993
|
-
color: #89BDFF;
|
994
|
-
}
|
995
|
-
pre.sunburst .StringRegexp {
|
996
|
-
color: #E9C062;
|
997
|
-
}
|
998
|
-
pre.sunburst .StringEmbeddedSource {
|
999
|
-
color: #DAEFA3;
|
1000
|
-
}
|
1001
|
-
pre.sunburst .EntityInheritedClass {
|
1002
|
-
color: #9B5C2E;
|
1003
|
-
font-style: italic;
|
1004
|
-
}
|
1005
|
-
pre.sunburst .MarkupComment {
|
1006
|
-
color: #F67B37;
|
1007
|
-
font-style: italic;
|
1008
|
-
}
|
1009
|
-
pre.sunburst .MarkupBold {
|
1010
|
-
font-weight: bold;
|
1011
|
-
color: #E9C062;
|
1012
|
-
}
|
1013
|
-
pre.sunburst .CssId {
|
1014
|
-
color: #8B98AB;
|
1015
|
-
}
|
1016
|
-
pre.sunburst .CssPseudoClass {
|
1017
|
-
color: #8F9D6A;
|
1018
|
-
}
|
1019
|
-
pre.sunburst .JCast {
|
1020
|
-
color: #676767;
|
1021
|
-
font-style: italic;
|
1022
|
-
}
|
1023
|
-
pre.sunburst .StringVariable {
|
1024
|
-
color: #8A9A95;
|
1025
|
-
}
|
1026
|
-
pre.sunburst .String {
|
1027
|
-
color: #65B042;
|
1028
|
-
}
|
1029
|
-
pre.sunburst .Keyword {
|
1030
|
-
color: #E28964;
|
1031
|
-
}
|
1032
|
-
pre.sunburst {
|
1033
|
-
background-color: #000000;
|
1034
|
-
color: #F8F8F8;
|
1035
|
-
}
|
1036
|
-
pre.sunburst .LogEntry {
|
1037
|
-
background-color: #C7C7C7;
|
1038
|
-
}
|
1039
|
-
pre.sunburst .MarkupItalic {
|
1040
|
-
color: #E9C062;
|
1041
|
-
font-style: italic;
|
1042
|
-
}
|
1043
|
-
pre.sunburst .CssPropertyName {
|
1044
|
-
color: #C5AF75;
|
1045
|
-
}
|
1046
|
-
pre.sunburst .Namespaces {
|
1047
|
-
color: #E18964;
|
1048
|
-
}
|
1049
|
-
pre.sunburst .DoctypeXmlProcessing {
|
1050
|
-
color: #494949;
|
1051
|
-
}
|
1052
|
-
pre.sunburst .InvalidDeprecated {
|
1053
|
-
color: #FD5FF1;
|
1054
|
-
font-style: italic;
|
1055
|
-
}
|
1056
|
-
pre.sunburst .Variable {
|
1057
|
-
color: #3E87E3;
|
1058
|
-
}
|
1059
|
-
pre.sunburst .Entity {
|
1060
|
-
color: #89BDFF;
|
1061
|
-
}
|
1062
|
-
pre.sunburst .Comment {
|
1063
|
-
color: #AEAEAE;
|
1064
|
-
font-style: italic;
|
1065
|
-
}
|