1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

Update aws libs and remove waiter (#276)

* update r53 library. Remove waiter code

* live update provider request section

* remove debug
This commit is contained in:
Craig Peterson
2017-11-27 10:22:08 -05:00
committed by GitHub
parent 2d51cd57ed
commit ccf28349ce
88 changed files with 20641 additions and 5289 deletions

View File

@@ -74,16 +74,38 @@ Maintainers of contributed providers:
We have received requests for the following providers. If you would like to contribute
code to support this provider, please re-open the issue. We'd be glad to help in any way.
<ul>
<li>AXFR/DDNS (<a href="https://github.com/StackExchange/dnscontrol/issues/259">#259</a>)</li>
<li>Azure (<a href="https://github.com/StackExchange/dnscontrol/issues/42">#42</a>)</li>
<li>ClouDNS (<a href="https://github.com/StackExchange/dnscontrol/issues/114">#114</a>)</li>
<li>Dyn (<a href="https://github.com/StackExchange/dnscontrol/issues/61">#61</a>)</li>
<li>Gandi (DNS works. Request is to add Registrar support) (<a href="https://github.com/StackExchange/dnscontrol/issues/87">#87</a>)</li>
<li>Gandi LIVEDNS) (<a href="https://github.com/StackExchange/dnscontrol/issues/266">#266</a>)</li>
<li>GoDaddy (<a href="https://github.com/StackExchange/dnscontrol/issues/145">#145</a>)</li>
<li>Hurricane Electric (dns.he.net) (<a href="https://github.com/StackExchange/dnscontrol/issues/118">#118</a>)</li>
<li>INWX (<a href="https://github.com/StackExchange/dnscontrol/issues/254">#254</a>)</li>
<li>NameSilo (<a href="https://github.com/StackExchange/dnscontrol/issues/220">#220</a>)</li>
<li>OVH (<a href="https://github.com/StackExchange/dnscontrol/issues/143">#143</a>)</li>
<ul id='requests'>
</ul>
### In progress providers
These requests have *open* issues, which indicates somebody is actively working on it. Feel free to follow the issue, or pitch in if you think you can help.
<ul id='inprog'>
</ul>
### Providers with open PRs
These providers have an open pr with (potentially) working code. They may be ready to merge, or may have blockers. See issue and pr for details.
<ul id='haspr'>
</ul>
<script>
$.get("https://api.github.com/repos/StackExchange/dnscontrol/issues?state=all&labels=provider-request&direction=asc")
.done(function(data){
for(var i of data){
var el = $(`<li><a href='${i.html_url}'>${i.title}</a> (#${i.number})</li>`)
var target = $("#requests");
if (i.state == "open") target = $("#inprog");
for(var l of i.labels){
if (l.name == "has-pr") target = $("#haspr");
}
target.append(el);
}
})
.fail(function(err){
console.log("???", err)
})
</script>