[DRE-commits] [ruby-kramdown] branch master updated (e729cf0 -> fa4e33f)

Youhei SASAKI uwabami-guest at moszumanska.debian.org
Wed Mar 16 13:24:34 UTC 2016


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  e729cf0   Run wrap-and-sort on packaging files
       new  f78e907   Imported Upstream version 1.9.0
       new  18ebf08   Refresh patch
       new  6d118d2   Create symlink for rdoc template, css, js, fonts
       new  410f435   Update debian/changelog
      adds  17f66b4   Imported Upstream version 1.9.0
      adds  33be87e   Imported Upstream version 1.10.0
       new  cd04fb7   Merge tag 'upstream/1.10.0'
       new  12ee38a   Refresh patch
       new  fa4e33f   Update debian/changelog

The 7 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                                       |  10 +-
 README.md                                          |   3 +
 Rakefile                                           |   2 +-
 VERSION                                            |   2 +-
 benchmark/testing.sh                               |   2 +-
 debian/changelog                                   |  26 +-
 debian/patches/skip_missing_math_engines.patch     |  52 +-
 debian/ruby-kramdown.links                         |   4 +-
 debian/rules                                       |   4 +-
 doc/index.page                                     |   4 +-
 doc/syntax.page                                    |  23 +-
 kramdown.gemspec                                   |  53 ++
 lib/kramdown/converter.rb                          |   1 +
 lib/kramdown/converter/base.rb                     |   6 +-
 lib/kramdown/converter/hash_ast.rb                 |  36 ++
 lib/kramdown/converter/html.rb                     |  11 +-
 lib/kramdown/converter/kramdown.rb                 |   2 +-
 lib/kramdown/converter/math_engine/mathjaxnode.rb  |  20 +-
 .../converter/syntax_highlighter/coderay.rb        |   3 +
 lib/kramdown/converter/syntax_highlighter/rouge.rb |  29 +-
 lib/kramdown/document.rb                           |   6 +-
 lib/kramdown/element.rb                            |   4 +
 lib/kramdown/options.rb                            |   3 +
 lib/kramdown/parser/gfm.rb                         |  35 +-
 lib/kramdown/parser/html.rb                        |   4 +-
 lib/kramdown/parser/kramdown/autolink.rb           |   2 +-
 lib/kramdown/parser/kramdown/codeblock.rb          |   9 +-
 lib/kramdown/parser/kramdown/extensions.rb         |   3 +-
 lib/kramdown/parser/kramdown/link.rb               |   2 +-
 lib/kramdown/utils/ordered_hash.rb                 |   5 +
 lib/kramdown/version.rb                            |   2 +-
 man/man1/kramdown.1                                |   3 +
 metadata.yml                                       | 694 ---------------------
 test/test_files.rb                                 |  31 +-
 test/test_location.rb                              |  10 +
 .../block/06_codeblock/rouge/disabled.html         |   2 +
 .../disabled.options}                              |   3 +-
 .../block/06_codeblock/rouge/disabled.text         |   1 +
 .../{highlighting-rouge.html => rouge/simple.html} |   4 +
 .../simple.options}                                |   0
 .../{highlighting-rouge.text => rouge/simple.text} |   5 +
 .../with_lang_in_fenced_block_any_char.html        |   8 +
 ... => with_lang_in_fenced_block_any_char.options} |   0
 .../with_lang_in_fenced_block_any_char.text        |  11 +
 test/testcases/span/01_link/empty.html             |   2 +-
 .../testcases/span/03_codespan/rouge/disabled.html |   1 +
 .../03_codespan/rouge/disabled.options}            |   3 +-
 .../testcases/span/03_codespan/rouge/disabled.text |   1 +
 .../{highlighting-rouge.html => rouge/simple.html} |   0
 .../simple.options}                                |   0
 .../{highlighting-rouge.text => rouge/simple.text} |   0
 .../{backlink_text.html => without_backlink.html}  |   2 +-
 .../span/04_footnote/without_backlink.options      |   1 +
 .../{backlink_text.text => without_backlink.text}  |   0
 test/testcases/span/05_html/mark_element.html      |   3 +
 test/testcases/span/05_html/mark_element.text      |   3 +
 test/testcases/span/autolinks/url_links.html       |   1 +
 test/testcases/span/autolinks/url_links.text       |   1 +
 test/testcases_gfm/strikethrough.html              |  27 +
 test/testcases_gfm/strikethrough.html.19           |  27 +
 test/testcases_gfm/strikethrough.text              |  27 +
 61 files changed, 450 insertions(+), 789 deletions(-)
 create mode 100644 kramdown.gemspec
 create mode 100644 lib/kramdown/converter/hash_ast.rb
 delete mode 100644 metadata.yml
 create mode 100644 test/testcases/block/06_codeblock/rouge/disabled.html
 copy test/testcases/block/06_codeblock/{highlighting-rouge.options => rouge/disabled.options} (66%)
 create mode 100644 test/testcases/block/06_codeblock/rouge/disabled.text
 rename test/testcases/block/06_codeblock/{highlighting-rouge.html => rouge/simple.html} (62%)
 copy test/testcases/block/06_codeblock/{highlighting-rouge.options => rouge/simple.options} (100%)
 rename test/testcases/block/06_codeblock/{highlighting-rouge.text => rouge/simple.text} (55%)
 create mode 100644 test/testcases/block/06_codeblock/with_lang_in_fenced_block_any_char.html
 copy test/testcases/block/06_codeblock/{with_lang_in_fenced_block.options => with_lang_in_fenced_block_any_char.options} (100%)
 create mode 100644 test/testcases/block/06_codeblock/with_lang_in_fenced_block_any_char.text
 create mode 100644 test/testcases/span/03_codespan/rouge/disabled.html
 rename test/testcases/{block/06_codeblock/highlighting-rouge.options => span/03_codespan/rouge/disabled.options} (67%)
 create mode 100644 test/testcases/span/03_codespan/rouge/disabled.text
 rename test/testcases/span/03_codespan/{highlighting-rouge.html => rouge/simple.html} (100%)
 rename test/testcases/span/03_codespan/{highlighting-rouge.options => rouge/simple.options} (100%)
 rename test/testcases/span/03_codespan/{highlighting-rouge.text => rouge/simple.text} (100%)
 copy test/testcases/span/04_footnote/{backlink_text.html => without_backlink.html} (62%)
 create mode 100644 test/testcases/span/04_footnote/without_backlink.options
 copy test/testcases/span/04_footnote/{backlink_text.text => without_backlink.text} (100%)
 create mode 100644 test/testcases/span/05_html/mark_element.html
 create mode 100644 test/testcases/span/05_html/mark_element.text
 create mode 100644 test/testcases_gfm/strikethrough.html
 create mode 100644 test/testcases_gfm/strikethrough.html.19
 create mode 100644 test/testcases_gfm/strikethrough.text

-- 
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