prawn-layout 0.2.1 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +1 -1
- data/examples/example_helper.rb +5 -1
- data/examples/grid/bounding_boxes.rb +21 -0
- data/examples/grid/column_gutter_grid.rb +20 -0
- data/examples/grid/multi_boxes.rb +51 -0
- data/examples/grid/show_grid.rb +13 -0
- data/lib/prawn/layout.rb +1 -1
- data/lib/prawn/layout/grid.rb +36 -18
- data/lib/prawn/table.rb +20 -8
- data/lib/prawn/table/cell.rb +24 -15
- data/spec/spec_helper.rb +2 -1
- data/spec/table_spec.rb +32 -0
- data/vendor/prawn-core/COPYING +340 -0
- data/vendor/prawn-core/HACKING +46 -0
- data/vendor/prawn-core/LICENSE +56 -0
- data/vendor/prawn-core/README +142 -0
- data/vendor/prawn-core/Rakefile +75 -0
- data/vendor/prawn-core/bench/afm_text_bench.rb +18 -0
- data/vendor/prawn-core/bench/png_type_6.rb +15 -0
- data/vendor/prawn-core/bench/ttf_text_bench.rb +19 -0
- data/vendor/prawn-core/bugs/canvas_sets_y_to_0.rb +15 -0
- data/vendor/prawn-core/bugs/png_barcode_issue.rb +11 -0
- data/vendor/prawn-core/bugs/resolved/canvas_sets_y_to_0.rb +15 -0
- data/vendor/prawn-core/data/encodings/win_ansi.txt +29 -0
- data/vendor/prawn-core/data/fonts/Action Man.dfont +0 -0
- data/vendor/prawn-core/data/fonts/Activa.ttf +0 -0
- data/vendor/prawn-core/data/fonts/Chalkboard.ttf +0 -0
- data/vendor/prawn-core/data/fonts/Courier-Bold.afm +342 -0
- data/vendor/prawn-core/data/fonts/Courier-BoldOblique.afm +342 -0
- data/vendor/prawn-core/data/fonts/Courier-Oblique.afm +342 -0
- data/vendor/prawn-core/data/fonts/Courier.afm +342 -0
- data/vendor/prawn-core/data/fonts/DejaVuSans.ttf +0 -0
- data/vendor/prawn-core/data/fonts/Dustismo_Roman.ttf +0 -0
- data/vendor/prawn-core/data/fonts/Helvetica-Bold.afm +2827 -0
- data/vendor/prawn-core/data/fonts/Helvetica-BoldOblique.afm +2827 -0
- data/vendor/prawn-core/data/fonts/Helvetica-Oblique.afm +3051 -0
- data/vendor/prawn-core/data/fonts/Helvetica.afm +3051 -0
- data/vendor/prawn-core/data/fonts/MustRead.html +19 -0
- data/vendor/prawn-core/data/fonts/Symbol.afm +213 -0
- data/vendor/prawn-core/data/fonts/Times-Bold.afm +2588 -0
- data/vendor/prawn-core/data/fonts/Times-BoldItalic.afm +2384 -0
- data/vendor/prawn-core/data/fonts/Times-Italic.afm +2667 -0
- data/vendor/prawn-core/data/fonts/Times-Roman.afm +2419 -0
- data/vendor/prawn-core/data/fonts/ZapfDingbats.afm +225 -0
- data/vendor/prawn-core/data/fonts/comicsans.ttf +0 -0
- data/vendor/prawn-core/data/fonts/gkai00mp.ttf +0 -0
- data/vendor/prawn-core/data/images/16bit.alpha +0 -0
- data/vendor/prawn-core/data/images/16bit.dat +0 -0
- data/vendor/prawn-core/data/images/16bit.png +0 -0
- data/vendor/prawn-core/data/images/arrow.png +0 -0
- data/vendor/prawn-core/data/images/arrow2.png +0 -0
- data/vendor/prawn-core/data/images/barcode_issue.png +0 -0
- data/vendor/prawn-core/data/images/dice.alpha +0 -0
- data/vendor/prawn-core/data/images/dice.dat +0 -0
- data/vendor/prawn-core/data/images/dice.png +0 -0
- data/vendor/prawn-core/data/images/dice_interlaced.png +0 -0
- data/vendor/prawn-core/data/images/fractal.jpg +0 -0
- data/vendor/prawn-core/data/images/letterhead.jpg +0 -0
- data/vendor/prawn-core/data/images/page_white_text.alpha +0 -0
- data/vendor/prawn-core/data/images/page_white_text.dat +0 -0
- data/vendor/prawn-core/data/images/page_white_text.png +0 -0
- data/vendor/prawn-core/data/images/pigs.jpg +0 -0
- data/vendor/prawn-core/data/images/rails.dat +0 -0
- data/vendor/prawn-core/data/images/rails.png +0 -0
- data/vendor/prawn-core/data/images/ruport.png +0 -0
- data/vendor/prawn-core/data/images/ruport_data.dat +0 -0
- data/vendor/prawn-core/data/images/ruport_transparent.png +0 -0
- data/vendor/prawn-core/data/images/ruport_type0.png +0 -0
- data/vendor/prawn-core/data/images/stef.jpg +0 -0
- data/vendor/prawn-core/data/images/tru256.bmp +0 -0
- data/vendor/prawn-core/data/images/web-links.dat +1 -0
- data/vendor/prawn-core/data/images/web-links.png +0 -0
- data/vendor/prawn-core/data/shift_jis_text.txt +1 -0
- data/vendor/prawn-core/examples/bounding_box/bounding_boxes.rb +43 -0
- data/vendor/prawn-core/examples/bounding_box/indentation.rb +34 -0
- data/vendor/prawn-core/examples/bounding_box/russian_boxes.rb +36 -0
- data/vendor/prawn-core/examples/bounding_box/stretched_nesting.rb +67 -0
- data/vendor/prawn-core/examples/column_box/column_box_example.rb +43 -0
- data/vendor/prawn-core/examples/example_helper.rb +3 -0
- data/vendor/prawn-core/examples/general/background.rb +23 -0
- data/vendor/prawn-core/examples/general/canvas.rb +15 -0
- data/vendor/prawn-core/examples/general/margin.rb +36 -0
- data/vendor/prawn-core/examples/general/measurement_units.rb +51 -0
- data/vendor/prawn-core/examples/general/metadata-info.rb +16 -0
- data/vendor/prawn-core/examples/general/multi_page_layout.rb +18 -0
- data/vendor/prawn-core/examples/general/page_geometry.rb +31 -0
- data/vendor/prawn-core/examples/general/page_numbering.rb +15 -0
- data/vendor/prawn-core/examples/general/stamp.rb +45 -0
- data/vendor/prawn-core/examples/graphics/basic_images.rb +23 -0
- data/vendor/prawn-core/examples/graphics/cmyk.rb +12 -0
- data/vendor/prawn-core/examples/graphics/curves.rb +11 -0
- data/vendor/prawn-core/examples/graphics/hexagon.rb +13 -0
- data/vendor/prawn-core/examples/graphics/image_fit.rb +15 -0
- data/vendor/prawn-core/examples/graphics/image_flow.rb +37 -0
- data/vendor/prawn-core/examples/graphics/image_position.rb +17 -0
- data/vendor/prawn-core/examples/graphics/line.rb +32 -0
- data/vendor/prawn-core/examples/graphics/png_types.rb +22 -0
- data/vendor/prawn-core/examples/graphics/polygons.rb +16 -0
- data/vendor/prawn-core/examples/graphics/remote_images.rb +12 -0
- data/vendor/prawn-core/examples/graphics/ruport_style_helpers.rb +19 -0
- data/vendor/prawn-core/examples/graphics/stroke_bounds.rb +20 -0
- data/vendor/prawn-core/examples/graphics/stroke_cap_and_join.rb +45 -0
- data/vendor/prawn-core/examples/graphics/stroke_dash.rb +42 -0
- data/vendor/prawn-core/examples/graphics/transparency.rb +26 -0
- data/vendor/prawn-core/examples/m17n/chinese_text_wrapping.rb +19 -0
- data/vendor/prawn-core/examples/m17n/euro.rb +15 -0
- data/vendor/prawn-core/examples/m17n/sjis.rb +28 -0
- data/vendor/prawn-core/examples/m17n/utf8.rb +13 -0
- data/vendor/prawn-core/examples/m17n/win_ansi_charset.rb +54 -0
- data/vendor/prawn-core/examples/text/alignment.rb +18 -0
- data/vendor/prawn-core/examples/text/dfont.rb +48 -0
- data/vendor/prawn-core/examples/text/family_based_styling.rb +24 -0
- data/vendor/prawn-core/examples/text/font_calculations.rb +91 -0
- data/vendor/prawn-core/examples/text/font_size.rb +33 -0
- data/vendor/prawn-core/examples/text/kerning.rb +30 -0
- data/vendor/prawn-core/examples/text/simple_text.rb +17 -0
- data/vendor/prawn-core/examples/text/simple_text_ttf.rb +17 -0
- data/vendor/prawn-core/examples/text/span.rb +29 -0
- data/vendor/prawn-core/examples/text/text_box.rb +25 -0
- data/vendor/prawn-core/examples/text/text_box_returning_excess.rb +51 -0
- data/vendor/prawn-core/examples/text/text_flow.rb +67 -0
- data/vendor/prawn-core/lib/prawn/byte_string.rb +7 -0
- data/vendor/prawn-core/lib/prawn/compatibility.rb +38 -0
- data/vendor/prawn-core/lib/prawn/core.rb +85 -0
- data/vendor/prawn-core/lib/prawn/document.rb +534 -0
- data/vendor/prawn-core/lib/prawn/document/annotations.rb +65 -0
- data/vendor/prawn-core/lib/prawn/document/bounding_box.rb +390 -0
- data/vendor/prawn-core/lib/prawn/document/column_box.rb +102 -0
- data/vendor/prawn-core/lib/prawn/document/destinations.rb +92 -0
- data/vendor/prawn-core/lib/prawn/document/internals.rb +180 -0
- data/vendor/prawn-core/lib/prawn/document/page_geometry.rb +153 -0
- data/vendor/prawn-core/lib/prawn/document/snapshot.rb +71 -0
- data/vendor/prawn-core/lib/prawn/document/span.rb +55 -0
- data/vendor/prawn-core/lib/prawn/document/text.rb +184 -0
- data/vendor/prawn-core/lib/prawn/document/text/box.rb +90 -0
- data/vendor/prawn-core/lib/prawn/document/text/wrapping.rb +62 -0
- data/vendor/prawn-core/lib/prawn/encoding.rb +121 -0
- data/vendor/prawn-core/lib/prawn/errors.rb +61 -0
- data/vendor/prawn-core/lib/prawn/font.rb +297 -0
- data/vendor/prawn-core/lib/prawn/font/afm.rb +202 -0
- data/vendor/prawn-core/lib/prawn/font/dfont.rb +34 -0
- data/vendor/prawn-core/lib/prawn/font/ttf.rb +329 -0
- data/vendor/prawn-core/lib/prawn/graphics.rb +264 -0
- data/vendor/prawn-core/lib/prawn/graphics/cap_style.rb +35 -0
- data/vendor/prawn-core/lib/prawn/graphics/color.rb +141 -0
- data/vendor/prawn-core/lib/prawn/graphics/dash.rb +69 -0
- data/vendor/prawn-core/lib/prawn/graphics/join_style.rb +35 -0
- data/vendor/prawn-core/lib/prawn/graphics/transparency.rb +56 -0
- data/vendor/prawn-core/lib/prawn/images.rb +339 -0
- data/vendor/prawn-core/lib/prawn/images/jpg.rb +46 -0
- data/vendor/prawn-core/lib/prawn/images/png.rb +219 -0
- data/vendor/prawn-core/lib/prawn/literal_string.rb +14 -0
- data/vendor/prawn-core/lib/prawn/measurement_extensions.rb +46 -0
- data/vendor/prawn-core/lib/prawn/measurements.rb +71 -0
- data/vendor/prawn-core/lib/prawn/name_tree.rb +166 -0
- data/vendor/prawn-core/lib/prawn/object_store.rb +63 -0
- data/vendor/prawn-core/lib/prawn/pdf_object.rb +81 -0
- data/vendor/prawn-core/lib/prawn/reference.rb +72 -0
- data/vendor/prawn-core/lib/prawn/stamp.rb +87 -0
- data/vendor/prawn-core/meta/Rakefile +62 -0
- data/vendor/prawn-core/meta/lib/prawn.rb +2 -0
- data/vendor/prawn-core/reference_pdfs/alignment.pdf +229 -0
- data/vendor/prawn-core/reference_pdfs/background.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/basic_images.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/bounding_boxes.pdf +128 -0
- data/vendor/prawn-core/reference_pdfs/canvas.pdf +78 -0
- data/vendor/prawn-core/reference_pdfs/chinese_flow.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/cmyk.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/column_box.pdf +3671 -0
- data/vendor/prawn-core/reference_pdfs/curves.pdf +62 -0
- data/vendor/prawn-core/reference_pdfs/dfont.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/euro.pdf +75 -0
- data/vendor/prawn-core/reference_pdfs/family_style.pdf +286 -0
- data/vendor/prawn-core/reference_pdfs/flow.pdf +964 -0
- data/vendor/prawn-core/reference_pdfs/font_calculations.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/font_size.pdf +142 -0
- data/vendor/prawn-core/reference_pdfs/hexagon.pdf +61 -0
- data/vendor/prawn-core/reference_pdfs/image-flow.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/image_fit.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/image_position.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/indentation.pdf +124 -0
- data/vendor/prawn-core/reference_pdfs/kerning.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/landscape_a4.pdf +52 -0
- data/vendor/prawn-core/reference_pdfs/landscape_legal.pdf +52 -0
- data/vendor/prawn-core/reference_pdfs/landscape_letter.pdf +52 -0
- data/vendor/prawn-core/reference_pdfs/lines.pdf +116 -0
- data/vendor/prawn-core/reference_pdfs/margin.pdf +3850 -0
- data/vendor/prawn-core/reference_pdfs/measurement_units.pdf +4667 -0
- data/vendor/prawn-core/reference_pdfs/metadata-info.pdf +88 -0
- data/vendor/prawn-core/reference_pdfs/multi-layout.pdf +209 -0
- data/vendor/prawn-core/reference_pdfs/page_with_numbering.pdf +156 -0
- data/vendor/prawn-core/reference_pdfs/png_types.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/portrait_a4.pdf +52 -0
- data/vendor/prawn-core/reference_pdfs/portrait_legal.pdf +52 -0
- data/vendor/prawn-core/reference_pdfs/portrait_letter.pdf +52 -0
- data/vendor/prawn-core/reference_pdfs/pretty_polygons.pdf +122 -0
- data/vendor/prawn-core/reference_pdfs/remote_images.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/ruport.pdf +101 -0
- data/vendor/prawn-core/reference_pdfs/russian_boxes.pdf +2780 -0
- data/vendor/prawn-core/reference_pdfs/simple_text.pdf +136 -0
- data/vendor/prawn-core/reference_pdfs/simple_text_ttf.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/sjis.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/span.pdf +1975 -0
- data/vendor/prawn-core/reference_pdfs/stamp.pdf +696 -0
- data/vendor/prawn-core/reference_pdfs/stretched_nesting.pdf +200 -0
- data/vendor/prawn-core/reference_pdfs/stroke_bounds.pdf +135 -0
- data/vendor/prawn-core/reference_pdfs/stroke_cap_and_join.pdf +80 -0
- data/vendor/prawn-core/reference_pdfs/stroke_dash.pdf +457 -0
- data/vendor/prawn-core/reference_pdfs/text_box.pdf +315 -0
- data/vendor/prawn-core/reference_pdfs/text_box_returning_excess.pdf +271 -0
- data/vendor/prawn-core/reference_pdfs/transparency.pdf +347 -0
- data/vendor/prawn-core/reference_pdfs/utf8.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/win-ansi.pdf +6172 -0
- data/vendor/prawn-core/spec/annotations_spec.rb +90 -0
- data/vendor/prawn-core/spec/bounding_box_spec.rb +185 -0
- data/vendor/prawn-core/spec/destinations_spec.rb +15 -0
- data/vendor/prawn-core/spec/document_spec.rb +231 -0
- data/vendor/prawn-core/spec/font_spec.rb +273 -0
- data/vendor/prawn-core/spec/graphics_spec.rb +209 -0
- data/vendor/prawn-core/spec/images_spec.rb +79 -0
- data/vendor/prawn-core/spec/jpg_spec.rb +25 -0
- data/vendor/prawn-core/spec/measurement_units_spec.rb +23 -0
- data/vendor/prawn-core/spec/name_tree_spec.rb +112 -0
- data/vendor/prawn-core/spec/object_store_spec.rb +42 -0
- data/vendor/prawn-core/spec/pdf_object_spec.rb +122 -0
- data/vendor/prawn-core/spec/png_spec.rb +236 -0
- data/vendor/prawn-core/spec/reference_spec.rb +82 -0
- data/vendor/prawn-core/spec/snapshot_spec.rb +115 -0
- data/vendor/prawn-core/spec/span_spec.rb +45 -0
- data/vendor/prawn-core/spec/spec_helper.rb +20 -0
- data/vendor/prawn-core/spec/stamp_spec.rb +98 -0
- data/vendor/prawn-core/spec/stroke_styles_spec.rb +152 -0
- data/vendor/prawn-core/spec/text_box_spec.rb +109 -0
- data/vendor/prawn-core/spec/text_spec.rb +185 -0
- data/vendor/prawn-core/spec/transparency_spec.rb +61 -0
- data/vendor/prawn-core/vendor/pdf-inspector/README +18 -0
- data/vendor/prawn-core/vendor/pdf-inspector/lib/pdf/inspector.rb +26 -0
- data/vendor/prawn-core/vendor/pdf-inspector/lib/pdf/inspector/extgstate.rb +18 -0
- data/vendor/prawn-core/vendor/pdf-inspector/lib/pdf/inspector/graphics.rb +119 -0
- data/vendor/prawn-core/vendor/pdf-inspector/lib/pdf/inspector/page.rb +25 -0
- data/vendor/prawn-core/vendor/pdf-inspector/lib/pdf/inspector/text.rb +31 -0
- data/vendor/prawn-core/vendor/pdf-inspector/lib/pdf/inspector/xobject.rb +19 -0
- data/vendor/prawn-core/vendor/ttfunk/data/fonts/DejaVuSans.ttf +0 -0
- data/vendor/prawn-core/vendor/ttfunk/data/fonts/comicsans.ttf +0 -0
- data/vendor/prawn-core/vendor/ttfunk/example.rb +45 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk.rb +102 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/directory.rb +17 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/encoding/mac_roman.rb +88 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/encoding/windows_1252.rb +69 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/reader.rb +44 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/resource_file.rb +78 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/subset.rb +18 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/subset/base.rb +141 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/subset/mac_roman.rb +46 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/subset/unicode.rb +48 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/subset/unicode_8bit.rb +63 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/subset/windows_1252.rb +51 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/subset_collection.rb +72 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table.rb +46 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/cmap.rb +34 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/cmap/format00.rb +54 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/cmap/format04.rb +126 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/cmap/subtable.rb +79 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/glyf.rb +64 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/glyf/compound.rb +81 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/glyf/simple.rb +37 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/head.rb +44 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/hhea.rb +41 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/hmtx.rb +47 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/kern.rb +79 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/kern/format0.rb +62 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/loca.rb +43 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/maxp.rb +40 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/name.rb +119 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/os2.rb +78 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/post.rb +91 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/post/format10.rb +43 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/post/format20.rb +35 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/post/format25.rb +23 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/post/format30.rb +17 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/post/format40.rb +17 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/simple.rb +14 -0
- data/vendor/prawn-core/www/index.html +196 -0
- data/vendor/prawn-core/www/media/bounding_boxes.pdf +146 -0
- data/vendor/prawn-core/www/media/bounding_boxes.png +0 -0
- data/vendor/prawn-core/www/media/bounding_boxes_out.png +0 -0
- data/vendor/prawn-core/www/media/fancy_table.pdf +350 -0
- data/vendor/prawn-core/www/media/image.pdf +0 -0
- data/vendor/prawn-core/www/media/images.png +0 -0
- data/vendor/prawn-core/www/media/prawn_logo.png +0 -0
- data/vendor/prawn-core/www/media/tables.png +0 -0
- data/vendor/prawn-core/www/media/utf8.pdf +0 -0
- data/vendor/prawn-core/www/media/utf8.png +0 -0
- data/vendor/prawn-core/www/prawn-Chinese.html +113 -0
- data/vendor/prawn-core/www/prawn.css +86 -0
- data/vendor/prawn-core/www/twilight.css +266 -0
- metadata +291 -3
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
<html>
|
|
2
|
+
<head>
|
|
3
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
5
|
+
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
|
|
6
|
+
<link href="prawn.css" rel="stylesheet" type="text/css" />
|
|
7
|
+
</head>
|
|
8
|
+
<body>
|
|
9
|
+
|
|
10
|
+
<div id="contents">
|
|
11
|
+
<ul>
|
|
12
|
+
<li><a href="docs/">Docs</li>
|
|
13
|
+
<li><a href="http://prawn.lighthouseapp.com">Bugs</a></li>
|
|
14
|
+
<li><a href="http://groups.google.com/group/prawn-ruby">Community</a></li>
|
|
15
|
+
<li><a href="http://github.com/sandal/prawn">Source</a></li>
|
|
16
|
+
</ul>
|
|
17
|
+
|
|
18
|
+
<h1><i>Prawn: 小巧的Ruby PDF生成库</i></h1>
|
|
19
|
+
<span style="color:ffffff; font-size: 0.8em">
|
|
20
|
+
<b>从<u><a href="http://rubygems.org">RubyGems</a></u>安装 : <tt>gem install prawn</tt></b>
|
|
21
|
+
<br>
|
|
22
|
+
</span>
|
|
23
|
+
|
|
24
|
+
<div align="right">
|
|
25
|
+
<br><a href="/index.html">English</a>
|
|
26
|
+
</div>
|
|
27
|
+
|
|
28
|
+
<h2>轻而易举创建PDF打印文档</h2>
|
|
29
|
+
<img src="/media/prawn_logo.png" style="float: right;">
|
|
30
|
+
<p>
|
|
31
|
+
在包括Ruby在内的几乎所有编程语言中,将文档转换成PDF格式一直是一件令人头痛的事情。Prawn可以帮你大大减轻这种痛苦,并且仍然保持高效简洁。Prawn, 中文意为虾,也暗含了小巧迅速的意味。
|
|
32
|
+
</p>
|
|
33
|
+
<h2>方便地获取所需功能</h2>
|
|
34
|
+
|
|
35
|
+
<p>
|
|
36
|
+
Prawn是 <span style="color: #eeff44"><i><b>速度最快,功能最纯粹的基于Ruby的PDF生成类库。</i></b></span>, 在接下来的内容中,你会看到Prawn的一些具体代码, <span style="color: #eeff44"><b><i>点击代码本身可以看到代码所产生的PDF文档。</i></b></span>
|
|
37
|
+
</p>
|
|
38
|
+
|
|
39
|
+
<h3>-- 内置支持UTF-8</h3>
|
|
40
|
+
|
|
41
|
+
<p>
|
|
42
|
+
在Prawn中生成国际化文字和生成UTF-8字符串一样简单,当然前提条件是你有国际化文字的标准字体文件(Unicode aware TTF font)在你的系统中。使用Ruby 1.9的人,所有可以被转化成UTF-8的代码都可以直接使用。
|
|
43
|
+
</p>
|
|
44
|
+
|
|
45
|
+
<a href="media/utf8.pdf"><img src="media/utf8.png" style="padding-left: 1.5em;"/></a>
|
|
46
|
+
|
|
47
|
+
<h3>-- 轻松的图像嵌入</h3>
|
|
48
|
+
|
|
49
|
+
<p>
|
|
50
|
+
在Prawn中插入JPEG和PNG格式的图像相当方便。Prawn支持Alpha透明,定位和缩放都可以很容易实现,从而使在文档中插入图像轻而易举。
|
|
51
|
+
</p>
|
|
52
|
+
|
|
53
|
+
<a href="media/image.pdf"><img src="media/images.png" style="padding-left: 1.5em;"/></a>
|
|
54
|
+
|
|
55
|
+
<h3>-- 灵活的表格绘制</h3>
|
|
56
|
+
|
|
57
|
+
<p>
|
|
58
|
+
Prawn内置支持以表格的形式呈现文字,从而实现基本的报表功能。将用户从编写低端画图代码中解脱出来,而能够真正将精力用在编辑文档的内容上。。
|
|
59
|
+
</p>
|
|
60
|
+
|
|
61
|
+
<a href="media/fancy_table.pdf"><img src="media/tables.png" style="padding-left: 1.5em;"/></a>
|
|
62
|
+
|
|
63
|
+
<h3>-- 简化的定位系统</h3>
|
|
64
|
+
|
|
65
|
+
<p>
|
|
66
|
+
写过低端绘图软件的人一定记得处理好各种坐标系不是一件容易的事情。Prawn将这个过程大大简化。你可以将文档的任何一个部分界成一个独特的区域(bounding box),并拥有这个区域独立的坐标系。你可以在文档中随意移动这个区域的位置,但是这个区域内部组分的相对位置不会改变,从而保持了代码的简洁。在这样的特定区域内,文字也可以自动分行,所以在海报上分栏书写变得非常容易。
|
|
67
|
+
</p>
|
|
68
|
+
|
|
69
|
+
<a href="media/bounding_boxes.pdf"><img src="media/bounding_boxes.png"/></a>
|
|
70
|
+
|
|
71
|
+
<h3>-- 更多功能即将实现</h3>
|
|
72
|
+
|
|
73
|
+
<span style="color: #eeff44"><b><i>Prawn现在只处于开发的初级阶段,</i></b></span> 新的功能每天都会出现。在不久的将来我们会将它整合到现有的 <a href="http://rubyreports.org">Ruby报表软件系统(Ruport)。</a> 如果你希望知道最新的功能,只需点击 <a href="http://github.com/sandal/prawn/tree/master/examples">例子和代码,</a> 它包含上面显示的各种代码和更多其它有关的内容。
|
|
74
|
+
|
|
75
|
+
<h2>来自Ruby社区的支持</h2>
|
|
76
|
+
|
|
77
|
+
<p>Prawn的开发很大一部分是基于社区对Gregory Brown的 <a href="http://rubymendicant.wikidot.com">”Ruby之乞“</a> 计划的捐赠。在人们的支持下,此计划一经产生就迅速成长了起来,并成了现实。</p>
|
|
78
|
+
|
|
79
|
+
<p>自从2008年四月Prawn开始之始,包括在代码的表达,错误的监察,以及功能的制定等各个方面都有Ruby爱好者们的积极地参与。你们可以从 <a href="http://github.com/sandal/prawn/network">Github
|
|
80
|
+
network graph</a>上找到他们的足迹。在为Prawn提供了插件的所有人中,特别感谢 <b>James Healy</b> 和 <b>Michael Daines</b> 为他们对Prawn的不可取代的贡献。</p>
|
|
81
|
+
|
|
82
|
+
<p>如果你希望能够在Rails的程序中用到Prawn,你可以试试使用另一个社区产品,thorny_sun的 <a href="http://cracklabs.com/prawnto">Prawnto</a> Rails的插件。虽然这个并不是Prawn的正式部件,我们会尽力使这个插件保持发挥作用。</p>
|
|
83
|
+
|
|
84
|
+
<p><span style="color: #eeff44"><b><i>请加入我们开发Prawn的队伍,使它真正成为符合客户选择的生成PDF的Ruby类库。</i></b></span> 你可以加入我们的 <a href="http://groups.google.com/group/prawn-ruby">邮件组</a> 或者加入我们在irc.freenode.net上 <tt>#prawn</tt> 频道的聊天组。需要做的事情还很多,你的帮助会使我们离目标更近一步!</p>
|
|
85
|
+
|
|
86
|
+
<h2>快来一试!</h2>
|
|
87
|
+
<p>从RubyGems安装: <tt>gem install prawn</tt> 从github下载: 地址为: <tt>git://github.com/sandal/prawn.git</tt></p>
|
|
88
|
+
|
|
89
|
+
</div>
|
|
90
|
+
|
|
91
|
+
<div align="center">
|
|
92
|
+
<small>
|
|
93
|
+
<p>
|
|
94
|
+
Prawn is Free Software under the License of Ruby, developed by <a href="http://majesticseacreature.com">Gregory Brown</a> and the Ruby community.<br/>
|
|
95
|
+
The Prawn logo was created by <a href="">maso</a> and is distributed under
|
|
96
|
+
the <a href="http://creativecommons.org/licenses/by-sa/3.0/">CC Attribution-Share Alike</a> license.
|
|
97
|
+
</p>
|
|
98
|
+
</small>
|
|
99
|
+
</div>
|
|
100
|
+
|
|
101
|
+
<script type="text/javascript">
|
|
102
|
+
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
|
|
103
|
+
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
|
|
104
|
+
</script>
|
|
105
|
+
<script type="text/javascript">
|
|
106
|
+
var pageTracker = _gat._getTracker("UA-2193841-4");
|
|
107
|
+
pageTracker._trackPageview();
|
|
108
|
+
</script>
|
|
109
|
+
</body>
|
|
110
|
+
</html>
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
* {
|
|
2
|
+
margin: 0;
|
|
3
|
+
padding: 0;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
body {
|
|
7
|
+
font: Verdana, "Lucida Grande", "Lucida Sans", sans-serif;
|
|
8
|
+
background-color: #000000;
|
|
9
|
+
color: #ffffff;
|
|
10
|
+
margin-bottom: 1em;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
h2, h3, h4, h5, h6, p, pre, blockquote, form, fieldset, table, ul {
|
|
14
|
+
margin: 1em 0;
|
|
15
|
+
}
|
|
16
|
+
h2 {
|
|
17
|
+
font-size: 1.75em;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
h2, h3 {
|
|
21
|
+
color: #00bb77;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
h1 {
|
|
25
|
+
color: #bb5566;
|
|
26
|
+
font-size: 1.1em;
|
|
27
|
+
margin-top: 0.5em;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
a {
|
|
31
|
+
color: #ffffff;
|
|
32
|
+
text-decoration: none;
|
|
33
|
+
outline: none;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
a:visited {
|
|
37
|
+
color: #ffffff;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
a:hover, a:active {
|
|
41
|
+
color: #2299ff;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
a img {
|
|
45
|
+
border:none;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
#contents {
|
|
49
|
+
background-color: #101010;
|
|
50
|
+
width: 740px;
|
|
51
|
+
margin: 0 auto;
|
|
52
|
+
border: 1px solid #fff;
|
|
53
|
+
margin-top: 1em;
|
|
54
|
+
padding: 1em 1em 1em 3em;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
#sidebar {
|
|
58
|
+
width: 180px;
|
|
59
|
+
float: right;
|
|
60
|
+
padding: 2em 2em 2em 0;
|
|
61
|
+
font-size: 1.2em;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
#screenshots {
|
|
66
|
+
margin-top: 2em;
|
|
67
|
+
float: right;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
ul {
|
|
71
|
+
text-align: center;
|
|
72
|
+
float: right;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
li {
|
|
76
|
+
display: inline;
|
|
77
|
+
border-top: 1px solid #fff;
|
|
78
|
+
border-right: 1px solid #fff;
|
|
79
|
+
border-bottom: 1px solid #666;
|
|
80
|
+
border-left: 1px solid #666;
|
|
81
|
+
margin-right: 5px;
|
|
82
|
+
padding-left: 10px;
|
|
83
|
+
padding-right: 10px;
|
|
84
|
+
color: #fff;
|
|
85
|
+
font-weight: bold;
|
|
86
|
+
}
|
|
@@ -0,0 +1,266 @@
|
|
|
1
|
+
/* I stole this from pastie.org.
|
|
2
|
+
But I doubt they will care since they stole it from TextMate */
|
|
3
|
+
|
|
4
|
+
/* Stylesheet generated from TextMate theme
|
|
5
|
+
*
|
|
6
|
+
* Twilight
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
/* Mostly to improve view within the TextMate HTML viewer */
|
|
12
|
+
body {
|
|
13
|
+
margin: 0;
|
|
14
|
+
padding: 0;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
pre.textmate-source {
|
|
18
|
+
padding: 0;
|
|
19
|
+
line-height: 1.3em;
|
|
20
|
+
word-wrap: break-word;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
pre.textmate-source {
|
|
24
|
+
color: #F8F8F8;
|
|
25
|
+
background-color: #101010;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
#content
|
|
29
|
+
{
|
|
30
|
+
background-color: #101010;
|
|
31
|
+
border-color:#ddd;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
#content h2 { color:#eee; }
|
|
35
|
+
#content hr { color:#333; }
|
|
36
|
+
#content hr { height:0px; border:0; border-top:1px solid #333; }
|
|
37
|
+
|
|
38
|
+
pre.textmate-source .linenum {
|
|
39
|
+
width: 75px;
|
|
40
|
+
padding: 0.1em 1em 0.2em 0;
|
|
41
|
+
color: #888;
|
|
42
|
+
background-color: #eee;
|
|
43
|
+
}
|
|
44
|
+
pre.textmate-source span {
|
|
45
|
+
padding-top: 0.2em;
|
|
46
|
+
padding-bottom: 0.1em;
|
|
47
|
+
}
|
|
48
|
+
pre.textmate-source ::selection {
|
|
49
|
+
background-color: rgba(221, 240, 255, 0.20);
|
|
50
|
+
}
|
|
51
|
+
/* Comment */
|
|
52
|
+
pre.textmate-source .comment {
|
|
53
|
+
color: #5F5A60;
|
|
54
|
+
font-style: italic;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/* Constant */
|
|
58
|
+
pre.textmate-source .constant {
|
|
59
|
+
color: #CF6A4C;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/* Entity */
|
|
63
|
+
pre.textmate-source .entity {
|
|
64
|
+
color: #9B703F;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
/* Keyword */
|
|
68
|
+
pre.textmate-source .keyword {
|
|
69
|
+
color: #CDA869;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
/* Storage */
|
|
73
|
+
pre.textmate-source .storage {
|
|
74
|
+
color: #F9EE98;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/* String */
|
|
78
|
+
pre.textmate-source .string {
|
|
79
|
+
color: #8F9D6A;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
/* Support */
|
|
83
|
+
pre.textmate-source .support {
|
|
84
|
+
color: #9B859D;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
/* Variable */
|
|
88
|
+
pre.textmate-source .variable {
|
|
89
|
+
color: #7587A6;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/* Invalid – Deprecated */
|
|
93
|
+
pre.textmate-source .invalid_deprecated {
|
|
94
|
+
color: #D2A8A1;
|
|
95
|
+
font-style: italic;
|
|
96
|
+
text-decoration: underline;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
/* Invalid – Illegal */
|
|
100
|
+
pre.textmate-source .invalid_illegal {
|
|
101
|
+
color: #F8F8F8;
|
|
102
|
+
background-color: rgba(86, 45, 86, 0.75);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
/* ♦ Embedded Source */
|
|
106
|
+
pre.textmate-source .text .source {
|
|
107
|
+
background-color: rgba(176, 179, 186, 0.08);
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
/* ♦ Embedded Source (Bright) */
|
|
111
|
+
pre.textmate-source .text_html_ruby .source {
|
|
112
|
+
background-color: rgba(177, 179, 186, 0.13);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
/* ♦ Entity inherited-class */
|
|
116
|
+
pre.textmate-source .entity_other_inherited-class {
|
|
117
|
+
color: #9B5C2E;
|
|
118
|
+
font-style: italic;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
/* ♦ String embedded-source */
|
|
122
|
+
pre.textmate-source .string_quoted .source {
|
|
123
|
+
color: #DAEFA3;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
/* ♦ String constant */
|
|
127
|
+
pre.textmate-source .string .constant {
|
|
128
|
+
color: #DDF2A4;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
/* ♦ String.regexp */
|
|
132
|
+
pre.textmate-source .string_regexp {
|
|
133
|
+
color: #E9C062;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
/* ♦ String.regexp.«special» */
|
|
137
|
+
pre.textmate-source .string_regexp .constant_character_escaped, pre.textmate-source .string_regexp .source_ruby_embedded, pre.textmate-source .string_regexp .string_regexp_arbitrary-repitition {
|
|
138
|
+
color: #CF7D34;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
/* ♦ String variable */
|
|
142
|
+
pre.textmate-source .string .variable {
|
|
143
|
+
color: #8A9A95;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
/* ♦ Support.function */
|
|
147
|
+
pre.textmate-source .support_function {
|
|
148
|
+
color: #DAD085;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
/* ♦ Support.constant */
|
|
152
|
+
pre.textmate-source .support_constant {
|
|
153
|
+
color: #CF6A4C;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
/* c C/C++ Preprocessor Line */
|
|
157
|
+
pre.textmate-source .other_preprocessor_c {
|
|
158
|
+
color: #8996A8;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
/* c C/C++ Preprocessor Directive */
|
|
162
|
+
pre.textmate-source .other_preprocessor_c .entity {
|
|
163
|
+
color: #AFC4DB;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
/* ✘ Doctype/XML Processing */
|
|
167
|
+
pre.textmate-source .meta_tag_sgml_doctype, pre.textmate-source .meta_tag_sgml_doctype .entity, pre.textmate-source .meta_tag_sgml_doctype .string, pre.textmate-source .meta_tag_preprocessor_xml, pre.textmate-source .meta_tag_preprocessor_xml .entity, pre.textmate-source .meta_tag_preprocessor_xml .string {
|
|
168
|
+
color: #494949;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
/* ✘ Meta.tag.«all» */
|
|
172
|
+
pre.textmate-source .declaration_tag, pre.textmate-source .declaration_tag .entity, pre.textmate-source .meta_tag, pre.textmate-source .meta_tag .entity {
|
|
173
|
+
color: #AC885B;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
/* ✘ Meta.tag.inline */
|
|
177
|
+
pre.textmate-source .declaration_tag_inline, pre.textmate-source .declaration_tag_inline .entity, pre.textmate-source .source .entity_name_tag, pre.textmate-source .source .entity_other_attribute-name, pre.textmate-source .meta_tag_inline, pre.textmate-source .meta_tag_inline .entity {
|
|
178
|
+
color: #E0C589;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
/* § css tag-name */
|
|
182
|
+
pre.textmate-source .meta_selector_css .entity_name_tag {
|
|
183
|
+
color: #CDA869;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
/* § css:pseudo-class */
|
|
187
|
+
pre.textmate-source .meta_selector_css .entity_other_attribute-name_tag_pseudo-class {
|
|
188
|
+
color: #8F9D6A;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
/* § css#id */
|
|
192
|
+
pre.textmate-source .meta_selector_css .entity_other_attribute-name_id {
|
|
193
|
+
color: #8B98AB;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
/* § css.class */
|
|
197
|
+
pre.textmate-source .meta_selector_css .entity_other_attribute-name_class {
|
|
198
|
+
color: #9B703F;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
/* § css property-name: */
|
|
202
|
+
pre.textmate-source .support_type_property-name_css {
|
|
203
|
+
color: #C5AF75;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
/* § css property-value; */
|
|
207
|
+
pre.textmate-source .meta_property-group .support_constant_property-value_css, pre.textmate-source .meta_property-value .support_constant_property-value_css {
|
|
208
|
+
color: #F9EE98;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
/* § css @at-rule */
|
|
212
|
+
pre.textmate-source .meta_preprocessor_at-rule .keyword_control_at-rule {
|
|
213
|
+
color: #8693A5;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
/* § css additional-constants */
|
|
217
|
+
pre.textmate-source .meta_property-value .support_constant_named-color_css, pre.textmate-source .meta_property-value .constant {
|
|
218
|
+
color: #CA7840;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
/* § css constructor.argument */
|
|
222
|
+
pre.textmate-source .meta_constructor_argument_css {
|
|
223
|
+
color: #8F9D6A;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
/* ⎇ diff.header */
|
|
227
|
+
pre.textmate-source .meta_diff, pre.textmate-source .meta_diff_header {
|
|
228
|
+
color: #F8F8F8;
|
|
229
|
+
font-style: italic;
|
|
230
|
+
background-color: #0E2231;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
/* ⎇ diff.deleted */
|
|
234
|
+
pre.textmate-source .markup_deleted {
|
|
235
|
+
color: #F8F8F8;
|
|
236
|
+
background-color: #420E09;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
/* ⎇ diff.changed */
|
|
240
|
+
pre.textmate-source .markup_changed {
|
|
241
|
+
color: #F8F8F8;
|
|
242
|
+
background-color: #4A410D;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
/* ⎇ diff.inserted */
|
|
246
|
+
pre.textmate-source .markup_inserted {
|
|
247
|
+
color: #F8F8F8;
|
|
248
|
+
background-color: #253B22;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
/* Markup: List */
|
|
252
|
+
pre.textmate-source .markup_list {
|
|
253
|
+
color: #F9EE98;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
/* Markup: Heading */
|
|
257
|
+
pre.textmate-source .markup_heading {
|
|
258
|
+
color: #CF6A4C;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
/* Customizations */
|
|
262
|
+
pre.textmate-source {
|
|
263
|
+
font-family: 'Monaco','Monospace','Courier New','Courier',monospace;
|
|
264
|
+
margin-left: 2em;
|
|
265
|
+
line-height: 1.2em;
|
|
266
|
+
}
|