[DRE-commits] [ruby-nokogiri] 01/04: Merge tag 'upstream/1.6.2.1+ds'

Cédric Boutillier boutil at moszumanska.debian.org
Fri May 30 14:35:53 UTC 2014


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

boutil pushed a commit to branch master
in repository ruby-nokogiri.

commit 14e6487124f0c0955b86d913d6d272d8d733b5e3
Merge: 23a77fd 936079b
Author: Cédric Boutillier <boutil at debian.org>
Date:   Fri May 30 12:06:49 2014 +0200

    Merge tag 'upstream/1.6.2.1+ds'
    
    Upstream version 1.6.2.1+ds
    
    # gpg: Signature faite le ven. 30 mai 2014 12:06:45 CEST avec la clef RSA d'identifiant 39CD217A
    # gpg: Bonne signature de « Cédric Boutillier <boutil at debian.org> »
    # gpg:                 alias « Cédric Boutillier <cedric.boutillier at upmc.fr> »
    # gpg:                 alias « Cédric Boutillier <cedric.boutillier at polytechnique.org> »
    # gpg:                 alias « Cédric Boutillier <cedric.boutillier at gmail.com> »

 .editorconfig                                      |    17 +
 .travis.yml                                        |    12 +-
 CHANGELOG.ja.rdoc                                  |    78 +-
 CHANGELOG.rdoc                                     |    70 +-
 Gemfile                                            |     6 +-
 Manifest.txt                                       |    64 +-
 README.ja.rdoc                                     |    39 +-
 README.rdoc                                        |    41 +-
 ROADMAP.md                                         |     3 +-
 Rakefile                                           |   224 +-
 build_all                                          |    87 +-
 checksums.yaml.gz                                  |   Bin 271 -> 270 bytes
 dependencies.yml                                   |     6 +-
 ext/nokogiri/extconf.rb                            |   606 +-
 ext/nokogiri/html_document.c                       |     4 +-
 ext/nokogiri/nokogiri.c                            |     7 +-
 ext/nokogiri/xml_document.c                        |     9 +-
 ext/nokogiri/xml_node.c                            |    83 +-
 ext/nokogiri/xml_reader.c                          |     2 +-
 ext/nokogiri/xml_sax_parser_context.c              |    40 +
 ext/nokogiri/xml_syntax_error.c                    |    15 +-
 ext/nokogiri/xml_syntax_error.h                    |     2 +-
 ext/nokogiri/xml_xpath_context.c                   |    16 +-
 ext/nokogiri/xslt_stylesheet.c                     |     2 +-
 lib/nokogiri.rb                                    |    53 +-
 lib/nokogiri/css/node.rb                           |    50 -
 lib/nokogiri/css/parser.rb                         |   431 +-
 lib/nokogiri/css/parser.y                          |    51 +-
 lib/nokogiri/css/xpath_visitor.rb                  |    76 +-
 lib/nokogiri/html/document.rb                      |   115 +-
 lib/nokogiri/html/sax/parser.rb                    |     4 +-
 lib/nokogiri/version.rb                            |     2 +-
 lib/nokogiri/xml/builder.rb                        |     2 +-
 lib/nokogiri/xml/document.rb                       |     4 +-
 lib/nokogiri/xml/dtd.rb                            |    10 +
 lib/nokogiri/xml/node.rb                           |    27 +-
 lib/nokogiri/xml/sax/parser.rb                     |     2 +-
 metadata.yml                                       |   437 +-
 ...01-Fix-parser-local-buffers-size-problems.patch |   265 +
 ...-Fix-entities-local-buffers-size-problems.patch |   102 +
 .../0003-Fix-an-error-in-previous-commit.patch     |    26 +
 .../0004-Fix-potential-out-of-bound-access.patch   |    26 +
 ...ssive-entities-expansion-upon-replacement.patch |   158 +
 ...006-Do-not-fetch-external-parsed-entities.patch |    78 +
 ..._PARSER_EOF-state-handling-through-the-pa.patch |   480 +
 .../0008-Improve-handling-of-xmlStopParser.patch   |   315 +
 ...0009-Fix-a-couple-of-return-without-value.patch |    37 +
 ...on-significant-blanks-node-in-HTML-parser.patch |  2006 ++
 ...-Do-not-fetch-external-parameter-entities.patch |    39 +
 .../0001-Adding-doc-update-related-to-1.1.28.patch |   222 +
 ...e-of-places-where-f-printf-parameters-wer.patch |    53 +
 ...pseudo-random-number-generator-with-curre.patch |    60 +
 ...XSLT-function-str-replace-is-broken-as-is.patch |    42 +
 ...ix-str-padding-to-work-with-UTF-8-strings.patch |   164 +
 ...nction-for-predicate-matching-in-patterns.patch |   587 +
 .../libxslt/0008-Fix-direct-pattern-matching.patch |    80 +
 ...0009-Fix-certain-patterns-with-predicates.patch |   185 +
 ...g-of-UTF-8-strings-in-EXSLT-crypto-module.patch |   126 +
 ...eak-in-xsltCompileIdKeyPattern-error-path.patch |    25 +
 .../patches/libxslt/0014-Fix-for-bug-436589.patch  |    43 +
 .../patches/libxslt/0015-Fix-mkdir-for-mingw.patch |    41 +
 suppressions/README.txt                            |     1 +
 suppressions/nokogiri_ree-1.8.7.358.supp           |    61 +
 suppressions/nokogiri_ruby-1.8.7.370.supp          |     0
 suppressions/nokogiri_ruby-1.9.2.320.supp          |    28 +
 suppressions/nokogiri_ruby-1.9.3.327.supp          |    28 +
 tasks/cross_compile.rb                             |   134 -
 test/css/test_nthiness.rb                          |    67 +-
 test/css/test_parser.rb                            |    37 +-
 test/css/test_tokenizer.rb                         |     2 +-
 test/css/test_xpath_visitor.rb                     |     7 +-
 test/files/atom.xml                                |   344 +
 test/files/shift_jis_no_charset.html               |     9 +
 test/files/slow-xpath.xml                          | 25509 +++++++++++++++++++
 test/helper.rb                                     |    10 +
 test/html/test_document.rb                         |    81 +-
 test/html/test_document_encoding.rb                |    10 +
 test/html/test_document_fragment.rb                |    12 +-
 test/namespaces/test_namespaces_aliased_default.rb |    24 +
 test/namespaces/test_namespaces_in_cloned_doc.rb   |    31 +
 test/namespaces/test_namespaces_preservation.rb    |    31 +
 test/test_nokogiri.rb                              |     6 +
 test/test_reader.rb                                |    11 +-
 test/test_xslt_transforms.rb                       |    25 +
 test/xml/sax/test_parser.rb                        |    16 +
 test/xml/sax/test_parser_context.rb                |     9 +
 test/xml/test_builder.rb                           |     9 +
 test/xml/test_c14n.rb                              |    14 +-
 test/xml/test_document.rb                          |    66 +
 test/xml/test_document_fragment.rb                 |     5 +
 test/xml/test_dtd.rb                               |    84 +
 test/xml/test_entity_reference.rb                  |     6 +-
 test/xml/test_node.rb                              |    24 +-
 test/xml/test_node_attributes.rb                   |    17 +
 test/xml/test_schema.rb                            |    26 +
 test/xml/test_text.rb                              |    15 +
 test/xml/test_xpath.rb                             |    87 +
 test_all                                           |     6 +-
 98 files changed, 33686 insertions(+), 1023 deletions(-)

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



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