Merge branch 'master' of ssh://github.com/letsencrypt/lets-encrypt-preview into renewer

This commit is contained in:
Seth Schoen
2015-05-13 12:11:04 -07:00
6 changed files with 11 additions and 12 deletions
+1 -2
View File
@@ -3,8 +3,7 @@ include CHANGES.rst
include CONTRIBUTING.md include CONTRIBUTING.md
include linter_plugin.py include linter_plugin.py
include letsencrypt/EULA include letsencrypt/EULA
recursive-include letsencrypt/tests/testdata *
recursive-include letsencrypt/client/tests/testdata *
recursive-include acme/schemata *.json recursive-include acme/schemata *.json
recursive-include acme/jose/testdata * recursive-include acme/jose/testdata *
-5
View File
@@ -1,5 +0,0 @@
:mod:`letsencrypt.client.proof_of_possession`
--------------------------------------------------
.. automodule:: letsencrypt.client.proof_of_possession
:members:
+5
View File
@@ -0,0 +1,5 @@
:mod:`letsencrypt.proof_of_possession`
--------------------------------------
.. automodule:: letsencrypt.proof_of_possession
:members:
+2 -2
View File
@@ -19,7 +19,7 @@ class ContinuityAuthenticator(object):
:ivar proof_of_pos: Performs "proofOfPossession" challenges. :ivar proof_of_pos: Performs "proofOfPossession" challenges.
:type proof_of_pos: :type proof_of_pos:
:class:`letsencrypt.client.proof_of_possession.Proof_of_Possession` :class:`letsencrypt.proof_of_possession.Proof_of_Possession`
""" """
zope.interface.implements(interfaces.IAuthenticator) zope.interface.implements(interfaces.IAuthenticator)
@@ -32,7 +32,7 @@ class ContinuityAuthenticator(object):
:type config: :class:`letsencrypt.interfaces.IConfig` :type config: :class:`letsencrypt.interfaces.IConfig`
:param installer: Let's Encrypt Installer. :param installer: Let's Encrypt Installer.
:type installer: :class:`letsencrypt.client.interfaces.IInstaller` :type installer: :class:`letsencrypt.interfaces.IInstaller`
""" """
self.rec_token = recovery_token.RecoveryToken( self.rec_token = recovery_token.RecoveryToken(
+1 -1
View File
@@ -271,7 +271,7 @@ class NginxConfigurator(common.Plugin):
the existing one? the existing one?
:param vhost: The vhost to add SSL to. :param vhost: The vhost to add SSL to.
:type vhost: :class:`~letsencrypt.client.plugins.nginx.obj.VirtualHost` :type vhost: :class:`~letsencrypt_nginx.obj.VirtualHost`
""" """
ssl_block = [['listen', '443 ssl'], ssl_block = [['listen', '443 ssl'],
+2 -2
View File
@@ -78,7 +78,7 @@ class NginxDvsni(ApacheDvsni):
"""Modifies Nginx config to include challenge server blocks. """Modifies Nginx config to include challenge server blocks.
:param list ll_addrs: list of lists of :param list ll_addrs: list of lists of
:class:`letsencrypt.client.plugins.apache.obj.Addr` to apply :class:`letsencrypt_nginx.obj.Addr` to apply
:raises errors.LetsEncryptMisconfigurationError: :raises errors.LetsEncryptMisconfigurationError:
Unable to find a suitable HTTP block to include DVSNI hosts. Unable to find a suitable HTTP block to include DVSNI hosts.
@@ -115,7 +115,7 @@ class NginxDvsni(ApacheDvsni):
"""Creates a server block for a DVSNI challenge. """Creates a server block for a DVSNI challenge.
:param achall: Annotated DVSNI challenge. :param achall: Annotated DVSNI challenge.
:type achall: :class:`letsencrypt.client.achallenges.DVSNI` :type achall: :class:`letsencrypt.achallenges.DVSNI`
:param list addrs: addresses of challenged domain :param list addrs: addresses of challenged domain
:class:`list` of type :class:`~nginx.obj.Addr` :class:`list` of type :class:`~nginx.obj.Addr`