[DRE-commits] [ruby-kramdown] branch master updated (ee19bfa -> bea6ca6)

Youhei SASAKI uwabami-guest at moszumanska.debian.org
Sun Mar 23 13:44:36 UTC 2014


This is an automated email from the git hooks/post-receive script.

uwabami-guest pushed a change to branch master
in repository ruby-kramdown.

      from  ee19bfa   Update debian/changelog
      adds  5bb7daa   Imported Upstream version 1.2.0
      adds  6069d15   Imported Upstream version 1.3.1
       new  501fc01   Merge tag 'upstream/1.3.1'
      adds  9e39d74   Imported Upstream version 1.3.3
       new  95146f6   Merge tag 'upstream/1.3.3'
       new  66888c6   Bump Standard Version: 3.9.5, Compat: 9
       new  006b113   Update Build-Depends, Depends
       new  bea6ca6   Update debian/changelog

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CONTRIBUTERS                                       |   7 +-
 README.md                                          |  16 +-
 Rakefile                                           |  53 +-
 VERSION                                            |   2 +-
 benchmark/generate_data.rb                         |   2 +-
 benchmark/graph-ruby-2.1.0p0-0.png                 | Bin 0 -> 9141 bytes
 benchmark/kramdown-ruby-2.1.0p0-0.dat              |   9 +
 checksums.yaml.gz                                  | Bin 270 -> 271 bytes
 data/kramdown/document.html                        |   2 +-
 debian/changelog                                   |   8 +
 debian/compat                                      |   2 +-
 debian/control                                     |   9 +-
 doc/default.template                               |   4 +-
 doc/index.page                                     |  20 +-
 doc/installation.page                              |   9 +-
 doc/news.feed                                      |   2 +-
 doc/quickref.page                                  |   8 +-
 doc/sidebar.template                               |  15 +-
 doc/syntax.page                                    |  15 +-
 doc/tests.page                                     |  90 +--
 lib/kramdown.rb                                    |   2 +-
 lib/kramdown/compatibility.rb                      |   2 +-
 lib/kramdown/converter.rb                          |   3 +-
 lib/kramdown/converter/base.rb                     |  70 ++-
 lib/kramdown/converter/html.rb                     |  13 +-
 lib/kramdown/converter/kramdown.rb                 |  20 +-
 lib/kramdown/converter/latex.rb                    |   8 +-
 lib/kramdown/converter/pdf.rb                      | 619 +++++++++++++++++++++
 lib/kramdown/converter/remove_html_tags.rb         |   2 +-
 lib/kramdown/converter/toc.rb                      |   2 +-
 lib/kramdown/document.rb                           |   4 +-
 lib/kramdown/element.rb                            |   6 +-
 lib/kramdown/error.rb                              |   2 +-
 lib/kramdown/options.rb                            |  54 +-
 lib/kramdown/parser.rb                             |   2 +-
 lib/kramdown/parser/base.rb                        |   8 +-
 lib/kramdown/parser/gfm.rb                         |  43 +-
 lib/kramdown/parser/html.rb                        |   6 +-
 lib/kramdown/parser/kramdown.rb                    |  43 +-
 lib/kramdown/parser/kramdown/abbreviation.rb       |   7 +-
 lib/kramdown/parser/kramdown/autolink.rb           |   5 +-
 lib/kramdown/parser/kramdown/blank_line.rb         |   2 +-
 lib/kramdown/parser/kramdown/block_boundary.rb     |   2 +-
 lib/kramdown/parser/kramdown/blockquote.rb         |   5 +-
 lib/kramdown/parser/kramdown/codeblock.rb          |   8 +-
 lib/kramdown/parser/kramdown/codespan.rb           |   5 +-
 lib/kramdown/parser/kramdown/emphasis.rb           |   5 +-
 lib/kramdown/parser/kramdown/eob.rb                |   2 +-
 lib/kramdown/parser/kramdown/escaped_chars.rb      |   2 +-
 lib/kramdown/parser/kramdown/extensions.rb         |  11 +-
 lib/kramdown/parser/kramdown/footnote.rb           |  12 +-
 lib/kramdown/parser/kramdown/header.rb             |   8 +-
 lib/kramdown/parser/kramdown/horizontal_rule.rb    |   5 +-
 lib/kramdown/parser/kramdown/html.rb               |   2 +-
 lib/kramdown/parser/kramdown/html_entity.rb        |   8 +-
 lib/kramdown/parser/kramdown/line_break.rb         |   2 +-
 lib/kramdown/parser/kramdown/link.rb               |   9 +-
 lib/kramdown/parser/kramdown/list.rb               |  16 +-
 lib/kramdown/parser/kramdown/math.rb               |  10 +-
 lib/kramdown/parser/kramdown/paragraph.rb          |   5 +-
 lib/kramdown/parser/kramdown/smart_quotes.rb       |   2 +-
 lib/kramdown/parser/kramdown/table.rb              |  10 +-
 lib/kramdown/parser/kramdown/typographic_symbol.rb |  17 +-
 lib/kramdown/parser/markdown.rb                    |   2 +-
 lib/kramdown/utils.rb                              |   5 +-
 lib/kramdown/utils/entities.rb                     |   2 +-
 lib/kramdown/utils/html.rb                         |   2 +-
 lib/kramdown/utils/ordered_hash.rb                 |   2 +-
 lib/kramdown/utils/string_scanner.rb               |  61 ++
 lib/kramdown/utils/unidecoder.rb                   |   2 +-
 lib/kramdown/version.rb                            |   4 +-
 man/man1/kramdown.1                                |  47 +-
 metadata.yml                                       |  48 +-
 test/run_tests.rb                                  |   2 +-
 test/test_files.rb                                 |   7 +-
 test/test_location.rb                              | 158 ++++++
 test/test_string_scanner_kramdown.rb               |  22 +
 .../block/04_header/with_auto_id_stripping.html    |   1 +
 .../block/04_header/with_auto_id_stripping.options |   1 +
 .../block/04_header/with_auto_id_stripping.text    |   1 +
 test/testcases/span/math/normal.html               |   3 +-
 test/testcases/span/math/normal.text               |   3 +-
 test/testcases_gfm/hard_line_breaks_off.html       |   2 +
 test/testcases_gfm/hard_line_breaks_off.options    |   1 +
 ..._line_breaks.text => hard_line_breaks_off.text} |   2 -
 85 files changed, 1417 insertions(+), 303 deletions(-)
 create mode 100644 benchmark/graph-ruby-2.1.0p0-0.png
 create mode 100644 benchmark/kramdown-ruby-2.1.0p0-0.dat
 create mode 100644 lib/kramdown/converter/pdf.rb
 create mode 100644 lib/kramdown/utils/string_scanner.rb
 create mode 100644 test/test_location.rb
 create mode 100644 test/test_string_scanner_kramdown.rb
 create mode 100644 test/testcases/block/04_header/with_auto_id_stripping.html
 create mode 100644 test/testcases/block/04_header/with_auto_id_stripping.options
 create mode 100644 test/testcases/block/04_header/with_auto_id_stripping.text
 create mode 100644 test/testcases_gfm/hard_line_breaks_off.html
 create mode 100644 test/testcases_gfm/hard_line_breaks_off.options
 copy test/testcases_gfm/{two_para_hard_line_breaks.text => hard_line_breaks_off.text} (74%)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-kramdown.git



More information about the Pkg-ruby-extras-commits mailing list