[DRE-commits] [ruby-kramdown] branch master updated (d1072ca -> 4062973)

Youhei SASAKI uwabami-guest at alioth.debian.org
Mon Aug 19 20:14:39 UTC 2013


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  d1072ca   debian/copyright: use DEP5 copyright-format/1.0 official URL for Format field
      adds  0fde726   Imported Upstream version 1.1.0
       new  79a6b42   Merge tag 'upstream/1.1.0'
       new  a80ecaf   Add Depends, Build-Depends: ruby-stringex
       new  b9579cb   Bump standard version: 3.9.4
       new  2b05075   Add patch: 0001-Fix_StringEx_Require
       new  4062973   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                                       |    8 +-
 COPYING                                            |   28 +-
 ChangeLog                                          | 7436 --------------------
 GPL                                                |  674 --
 README.md                                          |   16 +-
 Rakefile                                           |   37 +-
 VERSION                                            |    2 +-
 benchmark/benchmark.rb                             |    9 +-
 benchmark/testing.sh                               |    5 +-
 bin/kramdown                                       |   17 +-
 checksums.yaml.gz                                  |  Bin 0 -> 427 bytes
 data/kramdown/document.latex                       |    5 +
 debian/changelog                                   |   16 +
 debian/control                                     |   12 +-
 debian/patches/0001-Fix_StringEx_Require.patch     |   22 +
 debian/patches/series                              |    1 +
 doc/{design.scss.css => _design.scss}              |    0
 doc/{default.scss.css => default.scss}             |   15 +-
 doc/index.page                                     |    5 +-
 doc/news.feed                                      |    1 -
 doc/quickref.page                                  |    3 +-
 doc/sidebar.template                               |   10 +-
 doc/syntax.page                                    |   15 +-
 doc/tests.page                                     |   76 +-
 lib/kramdown.rb                                    |   17 +-
 lib/kramdown/compatibility.rb                      |   17 +-
 lib/kramdown/converter.rb                          |   17 +-
 lib/kramdown/converter/base.rb                     |   20 +-
 lib/kramdown/converter/html.rb                     |   46 +-
 lib/kramdown/converter/kramdown.rb                 |   19 +-
 lib/kramdown/converter/latex.rb                    |   33 +-
 lib/kramdown/converter/remove_html_tags.rb         |   17 +-
 lib/kramdown/converter/toc.rb                      |   17 +-
 lib/kramdown/document.rb                           |   32 +-
 lib/kramdown/element.rb                            |   17 +-
 lib/kramdown/error.rb                              |   17 +-
 lib/kramdown/options.rb                            |   36 +-
 lib/kramdown/parser.rb                             |   17 +-
 lib/kramdown/parser/base.rb                        |   21 +-
 lib/kramdown/parser/html.rb                        |   26 +-
 lib/kramdown/parser/kramdown.rb                    |   19 +-
 lib/kramdown/parser/kramdown/abbreviation.rb       |   24 +-
 lib/kramdown/parser/kramdown/autolink.rb           |   17 +-
 lib/kramdown/parser/kramdown/blank_line.rb         |   17 +-
 lib/kramdown/parser/kramdown/block_boundary.rb     |   17 +-
 lib/kramdown/parser/kramdown/blockquote.rb         |   17 +-
 lib/kramdown/parser/kramdown/codeblock.rb          |   19 +-
 lib/kramdown/parser/kramdown/codespan.rb           |   17 +-
 lib/kramdown/parser/kramdown/emphasis.rb           |   21 +-
 lib/kramdown/parser/kramdown/eob.rb                |   17 +-
 lib/kramdown/parser/kramdown/escaped_chars.rb      |   17 +-
 lib/kramdown/parser/kramdown/extensions.rb         |   40 +-
 lib/kramdown/parser/kramdown/footnote.rb           |   32 +-
 lib/kramdown/parser/kramdown/header.rb             |   19 +-
 lib/kramdown/parser/kramdown/horizontal_rule.rb    |   17 +-
 lib/kramdown/parser/kramdown/html.rb               |   17 +-
 lib/kramdown/parser/kramdown/html_entity.rb        |   17 +-
 lib/kramdown/parser/kramdown/line_break.rb         |   17 +-
 lib/kramdown/parser/kramdown/link.rb               |   17 +-
 lib/kramdown/parser/kramdown/list.rb               |   17 +-
 lib/kramdown/parser/kramdown/math.rb               |   17 +-
 lib/kramdown/parser/kramdown/paragraph.rb          |   17 +-
 lib/kramdown/parser/kramdown/smart_quotes.rb       |   49 +-
 lib/kramdown/parser/kramdown/table.rb              |   17 +-
 lib/kramdown/parser/kramdown/typographic_symbol.rb |   17 +-
 lib/kramdown/parser/markdown.rb                    |   17 +-
 lib/kramdown/utils.rb                              |   27 +-
 lib/kramdown/utils/entities.rb                     |   17 +-
 lib/kramdown/utils/html.rb                         |   26 +-
 lib/kramdown/utils/ordered_hash.rb                 |   17 +-
 lib/kramdown/utils/unidecoder.rb                   |   43 +
 lib/kramdown/version.rb                            |   19 +-
 man/man1/kramdown.1                                |   16 +
 metadata.yml                                       |   40 +-
 test/run_tests.rb                                  |   17 +-
 test/test_files.rb                                 |   59 +-
 test/testcases/block/04_header/atx_header.html     |    2 +
 test/testcases/block/04_header/atx_header.text     |    4 +-
 test/testcases/block/04_header/with_auto_ids.html  |    2 +
 .../block/04_header/with_auto_ids.options          |    1 +
 test/testcases/block/04_header/with_auto_ids.text  |    2 +
 test/testcases/block/06_codeblock/issue_gh45.html  |  164 +
 test/testcases/block/06_codeblock/issue_gh45.test  |  188 +
 test/testcases/block/11_ial/simple.html            |    2 +
 test/testcases/block/11_ial/simple.text            |    3 +
 test/testcases/block/12_extension/options.html     |    4 +-
 test/testcases/block/12_extension/options2.html    |    4 +-
 .../block/14_table/table_with_footnote.html        |    4 +-
 .../testcases/block/16_toc/toc_with_footnotes.html |    4 +-
 test/testcases/span/02_emphasis/nesting.html       |    3 +
 test/testcases/span/02_emphasis/nesting.text       |    5 +-
 test/testcases/span/04_footnote/footnote_nr.html   |    6 +-
 test/testcases/span/04_footnote/markers.html       |   20 +-
 test/testcases/span/04_footnote/markers.latex      |    2 +-
 test/testcases/span/04_footnote/markers.text       |    2 +-
 test/testcases/span/abbreviations/abbrev.html      |   13 +-
 test/testcases/span/abbreviations/abbrev.text      |   13 +-
 .../span/text_substitutions/entities_as_char.html  |    2 +-
 .../text_substitutions/entities_as_char.html.19    |    2 +-
 .../text_substitutions/entities_as_char.options    |    1 +
 .../span/text_substitutions/entities_as_char.text  |    2 +-
 .../span/text_substitutions/typography.html        |   12 +
 .../span/text_substitutions/typography.text        |   12 +
 103 files changed, 976 insertions(+), 9095 deletions(-)
 delete mode 100644 ChangeLog
 delete mode 100644 GPL
 mode change 100644 => 100755 bin/kramdown
 create mode 100644 checksums.yaml.gz
 create mode 100644 debian/patches/0001-Fix_StringEx_Require.patch
 rename doc/{design.scss.css => _design.scss} (100%)
 rename doc/{default.scss.css => default.scss} (94%)
 create mode 100644 lib/kramdown/utils/unidecoder.rb
 create mode 100644 test/testcases/block/06_codeblock/issue_gh45.html
 create mode 100644 test/testcases/block/06_codeblock/issue_gh45.test

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