[med-svn] [r-cran-xml2] 13/14: Updated version 1.1.0 from 'upstream/1.1.0'

Andreas Tille tille at debian.org
Fri Oct 13 07:17:16 UTC 2017


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

tille pushed a commit to branch master
in repository r-cran-xml2.

commit f847f12f4a347028c1b77d0feed1b7b5abab99b9
Merge: 5742b5b a0e64b1
Author: Andreas Tille <tille at debian.org>
Date:   Fri Oct 13 09:14:09 2017 +0200

    Updated version 1.1.0 from 'upstream/1.1.0'
    
    with Debian dir 338507e728f71511e579376875457f7e73c70ae9

 DESCRIPTION                                  |  38 ++
 MD5                                          | 115 +++++
 NAMESPACE                                    | 207 ++++++++
 NEWS.md                                      | 116 +++++
 R/RcppExports.R                              | 275 +++++++++++
 R/as_list.R                                  | 106 ++++
 R/as_xml_document.R                          |  84 ++++
 R/classes.R                                  | 273 +++++++++++
 R/paths.R                                    |  58 +++
 R/utils.R                                    |  68 +++
 R/xml_attr.R                                 | 242 ++++++++++
 R/xml_children.R                             | 141 ++++++
 R/xml_find.R                                 | 219 +++++++++
 R/xml_modify.R                               | 332 +++++++++++++
 R/xml_name.R                                 |  92 ++++
 R/xml_namespaces.R                           | 103 ++++
 R/xml_parse.R                                | 128 +++++
 R/xml_path.R                                 |  29 ++
 R/xml_schema.R                               |  21 +
 R/xml_serialize.R                            |  54 +++
 R/xml_structure.R                            |  92 ++++
 R/xml_text.R                                 | 140 ++++++
 R/xml_type.R                                 |  51 ++
 R/xml_url.R                                  |  32 ++
 R/xml_write.R                                | 118 +++++
 R/zzz.R                                      |   4 +
 README.md                                    |  63 +++
 build/vignette.rds                           | Bin 0 -> 204 bytes
 build/xml2.pdf                               | Bin 0 -> 124812 bytes
 cleanup                                      |   2 +
 configure                                    |  67 +++
 configure.win                                |   0
 inst/doc/modification.R                      |  96 ++++
 inst/doc/modification.Rmd                    | 197 ++++++++
 inst/doc/modification.html                   | 285 +++++++++++
 inst/extdata/order-doc.xml                   |  32 ++
 inst/extdata/order-schema.xml                |  76 +++
 inst/extdata/r-project.html                  | 102 ++++
 inst/include/xml2_types.h                    |  18 +
 man/as_list.Rd                               |  46 ++
 man/as_xml_document.Rd                       |  31 ++
 man/read_xml.Rd                              |  79 +++
 man/url_absolute.Rd                          |  33 ++
 man/url_escape.Rd                            |  26 +
 man/url_parse.Rd                             |  24 +
 man/write_xml.Rd                             |  50 ++
 man/xml_attr.Rd                              | 102 ++++
 man/xml_cdata.Rd                             |  19 +
 man/xml_children.Rd                          |  81 ++++
 man/xml_comment.Rd                           |  20 +
 man/xml_dtd.Rd                               |  34 ++
 man/xml_find_all.Rd                          | 106 ++++
 man/xml_missing.Rd                           |  12 +
 man/xml_name.Rd                              |  43 ++
 man/xml_new_document.Rd                      |  39 ++
 man/xml_ns.Rd                                |  53 ++
 man/xml_ns_strip.Rd                          |  30 ++
 man/xml_path.Rd                              |  22 +
 man/xml_replace.Rd                           |  52 ++
 man/xml_serialize.Rd                         |  34 ++
 man/xml_set_namespace.Rd                     |  22 +
 man/xml_structure.Rd                         |  32 ++
 man/xml_text.Rd                              |  51 ++
 man/xml_type.Rd                              |  19 +
 man/xml_url.Rd                               |  25 +
 man/xml_validate.Rd                          |  25 +
 src/Makevars.in                              |   2 +
 src/Makevars.win                             |  14 +
 src/RcppExports.cpp                          | 696 +++++++++++++++++++++++++++
 src/connection.cpp                           |  37 ++
 src/xml2_doc.cpp                             | 226 +++++++++
 src/xml2_init.cpp                            |  38 ++
 src/xml2_namespace.cpp                       |  56 +++
 src/xml2_node.cpp                            | 540 +++++++++++++++++++++
 src/xml2_output.cpp                          | 157 ++++++
 src/xml2_schema.cpp                          |  30 ++
 src/xml2_url.cpp                             | 162 +++++++
 src/xml2_utils.h                             | 116 +++++
 src/xml2_xpath.cpp                           |  95 ++++
 tests/testthat.R                             |   4 +
 tests/testthat/cd_catalog.xml.bz2            | Bin 0 -> 987 bytes
 tests/testthat/helper-version.R              |   1 +
 tests/testthat/lego.html.bz2                 | Bin 0 -> 42649 bytes
 tests/testthat/ns-multiple-aliases.xml       |   4 +
 tests/testthat/ns-multiple-default.xml       |   4 +
 tests/testthat/ns-multiple-prefix.xml        |   4 +
 tests/testthat/ns-multiple.xml               |   4 +
 tests/testthat/output/html_structure.txt     | 331 +++++++++++++
 tests/testthat/output/print-xml_document.txt |   4 +
 tests/testthat/output/print-xml_node.txt     |  17 +
 tests/testthat/output/print-xml_nodeset.txt  |  11 +
 tests/testthat/test-as_list.R                |  37 ++
 tests/testthat/test-as_xml_document.R        |  41 ++
 tests/testthat/test-cdata.R                  |   7 +
 tests/testthat/test-comment.R                |   8 +
 tests/testthat/test-dtd.R                    |  16 +
 tests/testthat/test-format.R                 |  17 +
 tests/testthat/test-modify-xml.R             | 238 +++++++++
 tests/testthat/test-namespaces.R             |  44 ++
 tests/testthat/test-null.R                   |  70 +++
 tests/testthat/test-print.R                  |  21 +
 tests/testthat/test-read-xml.R               |  57 +++
 tests/testthat/test-url.R                    |  76 +++
 tests/testthat/test-write_xml.R              | 112 +++++
 tests/testthat/test-xml_attrs.R              | 225 +++++++++
 tests/testthat/test-xml_children.R           |  52 ++
 tests/testthat/test-xml_find.R               | 123 +++++
 tests/testthat/test-xml_missing.R            |  44 ++
 tests/testthat/test-xml_name.R               |  66 +++
 tests/testthat/test-xml_nodeset.R            |  75 +++
 tests/testthat/test-xml_schema.R             |  21 +
 tests/testthat/test-xml_serialize.R          |  26 +
 tests/testthat/test-xml_structure.R          |  10 +
 tests/testthat/test-xml_text.R               |  60 +++
 tools/winlibs.R                              |   8 +
 vignettes/modification.Rmd                   | 197 ++++++++
 116 files changed, 9390 insertions(+)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/r-cran-xml2.git



More information about the debian-med-commit mailing list