You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by an...@apache.org on 2019/01/27 21:05:16 UTC

[libcloud] branch trunk updated (1437fc3 -> 69b110b)

This is an automated email from the ASF dual-hosted git repository.

anthonyshaw pushed a change to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git.


    from 1437fc3  Add changes for #1272
     new 78dafcb  [LIBCLOUD-1025] Add a new DNS driver for RcodeZero DNS.
     new 771fa66  [LIBCLOUD-1025] fixed travis errors.
     new 8baa513  fixed documentation
     new ef7b7af  use default-hostname as a class-attribute
     new b9f9bf8  refactore double negotiation
     new 67aed49  add method get_record
     new 1212dfa  regenerated supported methods/providers table
     new 50be9e7  fixed whitespaces
     new fe27e6c  fixed python3 issue and tests
     new 69b110b  Merge pull request #1256 from MikeAT/Libcloud-1025_add_RcodeZero_DNS_Driver

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


Summary of changes:
 docs/_static/images/provider_logos/rcodezero.png   | Bin 0 -> 35718 bytes
 docs/dns/_supported_methods.rst                    |   2 +
 docs/dns/_supported_providers.rst                  |   2 +
 docs/dns/drivers/rcodezero.rst                     |  43 ++
 .../examples/dns/rcodezero}/__init__.py            |   0
 docs/examples/dns/rcodezero/instantiate_driver.py  |  10 +
 libcloud/dns/drivers/rcodezero.py                  | 535 +++++++++++++++++++++
 libcloud/dns/providers.py                          |   2 +
 libcloud/dns/types.py                              |   1 +
 .../dns/fixtures/rcodezero/get_zone_details.json   |  13 +
 .../test/dns/fixtures/rcodezero/list_records.json  |  40 ++
 .../test/dns/fixtures/rcodezero/list_zones.json    |  35 ++
 .../dns/{test_powerdns.py => test_rcodezero.py}    | 136 +++---
 13 files changed, 760 insertions(+), 59 deletions(-)
 create mode 100644 docs/_static/images/provider_logos/rcodezero.png
 create mode 100644 docs/dns/drivers/rcodezero.rst
 copy {libcloud/test/storage => docs/examples/dns/rcodezero}/__init__.py (100%)
 create mode 100644 docs/examples/dns/rcodezero/instantiate_driver.py
 create mode 100644 libcloud/dns/drivers/rcodezero.py
 create mode 100644 libcloud/test/dns/fixtures/rcodezero/get_zone_details.json
 create mode 100644 libcloud/test/dns/fixtures/rcodezero/list_records.json
 create mode 100644 libcloud/test/dns/fixtures/rcodezero/list_zones.json
 copy libcloud/test/dns/{test_powerdns.py => test_rcodezero.py} (57%)