1
0
mirror of https://github.com/certbot/certbot.git synced 2026-01-24 19:22:07 +03:00
Commit Graph

66 Commits

Author SHA1 Message Date
Jakub Warmuz
a449a8917e Clean crypto_util module. 2014-11-22 00:22:09 +01:00
Jakub Warmuz
e70c6cc65c Configurator restart quiet 2014-11-22 00:22:09 +01:00
Jakub Warmuz
bc6f0b4b6b Clean configurator module. 2014-11-22 00:22:09 +01:00
Jakub Warmuz
30c6c16fa8 Clean CONFIG module, use os.path. 2014-11-22 00:22:09 +01:00
Jakub Warmuz
b5462f8f88 Clean acme module. 2014-11-22 00:22:09 +01:00
Jakub Warmuz
0fcb2a056f Clean recovery_token_challenge module. 2014-11-22 00:22:09 +01:00
Jakub Warmuz
de555cec87 Clean challenge module. 2014-11-22 00:22:09 +01:00
Jakub Warmuz
123e64ff03 Clean validator module. 2014-11-22 00:22:09 +01:00
Jakub Warmuz
9cdb7dbae2 Fix pylint errors or comment unused invalid code.
augeas_configurator.py: E:220,12: Too many positional arguments for
function call (too-many-function-args)

client.py: E:628,18: Instance of 'Client' has no 'get_cas' member
(no-member)

interactive_challenge.py: E: 35,29: Instance of 'Interactive_Challenge'
has no 'reason' member (no-member)
2014-11-22 00:22:09 +01:00
Jakub Warmuz
a62c02a9cf Fix no-self-argument 2014-11-22 00:22:09 +01:00
Jakub Warmuz
d88eb92fbe Fix undefined-variable 2014-11-22 00:22:09 +01:00
Jakub Warmuz
de53f8e940 Clean up imports 2014-11-22 00:22:09 +01:00
Jakub Warmuz
aafcaa4ef8 Remove unnecessary executable bits 2014-11-22 00:21:17 +01:00
Jakub Warmuz
e4102e985b Get rid of abc 2014-11-22 00:21:17 +01:00
Jakub Warmuz
124af9c22b Remove sni_challenge import. 2014-11-21 18:39:14 +01:00
James Kasten
ecff61a193 It is way too late... syntax fix... I am going to bed 2014-11-21 03:24:21 -08:00
James Kasten
971441fe2f Better fix for options-ssl.conf requirement 2014-11-21 03:18:37 -08:00
James Kasten
ad2078df37 Forgot to make options-ssl.conf part of the required setup... added code to check and copy it down to the appropriate place to aid developers working on the project, this will eventually go in the setup files 2014-11-21 01:36:42 -08:00
James Kasten
5026e92142 Remove reference to old file in CONFIG 2014-11-21 00:10:53 -08:00
James Kasten
c1c6d24c32 Remove more legacy files, code references 2014-11-21 00:10:21 -08:00
James Kasten
36027477b1 Push error message for send() function. This seems to be giving many people trouble 2014-11-20 16:48:39 -08:00
James Kasten
b779bb0461 specified ApacheConfigurator to enable rollback, --view-checkpoints 2014-11-20 16:02:57 -08:00
James Kasten
95fbf69206 Caught bug in display... referencing 0 instead of OK variable 2014-11-20 15:42:13 -08:00
James Kasten
e79b379e67 Enabled authentication under new system 2014-11-20 15:29:40 -08:00
James Kasten
bf393f78ab Changed client to use new form of challenges 2014-11-20 12:23:44 -08:00
James Kasten
d57dd9faee Move SNIChallenge into apache_configurator.py as the dvsni challenge should be a feature for the configurator 2014-11-20 03:47:35 -08:00
James Kasten
3b26f6c526 Add stub of nginx_configurator.py for another developer to work on if they desire 2014-11-20 02:39:11 -08:00
James Kasten
c238a6a36f Add AugeasConfigurator class... move all appropriate functions to it 2014-11-20 02:21:56 -08:00
James Kasten
0093684f93 Initial attempt to extract essentials out of Configurator - still need to fix SNIChall 2014-11-20 01:30:53 -08:00
James Kasten
35ef6b7048 Remove legacy code from project 2014-11-19 20:46:34 -08:00
James Kasten
6b2841793c Merge branch 'master' of github.com:letsencrypt/lets-encrypt-preview 2014-11-19 17:01:57 -08:00
James Kasten
5dfa3d5715 Changed EULA to Yes/No to Agree/Disagree 2014-11-19 17:01:30 -08:00
James Kasten
c7f29e77b8 Merge pull request #30 from jsoref/spelling
Spelling
2014-11-19 15:46:08 -08:00
James Kasten
7af9263e4a Remove jose dependency, convert display code to use dialog from setup 2014-11-19 15:34:54 -08:00
Josh Soref
9e906d39a3 Spelling: organization 2014-11-19 17:43:42 -05:00
Josh Soref
61543ad19b Spelling: directive 2014-11-19 17:43:08 -05:00
Josh Soref
ad3500eae6 Spelling: challenge 2014-11-19 17:42:00 -05:00
Jakub Warmuz
d5d1ec8b1c Merge remote-tracking branch 'github/master' into setuptools-script
Conflicts:
	README.md
	letsencrypt.py
2014-11-19 20:36:14 +01:00
James Kasten
5d785cb862 Fixed issue #27 2014-11-19 09:55:08 -08:00
Jakub Warmuz
139ad7c3ee Fix setuptools package resources
https://pythonhosted.org/setuptools/setuptools.html#including-data-files
2014-11-19 13:33:53 +01:00
Jakub Warmuz
35c4cbd438 letsencrypt.py as setuptools console script 2014-11-19 13:29:02 +01:00
Jakub Warmuz
c843a9681f Fix SyntaxError 2014-11-18 18:36:15 -08:00
Alex Gaynor
6011453a14 Replaced tabs with spaces and removed usage of several deprecated features:
* dict.has_key -> `in` operator
* backticks -> repr

Also removed trailing newlines from a few files.

flake8 --select='W' no longer reports any issues
2014-11-18 17:01:31 -08:00
James Kasten
a5f985c9cc Merge pull request #11 from alex/trailing-whitespace-unused-imports
Removed trailing whitespace as well as unused imports
2014-11-18 16:56:11 -08:00
Alex Gaynor
0b75c5194f Removed trailing whitespace as well as unused imports 2014-11-18 16:41:13 -08:00
Seth Schoen
b8170a38ec docstrings and add JSON pretty-printing code 2014-11-18 16:39:38 -08:00
James Kasten
3ff20fbeb4 Merge pull request #2 from alex/use-requests
Switched from using urllib2 to requests.
2014-11-18 16:30:09 -08:00
James Kasten
aa022adecb Change CONFIG to point to an ACME server with valid trusted certificate 2014-11-18 16:27:10 -08:00
James Kasten
073e9758f1 Merge branch 'master' of github.com:letsencrypt/lets-encrypt-preview 2014-11-18 12:34:10 -08:00
James Kasten
91859d8a99 moved old protocol directory to attic to avoid confusion 2014-11-18 12:33:48 -08:00